/* ==========================================================
   Imagine Clinic — Web styles
   Source of truth: design/project/v4-hybrid.jsx (V4 Hybrid)
   Palette: #179391 teal · #DBAC33 gold · #F1F8F8 cool / #F5EBDD warm
   Fonts:   Cormorant Garamond (serif) · Montserrat (sans)
   ========================================================== */

:root {
  --teal: #179391;
  --teal-deep: #0D5252;
  --teal-soft: #EBF6F6;
  --teal-100: #E4F2F1;
  --gold: #DBAC33;
  --gold-100: #F8EBD0;
  --gold-deep: #9C7820;
  --ink: #0F2424;
  --ink-08: rgba(15, 36, 36, 0.08);
  --ink-06: rgba(15, 36, 36, 0.06);
  --ink-10: rgba(15, 36, 36, 0.10);
  --ink-15: rgba(15, 36, 36, 0.15);
  --muted: #688080;
  --bg: #F5EBDD;
  --card: #FFFFFF;
  --pad: 110px;          /* density: airy */
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --shadow-card: 0 20px 50px rgba(15, 36, 36, 0.15);
  --shadow-cta: 0 24px 60px rgba(23, 147, 145, 0.25);
  --maxw: 1280px;
  --gutter: 48px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
.brk-mobile { display: none; }
.brk-desktop { display: inline; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ---- icons ---- */
svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.stars svg, .gallery__btn svg, .footer__social svg, .wa-float svg, .hero-card--rating svg { stroke: currentColor; }
.stars svg { fill: var(--gold); stroke: var(--gold); }
.ico { display: inline-block; vertical-align: middle; }

/* ---- generic helpers ---- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}
.eyebrow--gold { color: var(--gold); }
.text-gold { color: var(--gold); }

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: white;
  font-size: 13.5px;
}
.promo-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.promo-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-bar__pill {
  background: var(--gold);
  color: var(--teal-deep);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.promo-bar__sub { opacity: 0.85; }
.promo-bar__right {
  display: flex;
  gap: 24px;
  font-size: 12.5px;
  opacity: 0.9;
  flex-shrink: 0;
}
.promo-bar__right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--card);
  border-bottom: 1px solid var(--ink-10);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo__mark { object-fit: contain; }
.logo__sep {
  width: 1px;
  height: 28px;
  background: var(--teal);
  opacity: 0.55;
}
.logo__text { line-height: 1; display: flex; flex-direction: column; gap: 4px; }
.logo__name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--teal);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.logo__sub {
  font-family: var(--serif);
  font-size: 12.8px;
  color: var(--gold);
  letter-spacing: 0.22em;
  font-weight: 500;
}

.nav__menu {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg);
  border-radius: 999px;
}
.nav__menu a {
  display: block;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav__menu a:hover { background: var(--card); }
.nav__link--active {
  background: var(--teal) !important;
  color: white !important;
}

.nav__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.nav__phone {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav__phone .ico { color: var(--teal); }

.nav__toggle, .nav__toggle-input { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--dark {
  background: var(--ink);
  color: white;
  padding: 12px 22px;
  font-size: 14px;
}
.btn--primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 32px rgba(23, 147, 145, 0.25);
}
.btn--ghost {
  background: var(--card);
  color: var(--ink);
  padding: 16px 24px;
  border: 1.5px solid var(--ink-15);
}
.btn--gold {
  background: var(--gold);
  color: #3a2a08;
  padding: 20px 36px;
  font-size: 16px;
  font-weight: 700;
}
.btn--gold-block {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #3a2a08;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.btn--teal-block {
  display: block;
  text-align: center;
  background: var(--teal);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.btn--outline-light {
  background: transparent;
  color: white;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--whatsapp {
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.dot--wa { color: #25D366; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--gutter) 80px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}
.hero__left {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ink-08);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 32px;
}
.status-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}
.hero__eyebrow-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__eyebrow span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: #476767;
}
.hero__title {
  font-family: var(--serif);
  font-size: 92px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 28px;
}
.hero__title em {
  color: var(--teal);
  font-weight: 500;
  font-style: italic;
}
.hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-10);
}
.hero__stats > div {
  border-right: 1px solid var(--ink-10);
  padding-right: 32px;
}
.hero__stats > div:last-child { border-right: 0; padding-right: 0; }
.hero__stat-n {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-n sup {
  vertical-align: text-top;
  font-size: 0.6em;
  top: 0;
}
.hero__stat-l {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.hero__right {
  position: relative;
  min-height: 600px;
}
.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  background: var(--teal);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-card {
  position: absolute;
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
}
a.hero-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(15, 36, 36, 0.18);
}
.hero-card--calendar {
  top: 24px;
  right: 24px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.hero-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.hero-card__hint { font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.hero-card__value { font-size: 14px; font-weight: 600; color: var(--ink); }

.hero-card--rating {
  bottom: 24px;
  left: -16px;
  padding: 18px;
  min-width: 240px;
}
.hero-card--rating .stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}
.hero-card--rating .stars strong {
  font-size: 13px;
  font-weight: 700;
  margin-left: 6px;
  color: var(--ink);
}
.hero-card__quote {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-card__author { font-size: 11px; color: var(--muted); }

.hero-card--badge {
  top: 45%;
  left: -24px;
  background: var(--gold);
  color: #3a2a08;
  padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(212, 169, 60, 0.3);
  transform: rotate(-4deg);
}
.hero-card__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-card__big {
  font-size: 18px;
  font-weight: 700;
}

/* Escala proporcional del hero según altura del viewport.
   Mantiene todas las proporciones internas — solo reduce el tamaño visual
   para que quepa la primera pantalla en laptops chicas/medianas a 100% zoom. */
@media (min-width: 1101px) and (max-height: 900px) {
  .hero { zoom: 0.92; }
}
@media (min-width: 1101px) and (max-height: 820px) {
  .hero { zoom: 0.85; }
}
@media (min-width: 1101px) and (max-height: 740px) {
  .hero { zoom: 0.78; }
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad) var(--gutter);
}
.section--card {
  max-width: none;
  background: var(--card);
}
.section--card > * {
  max-width: calc(var(--maxw) - 2 * var(--gutter));
  margin-left: auto;
  margin-right: auto;
}

.section__head {
  margin-bottom: 48px;
}
.section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}
.section__head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}
.section__title {
  font-family: var(--sans);
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  max-width: 700px;
}
.section__head--center .section__title { max-width: none; }
.section__title--light { color: white; }
.section__lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.link-arrow {
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.doctor {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--ink-08);
  display: grid;
  grid-template-columns: 240px 1fr;
}
.doctor__photo { height: 360px; background: var(--teal-100); }
.doctor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.doctor:nth-child(2) .doctor__photo img { object-position: center 30%; }
.doctor__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.doctor__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.tag--teal { background: var(--teal-soft); color: var(--teal-deep); }
.tag--gold { background: var(--gold-100); color: var(--gold-deep); }
.doctor__name {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.doctor__bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.doctor__feats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-10);
}
.doctor__feats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.doctor__feats .ico { color: var(--teal); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  border: 1px solid var(--ink-06);
  transition: transform 0.3s;
}
.service:hover { transform: translateY(-4px); }
.service__tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service__tag--gold {
  background: var(--gold);
  color: #3a2a08;
}
.service__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(23, 147, 145, 0.2);
  color: var(--teal);
}
.service__icon svg { stroke-width: 1.6; }
.service h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.service p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}
.service .link-arrow {
  font-size: 13px;
}

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.differentiators {
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  padding: 64px;
  color: white;
  background-image:
    radial-gradient(circle at 0% 0%, var(--teal) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(219, 172, 51, 0.25) 0%, transparent 50%);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.differentiators__head { margin-bottom: 0; }
.differentiators__head h2 { margin: 0; font-size: 44px; }
.differentiators__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.diff {
  display: flex;
  gap: 16px;
}
.diff__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(219, 172, 51, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diff h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
}
.diff p {
  font-size: 13.5px;
  opacity: 0.8;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery figure {
  flex: 0 0 calc((100% - 3 * 16px) / 4);
  scroll-snap-align: start;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  background: var(--teal-100);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__nav {
  display: flex;
  gap: 8px;
}
.gallery__btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--ink-15);
  background: var(--card);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__btn--primary {
  border: 0;
  background: var(--teal);
  color: white;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rating-line {
  display: inline-flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.rating-line strong { color: var(--ink); margin-left: 6px; }
.stars { display: inline-flex; gap: 2px; align-items: center; color: var(--gold); }

.testimonials {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
.testimonials::-webkit-scrollbar { display: none; }
.testimonial {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((min(100vw, var(--maxw)) - 2 * var(--gutter) - 40px) / 3);
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--ink-06);
  margin: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 36, 36, 0.08);
}
.testimonial > .stars { margin-bottom: 16px; }
.testimonial > p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.rating-line__link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.rating-line__link:hover { color: var(--teal-deep); }
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial footer span:not(.avatar) {
  display: flex;
  flex-direction: column;
}
.testimonial footer strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial footer small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.avatar--teal { background: var(--teal); }
.avatar--gold { background: var(--gold); color: #3a2a08; }
.avatar--cream { background: #F8F3E8; color: var(--gold-deep); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price {
  background: var(--card);
  color: var(--ink);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--ink-08);
  position: relative;
}
.price--highlight {
  background: var(--teal);
  color: white;
  border: 0;
  box-shadow: 0 24px 60px rgba(23, 147, 145, 0.25);
}
.price__ribbon {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--gold);
  color: #3a2a08;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price__tier {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 8px;
}
.price--highlight .price__tier { opacity: 0.9; }
.price__amount {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--teal);
}
.price--highlight .price__amount { color: var(--gold); }
.price__sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 24px;
  min-height: 40px;
}
.price--highlight .price__sub { color: white; opacity: 0.85; }
.price ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.price ul li svg { color: var(--teal); flex-shrink: 0; }
.price--highlight ul li svg { color: var(--gold); }

