/* ============================================================
   MEDENS — Nefrología
   styles.css
   ============================================================ */

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --blue-dark:    #0c4a6e;
  --blue:         #0369a1;
  --blue-mid:     #0284c7;
  --blue-light:   #0ea5e9;
  --blue-xlight:  #e0f2fe;
  --cyan:         #06b6d4;
  --green:        #10b981;
  --orange:       #f97316;
  --white:        #ffffff;
  --off-white:    #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-300:     #cbd5e1;
  --gray-400:     #94a3b8;
  --gray-500:     #64748b;
  --gray-700:     #334155;
  --gray-900:     #0f172a;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: background .3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--blue-dark);
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all .3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
/* ============================================================
   HERO — Combinación op.2 + op.4
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 5px 1fr auto;
  grid-template-rows: 1fr;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  padding-top: 64px; /* altura del nav */
}

/* Número decorativo — z-index 0, nunca encima del texto */
.hero-deco {
  position: absolute;
  /* anclado a la derecha del área de texto, lejos del panel de stats */
  right: 220px;
  top: 50%;
  transform: translateY(-55%);
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 260px);
  font-weight: 400;
  color: var(--blue-xlight);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;          /* SIEMPRE detrás de todo */
  opacity: 1;
}

/* Barra lateral de acento */
.hero-bar {
  background: var(--blue);
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
}

/* Cuerpo principal */
.hero-body {
  grid-column: 2;
  grid-row: 1;
  padding: 72px 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;          /* encima del decorativo */
}

.hero-top { flex: 1; display: flex; flex-direction: column; justify-content: center; }

/* Breadcrumb */
.hero-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-400);
  margin-bottom: 24px;
  opacity: 0; animation: fadeup .6s var(--ease) .1s forwards;
}
.hero-breadcrumb a { color: var(--gray-400); text-decoration: none; transition: color .2s; }
.hero-breadcrumb a:hover { color: var(--blue); }
.hero-breadcrumb span { color: var(--blue-mid); font-weight: 500; }
.hero-breadcrumb-sep { color: var(--gray-300); }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-xlight);
  border: 1px solid rgba(14,165,233,.25);
  color: var(--blue-mid);
  font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 40px;
  margin-bottom: 20px; width: fit-content;
  opacity: 0; animation: fadeup .7s var(--ease) .2s forwards;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }

/* Título */
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.0;
  color: var(--blue-dark);
  margin-bottom: 18px;
  opacity: 0; animation: fadeup .8s var(--ease) .3s forwards;
}
h1.hero-title em { font-style: italic; color: var(--blue-mid); }

/* Subtítulo */
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--gray-500);
  max-width: 420px; line-height: 1.75;
  opacity: 0; animation: fadeup .8s var(--ease) .4s forwards;
}

/* Parte inferior: divisor + meta */
.hero-bottom {
  opacity: 0; animation: fadeup .8s var(--ease) .55s forwards;
}

.hero-divider {
  height: 1px; background: var(--gray-200);
  margin: 32px 0 24px;
}

.hero-meta {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}

.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
}

.hero-meta-icon {
  width: 32px; height: 32px;
  background: var(--blue-xlight); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-meta-icon svg {
  width: 14px; height: 14px;
  stroke: var(--blue); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.hero-meta-label {
  font-size: 10px; font-weight: 400; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px;
}
.hero-meta-value { font-size: 13px; font-weight: 500; color: var(--blue-dark); }

/* Botones del hero */
.hero-actions { display: flex; gap: 10px; margin-left: auto; align-items: center; }

.btn-primary-dark {
  background: var(--blue); color: var(--white);
  padding: 11px 24px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary-dark:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3,105,161,.2);
}

.btn-ghost-light {
  color: var(--blue); padding: 11px 20px; border-radius: 8px;
  font-size: 13px; text-decoration: none;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer; font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-ghost-light:hover {
  border-color: var(--blue-light);
  box-shadow: 0 4px 12px rgba(3,105,161,.08);
}

/* Panel de estadísticas — derecha */
.hero-stats {
  grid-column: 3;
  grid-row: 1;
  background: var(--white);
  border-left: 1px solid var(--gray-200);
  padding: 80px 32px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 172px;
  z-index: 2;
}

.hero-stat-card {
  padding: 18px 20px;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: var(--off-white);
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.hero-stat-card:hover {
  border-color: var(--blue-xlight);
  box-shadow: 0 4px 16px rgba(3,105,161,.06);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 34px; color: var(--blue-dark); line-height: 1;
}
.hero-stat-num sup { font-size: 16px; color: var(--blue-mid); }
.hero-stat-label {
  font-size: 10px; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .07em; margin-top: 6px;
  line-height: 1.3;
}

@keyframes fadeup { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(36px,5vw,52px); font-weight: 400; line-height: 1.1; color: var(--blue-dark); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--blue-mid); }
.section-desc { font-size: 16px; font-weight: 300; color: var(--gray-400); line-height: 1.7; max-width: 500px; margin: 0 auto 56px; }
.section-header { text-align: center; }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--blue-xlight);
  border-radius: 16px;
  border: 2px dashed var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder--sm { aspect-ratio: 16/9; border-radius: 12px; }
.img-placeholder--round { width: 120px; height: 120px; aspect-ratio: 1; border-radius: 50%; flex-shrink: 0; }
.img-placeholder-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px; text-align: center;
}
.img-placeholder-inner svg { width: 40px; height: 40px; stroke: var(--blue-mid); opacity: .5; }
.img-placeholder--round .img-placeholder-inner svg { width: 32px; height: 32px; }
.img-placeholder-inner span { font-size: 11px; font-weight: 500; color: var(--blue-mid); letter-spacing: .06em; text-transform: uppercase; opacity: .6; }

