/* ══════════════════════════════════════════════════════════
   APOSTOL.CSS — Rediseño completo
   Paleta: hereda de elegant-theme.css (Luz & Alegría)
   ══════════════════════════════════════════════════════════ */

/* ── Animaciones globales ───────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInUp 0.75s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Utilidades compartidas ─────────────────────────────── */
.ap-label {
  display: inline-block;
  background: rgba(185,229,251,0.18);
  color: var(--azul-medio);
  border: 1px solid rgba(21,101,192,0.25);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 14px;
}

.ap-label--gold {
  background: rgba(249,224,118,0.18);
  color: var(--dorado-suave);
  border-color: rgba(249,224,118,0.35);
}

.ap-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,224,118,0.18);
  color: var(--dorado-brillo);
  border: 1px solid rgba(249,224,118,0.4);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 18px;
}

.ap-badge--cta {
  color: var(--dorado-brillo);
  margin-bottom: 16px;
}

.ap-seccion-cabecera {
  text-align: center;
  margin-bottom: 56px;
}

.ap-seccion-cabecera h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--azul-noche);
  margin: 0;
  line-height: 1.25;
  font-family: 'Nunito', sans-serif;
}

.ap-seccion-cabecera--claro h2 {
  color: #ffffff;
}

/* ── Botones ────────────────────────────────────────────── */
.ap-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--dorado-brillo);
  color: var(--azul-noche);
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(249,224,118,0.35);
}

.ap-btn-primary:hover {
  background: var(--dorado-suave);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249,224,118,0.45);
}

.ap-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.45);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.ap-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.ap-hero {
  background: linear-gradient(135deg, #141a22 0%, #252f3d 45%, #5a6578 100%);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}

/* Partículas decorativas */
.ap-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ap-hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(185,229,251,0.07);
  animation: floatBall 12s ease-in-out infinite;
}

.ap-hero-particles span:nth-child(1) { width: 360px; height: 360px; top: -80px;  left: -80px;  animation-delay: 0s;   animation-duration: 14s; }
.ap-hero-particles span:nth-child(2) { width: 220px; height: 220px; top: 10%;   right: -60px; animation-delay: 2s;   animation-duration: 10s; }
.ap-hero-particles span:nth-child(3) { width: 140px; height: 140px; bottom: 15%; left: 15%;   animation-delay: 4s;   animation-duration: 12s; }
.ap-hero-particles span:nth-child(4) { width: 80px;  height: 80px;  bottom: 30%; right: 20%;  animation-delay: 1s;   animation-duration: 8s; }
.ap-hero-particles span:nth-child(5) { width: 50px;  height: 50px;  top: 40%;   left: 40%;   animation-delay: 3s;   animation-duration: 9s; background: rgba(249,224,118,0.07); }
.ap-hero-particles span:nth-child(6) { width: 260px; height: 260px; bottom: -60px; right: -40px; animation-delay: 5s; animation-duration: 16s; }

@keyframes floatBall {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.04); }
}

/* Inner layout */
.ap-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1000px;
  width: 100%;
}

/* Foto col */
.ap-hero-foto-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.ap-hero-foto-ring {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

/* Halos de pulso */
.ap-hero-foto-ring::before,
.ap-hero-foto-ring::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(249,224,118,0.35);
  animation: haloPulse 3s ease-in-out infinite;
}

.ap-hero-foto-ring::after {
  inset: -28px;
  border-color: rgba(185,229,251,0.18);
  animation-delay: 1.5s;
}

@keyframes haloPulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.4; transform: scale(1.04); }
}

.ap-hero-foto {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 61% center;
  display: block;
  border: 5px solid var(--dorado-brillo);
  box-shadow: 0 0 40px rgba(249,224,118,0.3), 0 24px 60px rgba(0,0,0,0.45);
  animation: floatFoto 5s ease-in-out infinite;
}

@keyframes floatFoto {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.ap-hero-foto-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--azul-noche), var(--azul-medio));
  border: 5px solid var(--dorado-brillo);
  box-shadow: 0 0 40px rgba(249,224,118,0.3), 0 24px 60px rgba(0,0,0,0.45);
  animation: floatFoto 5s ease-in-out infinite;
}