.pricing__more {
  margin: 40px auto 0;
  max-width: 880px;
  text-align: center;
}
.pricing__more p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}
.pricing__more p:last-child { margin-bottom: 0; }
.pricing__more p strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.pricing__more-wa,
.pricing__more-ig {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.pricing__more-wa:hover,
.pricing__more-ig:hover { color: var(--teal-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 64px;
}
.faq__intro h2 { margin-bottom: 24px; font-size: 40px; }
.faq__intro p.section__lead { margin-bottom: 32px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__list details {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  border: 1px solid var(--ink-06);
}
.faq__list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq__list details[open] .faq__plus { transform: rotate(45deg); }
.faq__list details > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact__info {
  background: var(--card);
  border-radius: 28px;
  padding: 48px;
  border: 1px solid var(--ink-08);
}
.contact__info .section__title {
  font-size: 36px;
  margin-bottom: 32px;
}
.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.contact__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-08);
  align-items: center;
}
.contact__list li:last-child { border-bottom: 0; }
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__list small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact__list span:not(.contact__icon),
.contact__list a {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.contact__map {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  min-height: 540px;
  position: relative;
  background: var(--teal-100);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact__map:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 36, 36, 0.15);
}
.contact__map img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}
.contact__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 36, 36, 0.6) 100%);
  border-radius: 28px;
  pointer-events: none;
}
.contact__pin {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: white;
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.contact__pin-icon { color: var(--teal); display: inline-flex; }
.contact__pin small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
}
.final-cta .eyebrow {
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}
.final-cta h2 {
  font-family: var(--sans);
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__lead {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 40px;
}
.final-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--gutter) 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li,
.footer ul li a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer ul li a:hover { color: var(--teal); }
.footer__address {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
}
.footer__address svg {
  margin-top: 3px;
  color: var(--teal);
  flex-shrink: 0;
}
.footer__address:hover { color: var(--teal); }
.footer__directions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s ease;
}
.footer__directions:hover,
.footer__directions:focus,
.footer__directions:active {
  color: var(--teal);
}
.footer__directions:hover .footer__directions-address,
.footer__directions:focus .footer__directions-address,
.footer__directions:active .footer__directions-address {
  color: var(--teal);
}
.footer__grid li:has(.footer__address) { display: none; }
.footer__directions-address {
  display: inline;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer__directions-address::before { content: "· "; }
.footer p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 320px;
}
.logo--footer { margin-bottom: 0; }
.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer__social a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer__social .social-tile {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF4E8;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.footer__social a:hover .social-tile {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 82, 82, 0.3);
  filter: brightness(1.08);
}
.footer__social a:hover { color: var(--ink); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--ink-10);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg,
.wa-float svg path {
  stroke: none !important;
  fill: #FAF4E8 !important;
}
.wa-float svg { width: 38px; height: 38px; }

