/* ============================================================
   ZYMU – Intervencionismo en Dolor
   style.css – Diseño profesional con Montserrat
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* === VARIABLES === */
:root {
  --navy:          #0d1b2a;
  --navy-mid:      #1a2e45;
  --dark:          #111827;
  --dark-card:     #1e293b;
  --olive:         #2d3a25;
  --olive-light:   #3a4a2e;
  --beige:         #f0ebe3;
  --beige-mid:     #e5ddd3;
  --white:         #ffffff;
  --off-white:     #f8f7f5;
  --gold:          #c9a84c;
  --gold-light:    #e2c270;
  --cyan:          #38bdf8;
  --cyan-dark:     #0ea5e9;
  --text-dark:     #1a1a2e;
  --text-light:    #f1f5f9;
  --text-muted:    #94a3b8;
  --text-body:     #cbd5e1;
  --border-light:  rgba(255,255,255,0.08);
  --border-dark:   rgba(0,0,0,0.12);

  --font:          'Montserrat', system-ui, sans-serif;

  --nav-height:    96px;
  --max-width:     1120px;
  --radius:        8px;
  --radius-lg:     16px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-light);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #f8f7f5;
  height: var(--nav-height);
  border-bottom: 1px solid #e8e6e3;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
}
.navbar-brand-sep {
  width: 1px;
  height: 20px;
  background: #d1d5db;
}
.navbar-brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #6b7280;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 120px;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text-dark);
  background: #f3f4f6;
}
.nav-links a.active {
  color: var(--text-dark);
  font-weight: 600;
}
.nav-links a.nav-cta {
  color: var(--cyan-dark);
  border: 1px solid rgba(14,165,233,0.4);
  margin-left: 8px;
}
.nav-links a.nav-cta:hover {
  background: rgba(14,165,233,0.08);
  color: var(--cyan-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

.page-body { padding-top: var(--nav-height); }

/* ============================================================
   HOME – HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.95) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(13,27,42,0.15) 100%
  );
}
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 64px 32px;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-title .line-small {
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  display: block;
  color: var(--cyan);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.hero-doctors {
  text-align: right;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 2px solid var(--gold);
  padding-right: 14px;
}
.hero-cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--cyan-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover {
  background: var(--cyan);
  transform: translateY(-1px);
}

/* HOME – TAGLINE */
.home-tagline {
  background: var(--navy-mid);
  padding: 64px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.home-tagline p {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.home-tagline strong {
  font-weight: 600;
  color: var(--white);
}

/* HOME – DESCRIPCIÓN */
.home-description {
  background: var(--dark);
  padding: 80px 32px 100px;
}
.home-description-inner {
  max-width: 760px;
  margin: 0 auto;
}
.home-description-inner p {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.85;
  text-align: center;
}
.home-description-inner p + p { margin-top: 1.6em; }

/* HOME – STATS STRIP */
.home-stats {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.02em;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   BLOQUEOS PAGE
   ============================================================ */
.page-bloqueos { background: var(--dark); }

.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 32px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-header .subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}
.page-header .page-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}

/* Legacy selectors kept for compatibility */
.bloqueos-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 32px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.bloqueos-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.bloqueos-header .subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}

.bloqueos-grid {
  background: var(--dark);
  padding: 60px 32px;
}
.bloqueos-grid-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bloqueo-item {
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.bloqueo-item:hover {
  border-color: rgba(56,189,248,0.3);
  transform: translateY(-2px);
}
.bloqueo-item h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.bloqueo-item p {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.8;
}

/* Secciones adicionales */
.bloqueos-section {
  background: var(--navy-mid);
  padding: 56px 32px;
  border-top: 1px solid var(--border-light);
}
.bloqueos-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.bloqueos-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.bloqueos-section p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 860px;
}

/* Bienestar */
.bienestar {
  background: var(--dark);
}
.bienestar-text {
  padding: 72px 32px 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.bienestar-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.bienestar-text hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 600px;
  margin: 0 auto 32px;
}
.bienestar-text p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.9;
}
.bienestar-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 35%;
}

/* ============================================================
   QUIÉNES SOMOS
   ============================================================ */
.page-quienes { background: var(--off-white); }

.quienes-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 32px 60px;
  text-align: center;
}
.quienes-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.quienes-header hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 600px;
  margin: 20px auto 0;
}

.medico-card {
  background: var(--off-white);
  padding: 64px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.medico-card + .medico-card {
  border-top: 1px solid var(--beige-mid);
}
.medico-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.medico-info {
  padding-top: 8px;
}
.medico-info h2 {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.medico-info .medico-mn {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.medico-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.medico-info ul li {
  font-size: 0.78rem;
  font-weight: 500;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.medico-info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--cyan-dark);
  border-radius: 50%;
}
.medico-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 9px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0a66c2;
  border: 1px solid rgba(10,102,194,0.35);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.medico-linkedin:hover {
  background: rgba(10,102,194,0.08);
}
.quienes-footer-space {
  background: var(--off-white);
  padding-bottom: 20px;
}
.quienes-footer-line {
  max-width: var(--max-width);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--beige-mid);
  padding-bottom: 40px;
}

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

.testimonios-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 32px 60px;
  text-align: center;
}
.testimonios-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.testimonios-header hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 600px;
  margin: 20px auto 0;
}