.ap-hero-foto-fallback i {
  font-size: 5rem;
  color: rgba(185,229,251,0.4);
}

/* Redes sociales hero */
.ap-hero-redes {
  display: flex;
  gap: 12px;
}

.ap-red {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.ap-red:hover { transform: translateY(-4px) scale(1.1); }
.ap-red.yt { background: #ff0000; color: #fff; }
.ap-red.fb { background: #1877f2; color: #fff; }
.ap-red.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }

/* Texto col */
.ap-hero-texto-col {
  flex: 1;
}

.ap-hero-nombre {
  font-size: 3.4rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  line-height: 1.1;
  margin: 8px 0 20px;
}

.ap-hero-nombre em {
  font-style: normal;
  color: var(--dorado-brillo);
  display: block;
  font-size: 4rem;
}

.ap-hero-subtitulo {
  color: var(--azul-cielo);
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  margin: 0 0 24px;
}

.ap-br { display: block; }

.ap-hero-divisor {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--dorado-brillo), transparent);
  border-radius: 3px;
  margin-bottom: 24px;
}

.ap-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ap-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(185,229,251,0.2);
  color: var(--azul-cielo);
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  cursor: default;
  transition: background 0.25s, border-color 0.25s, color 0.25s,
              transform 0.25s, box-shadow 0.25s;
  animation: pillEntrada 0.6s ease both;
}

.ap-pill:nth-child(1) { animation-delay: 0.1s; }
.ap-pill:nth-child(2) { animation-delay: 0.25s; }
.ap-pill:nth-child(3) { animation-delay: 0.4s; }

@keyframes pillEntrada {
  from { opacity: 0; transform: translateY(12px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.ap-pill:hover {
  background: rgba(249,224,118,0.18);
  border-color: rgba(249,224,118,0.55);
  color: var(--dorado-brillo);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 22px rgba(249,224,118,0.2);
}

.ap-pill:hover i { color: #fff; }

.ap-pill i {
  color: var(--dorado-brillo);
  font-size: 0.75rem;
  transition: color 0.25s;
}

/* Scroll hint */
.ap-hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(185,229,251,0.3);
  color: rgba(185,229,251,0.7);
  font-size: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.ap-hero-scroll-hint:hover {
  background: rgba(249,224,118,0.2);
  border-color: rgba(249,224,118,0.6);
  color: var(--dorado-brillo);
  box-shadow: 0 0 18px rgba(249,224,118,0.25);
  animation-play-state: paused;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ══════════════════════════════════════════════════════════
   VERSÍCULO ANCLA
   ══════════════════════════════════════════════════════════ */
.ap-versiculo {
  background: var(--gris-suave);
  padding: 60px 24px;
}

.ap-versiculo-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ap-v-icono {
  font-size: 1.25rem;
  color: var(--azul-oscuro);
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}

.ap-versiculo blockquote {
  font-size: 1.18rem;
  color: var(--azul-oscuro);
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 16px;
  quotes: none;
}

.ap-versiculo cite {
  font-size: 0.85rem;
  color: var(--azul-medio);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════
   LLAMADO
   ══════════════════════════════════════════════════════════ */
.ap-llamado {
  padding: 100px 0;
  background: #ffffff;
}

.ap-llamado-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ap-llamado-texto h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--azul-noche);
  line-height: 1.25;
  margin: 0 0 20px;
  font-family: 'Nunito', sans-serif;
}

.ap-llamado-texto p {
  font-size: 1rem;
  color: var(--texto-suave);
  line-height: 1.85;
  margin: 0 0 16px;
  font-family: 'Nunito', sans-serif;
}

.ap-llamado-texto p:last-of-type { margin-bottom: 32px; }

/* Stats grid */
.ap-llamado-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ap-stat-card {
  background: var(--gris-suave);
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  border-top: 3px solid var(--azul-cielo);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ap-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(13,58,107,0.12);
}

.ap-stat-icono {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.ap-stat-icono i {
  font-size: 1.15rem;
  color: var(--azul-medio);
}

.ap-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--azul-noche);
  font-family: 'Nunito', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.ap-stat-label {
  font-size: 0.8rem;
  color: var(--texto-suave);
  font-family: 'Nunito', sans-serif;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   HISTORIA — STEPS HORIZONTALES
   ══════════════════════════════════════════════════════════ */
.ap-historia {
  padding: 100px 0 120px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.ap-historia-deco-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul-noche), var(--azul-medio), var(--dorado-brillo), var(--azul-medio), var(--azul-noche));
}

.ap-steps-track { position: relative; margin-top: 20px; }

/* Línea horizontal conectora */
.ap-steps-line {
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-cielo), var(--azul-medio), var(--azul-noche), var(--dorado-brillo));
  border-radius: 3px;
  z-index: 0;
}

.ap-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Cada step */
.ap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Burbuja con icono */
.ap-step-bubble {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 28px;
}

.ap-step-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(21,101,192,0.2);
  animation: stepRing 3s ease-in-out infinite;
}