/* ============================================================
   PROCEDIMIENTOS (Sala de procedimientos)
   ============================================================ */
.proc-gallery-wrap { margin-bottom: 88px; }
.proc-gallery__nav {
  justify-content: flex-end;
  margin-bottom: 20px;
}
.proc-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.proc-gallery::-webkit-scrollbar { display: none; }
.proc-gallery figure {
  flex: 0 0 calc((100% - 3 * 16px) / 4);
  scroll-snap-align: start;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  background: var(--teal-100);
}
.proc-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proc-standards {
  text-align: center;
  margin-bottom: 96px;
}
.proc-standards__head {
  max-width: 720px;
  margin: 0 auto 48px;
}
.proc-standards__head .eyebrow { margin-bottom: 12px; }
.proc-standards__head h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.proc-standards__head > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.proc-standards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.proc-std {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proc-std__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-std h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.015em;
}
.proc-std p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.proc-categories {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title list"
    "cta   list";
  column-gap: 64px;
  row-gap: 32px;
  margin-bottom: 64px;
}
.proc-categories__title-block { grid-area: title; align-self: start; }
.proc-categories__list { grid-area: list; }
.proc-categories__cta { grid-area: cta; align-self: start; }
.proc-categories__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.proc-categories__title-block .section__lead { margin: 0; }
.proc-categories__cta-q {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.proc-categories__cta-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}
.proc-categories__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proc-cat {
  background: var(--card);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-md);
}
.proc-cat summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  user-select: none;
}
.proc-cat summary::-webkit-details-marker { display: none; }
.proc-cat[open] summary { padding-bottom: 18px; }
.proc-cat[open] .faq__plus { transform: rotate(45deg); }
.proc-cat ul {
  list-style: none;
  margin: 0;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--ink-08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proc-cat li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
  padding-left: 16px;
}
.proc-cat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.proc-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

