/* ============================================================
   MUJER VITAL — CSS CONSOLIDADO v5
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-deep:  #3A2456;
  --fucsia:       #C65A9A;
  --purple-mid:   #6A3FA3;
  --violet:       #7A5FAE;
  --pink-soft:    #F2D6E6;
  --white-warm:   #FFF9FB;
  --cream:        #F7EFEF;
  --text-dark:    #2D1B3D;
  --text-mid:     #6B5677;
  --text-light:   #A08DB0;
  --grad-btn:     linear-gradient(135deg, #C65A9A 0%, #6A3FA3 100%);
  --shadow-card:  0 4px 32px rgba(58,36,86,0.10);
  --shadow-btn:   0 8px 24px rgba(198,90,154,0.35);
  --radius:       16px;
  --radius-lg:    28px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white-warm);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section { padding: 96px 0; }

/* ── TIPOGRAFÍA ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 600; color: var(--purple-deep); }
h3 { font-size: 1.1rem; font-weight: 600; color: var(--purple-deep); margin-bottom: 0.5rem; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }

h2 em {
  font-style: italic;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fucsia);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── BOTONES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-btn);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: var(--shadow-btn);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 32px rgba(198,90,154,0.45); }
.btn-primary.large { font-size: 1.05rem; padding: 18px 38px; }

.btn-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fucsia);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.btn-soft:hover { gap: 12px; }

.bico { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,249,251,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198,90,154,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(58,36,86,0.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, 92%);
  margin: 0 auto;
  height: 70px;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  flex-shrink: 0;
  text-decoration: none;
}

/* Pastilla blanca que envuelve el isotipo */
.logo-isotipo-wrap {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(58,36,86,0.15);
  padding: 0;
  overflow: hidden;
}
.logo-isotipo-wrap img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  /* El PNG tiene fondo negro: multiply lo elimina visualmente sobre blanco */
  mix-blend-mode: multiply;
}

/* Pastilla en footer (fondo oscuro) */
.logo-isotipo-wrap.footer-iso-wrap {
  background: rgba(255,255,255,0.12);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.2);
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-deep);
  display: block;
  line-height: 1.1;
}
.logo-name.white { color: #fff; }
.logo-desc {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--text-light);
  display: block;
  text-transform: uppercase;
}
.logo-desc.dim { color: rgba(255,255,255,0.50); }

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--fucsia);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--fucsia); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-btn) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.95rem !important;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(198,90,154,0.3);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,90,154,0.4) !important; }

/* ── Hamburguesa ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — solo imagen, sin texto encima
   El navbar tiene 70px de altura fija, el hero empieza justo debajo
   ============================================================ */
.hero {
  margin-top: 70px;        /* empuja la imagen exactamente debajo del navbar */
  width: 100%;
  overflow: hidden;
  line-height: 0;          /* elimina espacio fantasma de inline */
}

.hero img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* ============================================================
   TICKER — inmediatamente debajo del hero, sin superposición
   ============================================================ */
.ticker-wrap {
  width: 100%;
  background: var(--purple-deep);
  overflow: hidden;
  padding: 16px 0;
  /* Fade en los bordes */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.tw-bold {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fucsia);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  padding: 0 14px;
}
.tw-normal {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--pink-soft);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  padding: 0 14px;
}
.tw-sep {
  color: rgba(242,214,230,0.30);
  font-size: 0.85rem;
  user-select: none;
}

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-sub { font-size: 1.05rem; color: var(--text-mid); margin-top: 0.75rem; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios { background: var(--cream); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.srv-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(58,36,86,0.14);
  border-top-color: var(--fucsia);
}

.srv-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(198,90,154,0.12) 0%, rgba(106,63,163,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--fucsia);
  transition: background var(--transition), color var(--transition);
}
.srv-card:hover .srv-ico { background: var(--grad-btn); color: #fff; }
.srv-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.srv-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

.srv-cta { text-align: center; }

/* ============================================================
   ETAPAS DE VIDA
   ============================================================ */
.etapas { background: var(--white-warm); }

.etapas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.etapa-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.etapa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.etapa-card.etapa-hl {
  background: linear-gradient(135deg, #3A2456 0%, #6A3FA3 50%, #C65A9A 100%);
}
.etapa-card.etapa-hl h3,
.etapa-card.etapa-hl .etapa-age { color: #fff; }

.etapa-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--fucsia);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(198,90,154,0.4);
}

.etapa-age {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fucsia);
  margin-bottom: 0.25rem;
}

.etapa-card h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }

.etapa-card ul { margin-bottom: 1.5rem; }
.etapa-card li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 5px 0 5px 1.1rem;
  position: relative;
}
.etapa-card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 9px;
  color: var(--fucsia);
}
.etapa-card.etapa-hl li { color: rgba(255,255,255,0.82); }
.etapa-card.etapa-hl li::before { color: var(--pink-soft); }

.etapa-quote {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-light);
  border-top: 1px solid rgba(198,90,154,0.15);
  padding-top: 1rem;
  line-height: 1.5;
}
.etapa-card.etapa-hl .etapa-quote {
  color: rgba(255,255,255,0.65);
  border-top-color: rgba(255,255,255,0.2);
}

/* ============================================================
   DIFERENCIALES
   ============================================================ */
.diferenciales { background: linear-gradient(180deg, #F7EFEF 0%, #FFF9FB 100%); }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dif-card {
  background: var(--white-warm);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}
.dif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-btn);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.dif-card:hover { transform: translateY(-4px); }
.dif-card:hover::before { transform: scaleX(1); }