.ap-step-ring--final {
  border-color: rgba(249,224,118,0.5);
  animation-duration: 2s;
}

@keyframes stepRing {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.1); opacity: 1;   }
}

.ap-step-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-noche), var(--azul-medio));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(13,58,107,0.28);
  border: 3px solid rgba(185,229,251,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.ap-step-circle i { font-size: 1.1rem; color: var(--azul-medio); }

.ap-step-circle--final {
  background: linear-gradient(135deg, var(--azul-noche) 0%, #1a4a8a 50%, #2a3a6b 100%);
  border-color: rgba(249,224,118,0.7);
  box-shadow: 0 8px 36px rgba(249,224,118,0.35), 0 0 50px rgba(249,224,118,0.1);
}

.ap-step-circle--final i { color: var(--dorado-brillo); font-size: 1.15rem; }

.ap-step:hover .ap-step-circle {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 18px 44px rgba(13,58,107,0.35);
}

/* Card de texto */
.ap-step-card {
  background: var(--gris-suave);
  border-radius: 20px;
  padding: 26px 18px 22px;
  text-align: center;
  width: 100%;
  border-top: 3px solid var(--azul-cielo);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.ap-step:hover .ap-step-card {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(13,58,107,0.12);
}

.ap-step-card--final {
  background: linear-gradient(145deg, var(--azul-noche) 0%, var(--azul-oscuro) 100%);
  border-top-color: var(--dorado-brillo);
}

.ap-step-card--final h3 { color: #ffffff; }
.ap-step-card--final p  { color: rgba(255, 255, 255, 0.9); }

/* Número flotante */
.ap-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--azul-noche);
  color: var(--dorado-brillo);
  font-size: 0.68rem;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 1px;
  padding: 3px 14px;
  border-radius: 20px;
  border: 2px solid rgba(185,229,251,0.4);
  white-space: nowrap;
}

.ap-step-num--final {
  background: var(--dorado-brillo);
  color: var(--azul-noche);
  border-color: var(--dorado-brillo);
}

.ap-step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--azul-noche);
  margin: 8px 0 10px;
  font-family: 'Nunito', sans-serif;
}
.ap-step-card--final h3 { color: #ffffff; }

.ap-step-card p {
  font-size: 0.82rem;
  color: var(--texto-suave);
  line-height: 1.7;
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

.ap-step-glow-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--dorado-brillo);
  margin-top: 12px;
  font-family: 'Nunito', sans-serif;
}

.ap-step-glow-label i { animation: stepFire 1.2s ease-in-out infinite; }