/* ============================================================
   QUÉ ES — Split layout
   ============================================================ */
#que-es { padding: 120px 0; background: var(--white); }
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-text { display: flex; flex-direction: column; }
.split-text p {
  font-size: 15px; font-weight: 300; color: var(--gray-500);
  line-height: 1.8; margin-top: 16px; max-width: 480px;
}
.split-visual {}

/* ============================================================
   CUÁNDO ACUDIR — Síntomas
   ============================================================ */
#cuando-acudir { padding: 100px 0; background: var(--off-white); }
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.symptom-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.symptom-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.symptom-card:hover::after { transform: scaleX(1); }
.symptom-card:hover {
  border-color: rgba(14,165,233,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(3,105,161,.08);
}
.symptom-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-xlight);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background .25s;
}
.symptom-card:hover .symptom-icon { background: var(--blue-light); }
.symptom-icon svg { width: 20px; height: 20px; stroke: var(--blue); transition: stroke .25s; }
.symptom-card:hover .symptom-icon svg { stroke: var(--white); }
.symptom-card h4 { font-size: 14px; font-weight: 500; color: var(--blue-dark); margin-bottom: 8px; }
.symptom-card p { font-size: 13px; font-weight: 300; color: var(--gray-400); line-height: 1.6; }

/* ============================================================
   PROCESO — Pasos
   ============================================================ */
#proceso { padding: 120px 0; background: var(--white); }
.process-steps { margin-top: 64px; }
.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 0;
}
.process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}
.process-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.process-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: var(--gray-200);
  margin: 8px 0;
}
.process-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-100);
  flex: 1;
}
.process-step:last-child .process-body { border-bottom: none; padding-bottom: 0; }
.process-img-wrap {}
.process-text { padding-top: 4px; }
.process-text h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--blue-dark); margin-bottom: 12px; line-height: 1.2; }
.process-text p { font-size: 15px; font-weight: 300; color: var(--gray-500); line-height: 1.8; }

/* ============================================================
   BENEFICIOS
   ============================================================ */
#beneficios {
  padding: 100px 0;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}