.dif-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(198,90,154,0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.dif-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.dif-card p  { font-size: 0.88rem; }

/* ============================================================
   ESTADÍSTICAS — círculos de progreso SVG
   ============================================================ */
.stats-section { background: var(--cream); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.stat-ring {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.stat-svg {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}

.stat-track {
  fill: none;
  stroke: rgba(58,36,86,0.08);
  stroke-width: 10;
}

.stat-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;  /* vacío por defecto */
  transition: stroke-dashoffset 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-fill-1 { stroke: #C65A9A; }
.stat-fill-2 { stroke: #6A3FA3; }
.stat-fill-3 { stroke: #7A5FAE; }
.stat-fill-4 { stroke: #C65A9A; opacity: 0.75; }

/* Activa animación de arco cuando entra al viewport */
.stat-item.visible .stat-fill-1 { stroke-dashoffset: 47;  }  /* 85% */
.stat-item.visible .stat-fill-2 { stroke-dashoffset: 25;  }  /* 92% */
.stat-item.visible .stat-fill-3 { stroke-dashoffset: 69;  }  /* 78% */
.stat-item.visible .stat-fill-4 { stroke-dashoffset: 13;  }  /* 96% */

/* ── Animación de entrada del stat-ring (escala + fade) ── */
.stat-ring {
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-item.visible .stat-ring {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Delays escalonados para cada círculo */
.stat-item:nth-child(1).visible .stat-ring { transition-delay: 0s;    }
.stat-item:nth-child(2).visible .stat-ring { transition-delay: 0.15s; }
.stat-item:nth-child(3).visible .stat-ring { transition-delay: 0.30s; }
.stat-item:nth-child(4).visible .stat-ring { transition-delay: 0.45s; }

/* Delays para el arco también escalonados */
.stat-item:nth-child(1).visible .stat-fill { transition-delay: 0.2s;  }
.stat-item:nth-child(2).visible .stat-fill { transition-delay: 0.35s; }
.stat-item:nth-child(3).visible .stat-fill { transition-delay: 0.50s; }
.stat-item:nth-child(4).visible .stat-fill { transition-delay: 0.65s; }

/* Animación del texto del porcentaje */
.stat-pct {
  display: inline-block;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-item.visible .stat-pct { opacity: 1; transform: scale(1); }
.stat-item:nth-child(1).visible .stat-pct { transition-delay: 0.4s;  }
.stat-item:nth-child(2).visible .stat-pct { transition-delay: 0.55s; }
.stat-item:nth-child(3).visible .stat-pct { transition-delay: 0.70s; }
.stat-item:nth-child(4).visible .stat-pct { transition-delay: 0.85s; }

/* Animación del texto descriptivo */
.stat-desc {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat-item.visible .stat-desc { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(1).visible .stat-desc { transition-delay: 0.55s; }
.stat-item:nth-child(2).visible .stat-desc { transition-delay: 0.70s; }
.stat-item:nth-child(3).visible .stat-desc { transition-delay: 0.85s; }
.stat-item:nth-child(4).visible .stat-desc { transition-delay: 1.00s; }

.stat-label-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-pct {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 180px;
}
.stat-desc strong { color: var(--purple-deep); font-weight: 600; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios { background: var(--white-warm); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.test-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.test-card:hover { transform: translateY(-4px); }

.test-stars { color: var(--fucsia); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }

.test-card p {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--purple-deep);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.test-author { display: flex; align-items: center; gap: 12px; }

.test-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.9rem; color: var(--purple-deep); font-weight: 600; }
.test-author span   { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--purple-deep); padding: 60px 0 28px; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { max-width: 260px; }

.footer-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin: 1rem 0;
}

.footer-social { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }

.footer-ig,
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-ig:hover,
.footer-fb:hover { color: var(--fucsia); }

.footer-cols { display: flex; gap: 3rem; }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 1rem;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li  { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-col a   { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--pink-soft); }

.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.30); }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waEntrance 0.6s 1.5s ease both;
}
.wa-float svg  { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }

@keyframes waEntrance {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-tip {
  position: absolute;
  right: 70px;
  background: var(--purple-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.wa-tip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--purple-deep);
  border-right: none;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .srv-grid   { grid-template-columns: repeat(2, 1fr); }
  .dif-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }

  /* Navbar mobile */
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,249,251,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid rgba(198,90,154,0.1);
    box-shadow: 0 16px 40px rgba(58,36,86,0.12);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a  { display: block; padding: 1rem 2rem; font-size: 1rem; border-bottom: 1px solid rgba(198,90,154,0.06); }
  .nav-cta      { margin: 1rem 2rem 0; text-align: center; display: block; }

  /* Hero */
  .hero img { max-height: 360px; object-position: 65% 18%; }

  /* Grids */
  .etapas-grid { grid-template-columns: 1fr; gap: 2rem; }
  .test-grid   { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { max-width: none; }
  .footer-cols { flex-direction: column; gap: 2rem; }
}

@media (max-width: 600px) {
  h2 { font-size: 1.7rem; }
  .srv-grid   { grid-template-columns: 1fr; }
  .dif-grid   { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-ring, .stat-svg { width: 110px; height: 110px; }
  .stat-pct   { font-size: 1.6rem; }
  .hero img   { max-height: 260px; }
  .wa-float   { bottom: 20px; right: 20px; }
}