.testimonios-grid {
  background: var(--off-white);
  padding: 60px 32px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testimonio-item {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonio-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.testimonio-item > div:first-child {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.testimonio-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--beige-mid);
}
.testimonio-meta {
  padding-top: 4px;
}
.testimonio-text h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.testimonio-text .procedure {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.55;
}
.testimonio-text .quote {
  font-size: 0.925rem;
  font-weight: 400;
  font-style: italic;
  color: #374151;
  line-height: 1.75;
  border-left: 3px solid var(--cyan-dark);
  padding-left: 14px;
  margin-top: 4px;
}
.testimonio-divider { display: none; }

/* ============================================================
   CONTACTO
   ============================================================ */
.page-contacto { background: var(--dark); }

.contacto-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 32px 60px;
  text-align: center;
}
.contacto-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.contacto-header hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 600px;
  margin: 20px auto 0;
}

.contacto-body {
  padding: 72px 32px 60px;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.contacto-col {
  background: var(--dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.contacto-col h2 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.contacto-col p,
.contacto-col a {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.8;
}
.contacto-col a {
  transition: color 0.2s;
}
.contacto-col a:hover { color: var(--cyan); }

.contacto-secretaria {
  margin-top: 10px;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
}
.contacto-secretaria strong {
  color: var(--text-light) !important;
}

.contacto-ubicacion {
  padding: 0 32px 64px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.contacto-ubicacion h2 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.contacto-ubicacion p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
}
.contacto-maps-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(56,189,248,0.35);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.contacto-maps-link:hover {
  background: rgba(56,189,248,0.1);
}

/* WhatsApp */
.whatsapp-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  text-decoration: none !important;
  color: var(--white);
  transition: opacity 0.2s;
}
.whatsapp-link:hover { opacity: 0.8; }
.whatsapp-icon { width: 32px; height: 32px; }
.whatsapp-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacto-web {
  padding: 0 32px 60px;
  text-align: center;
}
.contacto-web p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border-light);
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-logo-icon {
  width: 126px;
  height: 126px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
  line-height: 1;
}
.footer-logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--cyan-dark);
  border-radius: 2px;
  margin: 4px 0;
}
.footer-info {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 12px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
}
.footer-info-item {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-info-item:hover { color: var(--cyan); }
.footer-info-sep { color: rgba(255,255,255,0.2); }
/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 12px 16px 12px 14px;
    font-size: 0.75rem;
  }
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.15s;
}
.footer-social-icon:hover {
  color: var(--white);
  transform: translateY(-2px);
}
.footer-copy {
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 56px; }

  .navbar-inner { padding: 0 20px; }
  .navbar-brand-sub { display: none; }
  .navbar-brand-sep { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #f8f7f5;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e8e6e3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid #e8e6e3;
    font-size: 0.8rem;
    color: #374151;
  }
  .nav-links a.nav-cta { margin-left: 0; border: none; border-bottom: 1px solid #e8e6e3; }
  .nav-toggle { display: block; }

  .hero-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 20px;
  }
  .hero-right { align-items: flex-start; }
  .hero-doctors { text-align: left; border-right: none; border-left: 2px solid var(--gold); padding-right: 0; padding-left: 12px; }

  .home-tagline { padding: 48px 20px; }
  .home-description { padding: 60px 20px 80px; }
  .home-stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stat-item:last-child { border-bottom: none; }

  .bloqueos-header, .page-header { padding: 60px 20px 48px; }
  .bloqueos-grid { padding: 40px 20px; }
  .bloqueos-grid-inner { grid-template-columns: 1fr; gap: 16px; }
  .bloqueos-section { padding: 40px 20px; }
  .bienestar-text { padding: 56px 20px 40px; }

  .medico-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 20px;
  }
  .medico-photo { max-width: 240px; aspect-ratio: 1/1; }

  .testimonios-header, .contacto-header, .quienes-header { padding: 60px 20px 48px; }
  .testimonios-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
    gap: 20px;
  }

  .contacto-body {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 20px;
  }
  .contacto-ubicacion { padding: 0 20px 48px; }
  .contacto-web { padding: 0 20px 40px; }

  .footer { padding: 40px 20px 32px; }
  .footer-logo-wrap { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .testimonio-item > div:first-child { flex-direction: column; }
  .testimonio-photo { width: 72px; height: 72px; }
  .footer-info { flex-direction: column; gap: 6px; }
  .footer-info-sep { display: none; }
}