@keyframes stepFire {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* ══════════════════════════════════════════════════════════
   VISIÓN
   ══════════════════════════════════════════════════════════ */
.ap-vision {
  padding: 100px 0;
  background: linear-gradient(135deg, #141a22 0%, #252f3d 55%, #5a6578 100%);
  position: relative;
  overflow: hidden;
}

.ap-vision::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(185,229,251,0.04);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.ap-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.ap-vision-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(185,229,251,0.15);
  border-radius: 22px;
  padding: 40px 28px 36px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.ap-vision-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.ap-vision-icono {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.ap-vision-icono i {
  font-size: 1.15rem;
  color: var(--dorado-brillo);
}

.ap-vision-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  font-family: 'Nunito', sans-serif;
}

.ap-vision-card p {
  font-size: 0.9rem;
  color: var(--azul-cielo);
  line-height: 1.75;
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

/* ══════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════ */
.ap-cta {
  padding: 100px 24px;
  background: var(--azul-noche);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ap-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.ap-cta-deco {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(21,101,192,0.35);
  pointer-events: none;
}

.ap-cta-deco--izq { top: -160px; left: -160px; }
.ap-cta-deco--der { bottom: -160px; right: -160px; }

.ap-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  line-height: 1.25;
  margin: 0 0 14px;
}

.ap-cta > .ap-cta-inner > p {
  color: var(--azul-cielo);
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  margin: 0 0 40px;
  line-height: 1.7;
}

.ap-cta-contactos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.ap-cta-contacto {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(185,229,251,0.15);
  border-radius: 14px;
  padding: 16px 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  text-align: left;
}

.ap-cta-contacto:hover {
  background: rgba(255,255,255,0.11);
  transform: translateX(5px);
}

.ap-cta-c-icono {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249,224,118,0.15);
  border: 1px solid rgba(249,224,118,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-cta-c-icono i { color: var(--dorado-brillo); font-size: 1rem; }

.ap-cta-c-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--azul-cielo);
  font-family: 'Nunito', sans-serif;
  margin-bottom: 2px;
}

.ap-cta-c-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
}

.ap-cta-acciones {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Hero */
  .ap-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
  .ap-hero-pills { justify-content: center; }
  .ap-hero-nombre { font-size: 2.6rem; }
  .ap-hero-nombre em { font-size: 3rem; }
  .ap-hero-divisor { margin: 0 auto 24px; }
  .ap-br { display: none; }

  /* Llamado */
  .ap-llamado-grid { grid-template-columns: 1fr; gap: 50px; }

  /* Steps historia */
  .ap-steps-row { grid-template-columns: 1fr 1fr; }
  .ap-steps-line { display: none; }

  /* Vision */
  .ap-vision-grid { grid-template-columns: 1fr; }

  /* CTA */
  .ap-cta h2 { font-size: 1.7rem; }
}

@media (max-width: 600px) {
  .ap-hero { padding: 90px 16px 70px; }
  .ap-hero-foto-ring { width: 260px; height: 260px; }
  .ap-hero-nombre { font-size: 2rem; }
  .ap-hero-nombre em { font-size: 2.4rem; }
  .ap-llamado-stats { grid-template-columns: 1fr; }
  .ap-seccion-cabecera h2 { font-size: 1.65rem; }
  .ap-cta-acciones { flex-direction: column; align-items: center; }
  .ap-cta-contacto { flex-direction: column; align-items: flex-start; }
  .ap-steps-row { grid-template-columns: 1fr 1fr; }
}

/* ── Overrides: paleta tenue ───────────────────────────── */
.ap-label {
  background: rgba(197, 210, 206, 0.2);
  color: var(--azul-medio);
  border-color: rgba(74, 92, 95, 0.25);
}

.ap-badge {
  background: rgba(184, 149, 107, 0.12);
  color: var(--dorado-brillo);
  border-color: rgba(184, 149, 107, 0.35);
}

.ap-hero-subtitulo { color: rgba(255, 255, 255, 0.82); }

.ap-pill {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.ap-red {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.ap-red.yt,
.ap-red.fb,
.ap-red.ig {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.ap-red:hover {
  background: rgba(184, 149, 107, 0.25);
  border-color: var(--dorado-brillo);
}

.ap-versiculo { background: var(--gris-suave); }

.ap-llamado,
.ap-historia { background: var(--blanco-puro); }

.ap-vision { background: linear-gradient(160deg, var(--azul-noche), var(--azul-oscuro)); }

.ap-stat-card,
.ap-step-card,
.ap-vision-card {
  border: 1px solid #ddd8cf;
  box-shadow: 0 2px 16px rgba(46, 58, 60, 0.06);
}

.ap-btn-primary {
  background: var(--dorado-brillo);
  color: #f7f4ef;
  box-shadow: none;
}

.ap-btn-primary:hover {
  background: var(--dorado-suave);
}

.ap-btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
}