#beneficios::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 80px 80px;
}
.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.benefits-left { position: sticky; top: 100px; }
.benefits-list { display: flex; flex-direction: column; gap: 0; }
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.benefit-icon svg { width: 18px; height: 18px; stroke: #7dd3fc; }
.benefit-item h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.benefit-item p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ============================================================
   EQUIPO
   ============================================================ */
#equipo { padding: 120px 0; background: var(--off-white); }
.team-wrap { margin-top: 56px; }
.team-card-full {
  display: grid;
  grid-template-columns: auto 1fr 360px;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px;
  align-items: start;
}
.team-card-img { display: flex; justify-content: center; }
.team-role-badge {
  display: inline-block;
  background: var(--blue-xlight);
  color: var(--blue-mid);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.team-card-info h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--blue-dark); margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 400; color: var(--blue-mid); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.team-bio { font-size: 14px; font-weight: 300; color: var(--gray-500); line-height: 1.8; margin-bottom: 24px; max-width: 400px; }
.team-certs { display: flex; flex-direction: column; gap: 10px; }
.team-cert {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 300; color: var(--gray-500);
}
.team-cert svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--blue-mid); }

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta {
  padding: 120px 48px;
  background: var(--white);
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-lg {
  padding: 14px 34px; border-radius: 8px; font-size: 14px; font-weight: 500;
  font-family: var(--font-body); text-decoration: none; cursor: pointer; border: none;
  transition: all .2s; display: flex; align-items: center; gap: 10px;
}
.btn-lg-blue { background: var(--blue); color: var(--white); }
.btn-lg-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(3,105,161,.25); }
.btn-lg-wa { background: #25d366; color: var(--white); }
.btn-lg-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.25); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--blue-dark); padding: 64px 48px 40px; position: relative; overflow: hidden; }
.ft-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 60px 60px; }
.ft-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.ft-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ft-logo-mark { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.ft-brand { font-weight: 500; font-size: 15px; color: var(--white); letter-spacing: .04em; }
.ft-sub { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase; }
.ft-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 260px; }
.ft-col-title { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.ft-links { list-style: none; }
.ft-links li { margin-bottom: 10px; }
.ft-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--white); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,.22); font-weight: 300; }
.ft-hemo { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #7dd3fc; text-decoration: none; border: 1px solid rgba(125,211,252,.2); padding: 7px 16px; border-radius: 6px; transition: border-color .2s; }
.ft-hemo:hover { border-color: rgba(125,211,252,.55); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-group { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 200; }
.fbtn { width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.18); transition: transform .2s, box-shadow .2s; text-decoration: none; }
.fbtn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,.22); }
.fbtn-wa { background: #25d366; }
.fbtn-wa svg { width: 26px; height: 26px; }
.fbtn-appt { background: var(--blue); }
.fbtn-appt svg { width: 22px; height: 22px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .section-inner { padding: 0 28px; }
  .hero-body { padding: 60px 36px 40px; }
  .hero-stats { min-width: 148px; padding: 80px 20px 40px; }
  .hero-deco { font-size: 160px; right: 170px; }
  .split-block { gap: 48px; }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .process-body { grid-template-columns: 200px 1fr; gap: 28px; }
  .benefits-wrap { gap: 48px; }
  .team-card-full { grid-template-columns: auto 1fr; gap: 32px; }
  .team-card-visual { display: none; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--gray-100); }
  .nav-links a { display: block; padding: 13px 20px; font-size: 14px; color: var(--gray-700); }
  .nav-cta { margin: 8px 20px; border-radius: 6px !important; text-align: center; display: block; }
  .nav-hamburger { display: flex; }

  /* Hero mobile */
  #hero { grid-template-columns: 4px 1fr; grid-template-rows: auto auto; min-height: auto; }
  .hero-deco { font-size: 120px; right: 10px; top: 40px; transform: none; opacity: .5; }
  .hero-body { grid-column: 2; grid-row: 1; padding: 40px 20px 28px; }
  .hero-stats { grid-column: 1 / -1; grid-row: 2; border-left: none; border-top: 1px solid var(--gray-200); flex-direction: row; padding: 20px; gap: 10px; min-width: 0; }
  .hero-stat-card { flex: 1; padding: 14px 10px; }
  .hero-stat-num { font-size: 24px; }
  .hero-meta { gap: 16px; }
  .hero-actions { margin-left: 0; margin-top: 12px; width: 100%; flex-direction: column; }
  .btn-primary-dark, .btn-ghost-light { width: 100%; text-align: center; justify-content: center; }
  .section-inner { padding: 0 20px; }
  #que-es { padding: 72px 0; }
  .split-block { grid-template-columns: 1fr; gap: 36px; }
  #cuando-acudir { padding: 72px 0; }
  .symptoms-grid { grid-template-columns: 1fr; }
  #proceso { padding: 72px 0; }
  .process-body { grid-template-columns: 1fr; gap: 20px; }
  .process-img-wrap { display: none; }
  #beneficios { padding: 72px 0; }
  .benefits-wrap { grid-template-columns: 1fr; gap: 40px; }
  .benefits-left { position: static; }
  #equipo { padding: 72px 0; }
  .team-card-full { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .team-card-img { justify-content: flex-start; }
  #cta { padding: 72px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { justify-content: center; }
  footer { padding: 48px 20px 28px; }
  .ft-top { grid-template-columns: 1fr; gap: 32px; }
  .ft-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .float-group { bottom: 20px; right: 16px; }
  .fbtn { width: 46px; height: 46px; }
}