/* tablet */
@media (max-width: 1100px) {
  :root { --gutter: 32px; --pad: 80px; }
  .hero__title { font-size: 72px; }
  .hero__left { padding: 40px; }
  .nav__menu { display: none; }
  .section__title { font-size: 40px; }
  .differentiators { padding: 48px; gap: 40px; }
  .final-cta h2 { font-size: 48px; }
  .final-cta { padding: 56px 32px; }
  .doctor { grid-template-columns: 200px 1fr; }
  .gallery figure { flex-basis: calc((100% - 16px) / 2); }
  .testimonial { flex-basis: calc((min(100vw, var(--maxw)) - 2 * var(--gutter) - 20px) / 2); }

  /* procedimientos */
  .proc-gallery-wrap { margin-bottom: 64px; }
  .proc-gallery figure { flex-basis: calc((100% - 16px) / 2); }
  .proc-standards { margin-bottom: 64px; }
  .proc-standards__head h3 { font-size: 28px; }
  .proc-standards__grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .proc-categories { gap: 40px; margin-bottom: 64px; }
  .proc-categories__title { font-size: 26px; }
}

/* mobile */
@media (max-width: 760px) {
  :root { --gutter: 20px; --pad: 48px; --radius-lg: 22px; --radius-md: 18px; --radius-sm: 12px; }

  /* promo bar */
  .promo-bar__inner { padding: 10px 20px; flex-direction: column; gap: 8px; align-items: flex-start; font-size: 12px; }
  .promo-bar__right { gap: 14px; }

  /* nav: hamburger menu */
  .nav__inner { padding: 14px 18px; flex-wrap: nowrap; gap: 10px; }
  .nav__cta .nav__phone { display: none; }
  .logo { gap: 10px; min-width: 0; }
  .logo__mark { width: 44px; height: 44px; }
  .logo__sep { height: 26px; }
  .logo__text { gap: 3px; }
  .logo__name { font-size: 18px; letter-spacing: 0.06em; }
  .logo__sub { font-size: 12px; letter-spacing: 0.18em; }

  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    order: 3;
  }
  .nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--card);
    padding: 12px;
    border-radius: 0;
    border-bottom: 1px solid var(--ink-10);
    gap: 2px;
    display: none;
  }
  .nav__toggle-input:checked ~ .nav__menu { display: flex; }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav__menu a { padding: 14px 16px; min-height: 48px; display: flex; align-items: center; }
  .nav__cta .btn--dark { padding: 10px 16px; font-size: 13px; }

  /* hero — fluid type, dominant primary CTA, tighter rhythm */
  .hero { padding: 24px var(--gutter) 36px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__left { padding: 28px 22px; border-radius: var(--radius-lg); }
  .status-pill { margin-bottom: 22px; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__title { font-size: clamp(40px, 11vw, 56px); line-height: 1.02; margin-bottom: 18px; }
  .hero__lead { font-size: 15px; line-height: 1.6; max-width: 100%; margin-bottom: 24px; }
  .hero__actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero__actions .btn--primary { padding: 16px 24px; font-size: 16px; box-shadow: 0 14px 32px rgba(23, 147, 145, 0.28); }
  .hero__actions .btn--ghost { padding: 13px 22px; font-size: 14px; background: transparent; border-color: var(--ink-10); font-weight: 500; }
  .hero__stats { grid-template-columns: repeat(2, auto); justify-content: center; gap: 12px 24px; margin-top: 32px; padding-top: 24px; }
  .hero__stats > div { padding-right: 0; border-right: 0; }
  .hero__stat-n { font-size: 22px; }
  .hero__stat-l { font-size: 11px; }

  /* hero right: shorter image, restrained floating cards */
  .hero__right { min-height: 320px; }
  .hero__photo { border-radius: var(--radius-lg); }
  .hero-card--calendar { right: 10px; top: -16px; min-width: 0; padding: 8px 12px; gap: 8px; border-radius: 14px; }
  .hero-card__icon { width: 30px; height: 30px; border-radius: 9px; }
  .hero-card__icon svg { width: 16px; height: 16px; }
  .hero-card--calendar .hero-card__hint { font-size: 10px; margin-bottom: 1px; }
  .hero-card--calendar .hero-card__value { font-size: 12.5px; }
  .hero-card--rating { left: 8px; bottom: -18px; min-width: 200px; padding: 14px; }
  .hero-card--rating .stars { margin-bottom: 6px; }
  .hero-card--rating .stars strong { font-size: 12px; }
  .hero-card__quote { font-size: 12px; line-height: 1.4; margin-bottom: 4px; }
  .hero-card--badge { left: 8px; padding: 10px 14px; }
  .hero-card__big { font-size: 16px; }

  /* sections — fluid titles, tighter heads */
  .section__title { font-size: clamp(26px, 7vw, 32px); line-height: 1.1; }
  .section__lead { font-size: 15px; }
  .section__head { margin-bottom: 32px; }
  .section__head--center { margin-bottom: 36px; }
  .section__head--row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section__head--row .gallery__nav { align-self: flex-end; }

  /* doctors */
  .doctors { grid-template-columns: 1fr; gap: 16px; }
  .doctor { grid-template-columns: 1fr; border-radius: 20px; }
  .doctor__photo { height: 240px; }
  .doctor__body { padding: 22px; }
  .doctor__name { font-size: 22px; }
  .doctor__bio { font-size: 13.5px; line-height: 1.6; }
  .doctor__feats { gap: 10px; margin-top: 18px; padding-top: 16px; }

  /* services — compact list-style cards */
  .services { grid-template-columns: 1fr; gap: 10px; }
  .service {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .service:hover { transform: none; }
  .service__icon {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 12px;
    grid-row: span 3;
    align-self: start;
  }
  .service__icon svg { width: 22px; height: 22px; }
  .service h3 {
    font-size: 15px;
    margin: 0 0 4px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .service:has(.service__tag) h3 { padding-right: 92px; }
  .service p {
    font-size: 12.5px;
    line-height: 1.45;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service .link-arrow {
    font-size: 12px;
    font-weight: 500;
  }
  .service__tag {
    top: 14px;
    right: 14px;
    font-size: 9px;
    padding: 3px 8px;
    letter-spacing: 0.04em;
  }

  /* pricing — compact mobile cards: tier + amount inline, tighter rhythm */
  .pricing { grid-template-columns: 1fr; gap: 12px; }
  .price {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 14px;
    align-items: baseline;
    padding: 18px 20px;
    border-radius: 18px;
  }
  .price > .price__sub,
  .price > ul,
  .price > a { grid-column: 1 / -1; }
  .price__ribbon { top: -10px; left: 18px; padding: 4px 10px; font-size: 10px; }
  .price__tier {
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .price__amount {
    font-size: 28px;
    margin: 0;
    line-height: 1;
    text-align: right;
  }
  .price__sub {
    min-height: auto;
    margin: 8px 0 12px;
    font-size: 13.5px;
    line-height: 1.4;
  }
  .price ul { gap: 6px; margin: 0 0 14px; }
  .price ul li { font-size: 13px; line-height: 1.35; gap: 8px; }
  .price ul li svg { width: 12px; height: 12px; }
  .btn--gold-block, .btn--teal-block { padding: 12px 18px; font-size: 14px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* pricing more */
  .pricing__more { margin-top: 32px; }
  .pricing__more p { font-size: 13px; margin-bottom: 16px; }
  .pricing__more p strong { font-size: 14px; margin-bottom: 4px; }

  /* testimonials */
  .testimonial { flex-basis: calc(100vw - 2 * var(--gutter)); padding: 22px; border-radius: 20px; }
  .testimonial > p { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }

  /* differentiators */
  .differentiators { grid-template-columns: 1fr; padding: 28px; gap: 24px; border-radius: 22px; }
  .differentiators__head h2 { font-size: clamp(26px, 7vw, 32px); line-height: 1.1; }
  .differentiators__grid { grid-template-columns: 1fr; gap: 16px; }

  /* procedimientos */
  .proc-gallery-wrap { margin-bottom: 40px; }
  .proc-gallery { gap: 12px; }
  .proc-gallery figure { flex-basis: calc(100% - 40px); height: 200px; border-radius: 16px; }
  .proc-gallery__nav { margin-bottom: 14px; }
  .proc-standards { margin-bottom: 40px; }
  .proc-standards__head { margin-bottom: 28px; }
  .proc-standards__head h3 { font-size: clamp(22px, 6vw, 26px); line-height: 1.15; }
  .proc-standards__head > p { font-size: 13.5px; }
  .proc-standards__grid { grid-template-columns: 1fr; gap: 20px; }
  .proc-std {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
  }
  .proc-std__icon { width: 40px; height: 40px; border-radius: 12px; grid-row: 1 / span 2; }
  .proc-std__icon svg { width: 18px; height: 18px; }
  .proc-std h4 { font-size: 15.5px; }
  .proc-std p { font-size: 13px; }
  .proc-categories {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
  }
  .proc-categories__title { font-size: clamp(22px, 6vw, 26px); line-height: 1.15; }
  .proc-categories__cta-q { font-size: 15.5px; }
  .proc-categories__cta-a { font-size: 13.5px; margin-bottom: 16px; }
  .proc-categories__list { gap: 10px; }
  .proc-cat { border-radius: 16px; }
  .proc-cat summary { padding: 18px 20px; font-size: 15px; }
  .proc-cat[open] summary { padding-bottom: 14px; }
  .proc-cat ul { padding: 14px 20px 18px; gap: 8px; }
  .proc-cat li { font-size: 13px; }
  .proc-badge { font-size: 9.5px; padding: 2px 7px; }

  /* gallery */
  .gallery { gap: 12px; }
  .gallery figure { flex-basis: calc(100% - 40px); height: 200px; border-radius: 16px; }
  .gallery__btn { width: 40px; height: 40px; }

  /* faq */
  .faq { grid-template-columns: 1fr; gap: 24px; }
  .faq__intro h2 { font-size: clamp(26px, 7vw, 32px); margin-bottom: 14px; }
  .faq__intro p.section__lead { margin-bottom: 24px; }
  .faq__list details { padding: 16px 18px; }
  .faq__list summary { font-size: 15px; min-height: 28px; }
  .faq__list details > p { font-size: 13.5px; line-height: 1.65; margin-top: 12px; }

  /* contact */
  .contact { grid-template-columns: 1fr; gap: 16px; }
  .contact__info { padding: 28px 22px; border-radius: 20px; }
  .contact__info .section__title { font-size: 26px; margin-bottom: 24px; }
  .contact__list li { padding: 12px 0; }
  .contact__map { min-height: 280px; border-radius: 20px; }
  .contact__map img { min-height: 280px; }

  /* final cta */
  .final-cta { padding: 40px 24px; border-radius: 22px; }
  .final-cta h2 { font-size: clamp(28px, 8vw, 36px); line-height: 1.1; }
  .final-cta__lead { font-size: 15px; line-height: 1.6; max-width: 100%; }
  .final-cta__actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { width: 100%; justify-content: center; min-height: 48px; padding: 16px 24px; font-size: 15px; }
  .final-cta__actions .btn--outline-light { font-weight: 500; }

  /* footer — compact mobile layout */
  .footer { padding: 32px 20px 16px; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
    margin-bottom: 18px;
  }
  .footer__grid > div:first-child,
  .footer__grid > div:last-child { grid-column: 1 / -1; }
  /* hide Navegar on mobile — Contacto reflows to full width */
  .footer__grid > div:nth-child(2) { display: none; }
  .footer__grid > div:nth-child(3) { grid-column: 1 / -1; }

  .logo--footer .logo__mark { width: 44px; height: 44px; }
  .logo--footer .logo__sep { height: 26px; }
  .logo--footer .logo__name { font-size: 16px; }
  .logo--footer .logo__sub { font-size: 11px; }
  .footer__grid > div:first-child p { margin: 10px 0 0; max-width: 100%; font-size: 13px; line-height: 1.5; }
  .footer__social { margin-top: 10px; }
  .footer__social a { flex-direction: row; gap: 8px; align-items: center; }
  .footer__social .social-tile { width: 32px; height: 32px; border-radius: 10px; }
  .footer__social .social-tile svg { width: 16px; height: 16px; }

  .footer h5 { margin-bottom: 10px; font-size: 11px; }
  .footer ul li,
  .footer ul li a { margin-bottom: 6px; font-size: 12.5px; line-height: 1.45; }
  .footer__address { line-height: 1.45; }
  .footer__address svg { margin-top: 2px; }

  /* "Cómo llegar" slightly smaller en móvil */
  .footer__directions { font-size: 12.5px; }
  .footer__directions-address { font-size: 12.5px; }

  /* HORARIO — single inline line + inline status */
  .footer__grid > div:last-child { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
  .footer__grid > div:last-child h5 { margin: 0; }
  .footer__grid > div:last-child ul { margin: 0; display: inline; }
  .footer__grid > div:last-child ul li { display: inline; margin: 0; }
  .footer__grid > div:last-child ul li:not(:last-child)::after { content: " · "; color: var(--muted); }

  .footer__bottom { padding-top: 14px; font-size: 11px; }

  /* floating WhatsApp */
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35); }
  .wa-float svg { width: 28px; height: 28px; }

  /* mobile-only line breaks dentro de títulos */
  .brk-mobile { display: inline; }
  .brk-desktop { display: none; }

  /* contacto: teléfono y email lado a lado si caben, si no se apilan */
  .contact__list { flex-direction: row; flex-wrap: wrap; column-gap: 12px; }
  .contact__list li { flex: 1 1 100%; }
  .contact__list li:nth-child(3),
  .contact__list li:nth-child(4) { flex: 1 1 220px; min-width: 0; }
  .contact__list li:nth-child(3) a,
  .contact__list li:nth-child(4) a { word-break: break-word; }

}

@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(36px, 12vw, 48px); }
  .hero__eyebrow span:last-child { font-size: 16px; }

  .nav__inner { padding: 12px 16px; gap: 8px; }
  .logo { gap: 8px; }
  .logo__mark { width: 40px; height: 40px; }
  .logo__sep { height: 22px; }
  .logo__name { font-size: 16px; }
  .logo__sub { font-size: 11px; letter-spacing: 0.16em; }
  .nav__cta .btn--dark { padding: 8px 12px; font-size: 12px; }

  /* tighter hero on small phones */
  .hero { padding: 20px var(--gutter) 32px; }
  .hero__left { padding: 24px 18px; }
  .hero__right { min-height: 280px; }
  .hero__stat-n { font-size: 20px; }
  .hero__stat-l { font-size: 10.5px; }
  .hero__stats > div { padding-right: 10px; }

  /* tighter cards */
  .price { padding: 16px 18px; }
  .price__amount { font-size: 26px; }
  .price__tier { font-size: 11.5px; }
  .price__sub { font-size: 13px; margin: 6px 0 10px; }
  .service { padding: 12px 14px; }
  .service:has(.service__tag) h3 { padding-right: 84px; }
  .doctor__body { padding: 20px; }
  .doctor__photo { height: 220px; }
  .testimonial { padding: 20px; }
  .differentiators { padding: 24px; }
  .contact__info { padding: 24px 20px; }
  .final-cta { padding: 36px 22px; }

  /* sections — slightly tighter */
  :root { --pad: 40px; }
}
