/* ============================================================
   Dra. Clara Valdez — Lujo silencioso
   Paleta: blanco cálido / negro profundo / dorado
   ============================================================ */

:root {
  /* Paleta de marca: Ivory, Dun, Lion, Kobicha, Bistre */
  --cream: #FDFCE8;
  --cream-deep: #E2CEB1;
  --ink: #391E10;
  --ink-soft: #734128;
  --gold: #C7A07A;
  --gold-light: #D9BC9C;
  --gold-pale: #F0E6D3;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

/* Grano de película sutil — look editorial */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container { width: min(1140px, 92%); margin-inline: auto; }

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--cream { background: var(--cream-deep); }

/* ---------- Preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader__logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  opacity: 0;
  animation: loaderIn 1.1s var(--ease) 0.1s forwards;
}
.loader__logo .logo__name { font-size: 1.6rem; }
.loader__logo .logo__script { font-size: 2.2rem; }
@keyframes loaderIn {
  from { opacity: 0; transform: translateY(14px); letter-spacing: 0.05em; }
  to   { opacity: 1; transform: none; }
}
body.is-loaded .loader { opacity: 0; visibility: hidden; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.eyebrow--gold { color: var(--gold-light); }

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1.6rem;
}
.section__title em { font-style: italic; color: var(--gold); }

/* Línea dorada que se dibuja bajo el título al aparecer */
.section__title::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 1.4s var(--ease) 0.3s;
}
.section__title.is-visible::after { width: 120px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(199, 160, 122, 0.35);
}
.btn--gold:hover { box-shadow: 0 12px 36px rgba(199, 160, 122, 0.5); }

/* Brillo que recorre el botón */
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.6s var(--ease) infinite;
}
@keyframes btnShine {
  0%, 60% { left: -80%; }
  100% { left: 160%; }
}

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--white); }

.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.72rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: 0.85rem; }
.btn--xl { padding: 1.2rem 3rem; font-size: 0.9rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header.is-scrolled {
  background: rgba(253, 252, 232, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(57, 30, 16, 0.06);
}
.header__inner {
  width: min(1240px, 94%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.header__logo { display: inline-flex; align-items: baseline; flex-wrap: wrap; column-gap: 0.35rem; }

.logo__name {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 1.02rem;
  color: var(--ink);
}
.logo__script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1;
}
.logo__sub {
  flex-basis: 100%;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--gold-pale) 0%, transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero__inner {
  width: min(1140px, 92%);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.9rem, 8vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  max-width: 34rem;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero__note { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.hero__caption {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1rem;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(199, 160, 122, 0.25);
  background: var(--cream);
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--ink);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Video frames ---------- */
.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 9 / 16;
  box-shadow: 0 24px 60px rgba(57, 30, 16, 0.18);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }

.video-frame--hero {
  max-width: 340px;
  margin-inline: auto;
  border-radius: 170px 170px var(--radius) var(--radius);
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* Aro dorado fino alrededor del video hero */
.video-frame--hero {
  outline: 1px solid rgba(199, 160, 122, 0.4);
  outline-offset: 12px;
}
.video-frame--inline { max-width: 300px; margin-top: 2rem; }
.video-frame--wide { max-width: 340px; margin-inline: auto; }

.video-frame__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(57,30,16,0.75));
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(57, 30, 16, 0.18);
  border: none;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}
.video-play:hover { background: rgba(57, 30, 16, 0.32); }
.video-play__circle {
  display: grid;
  place-items: center;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(253, 252, 232, 0.92);
  color: var(--gold);
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s var(--ease);
}
.video-play:hover .video-play__circle { transform: scale(1.08); }
.video-frame.is-playing .video-play { opacity: 0; pointer-events: none; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
.about__photo img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(57, 30, 16, 0.14);
}
.about__content p { color: var(--ink-soft); max-width: 36rem; }
.about__creds {
  list-style: none;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.about__creds li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.about__creds li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 20px; height: 1px;
  background: var(--gold);
}

/* ---------- Trust ---------- */
.trust .section__title { color: var(--cream); }
.trust__grid {
  display: grid;
  gap: 1.2rem;
  margin: 3rem 0;
}
.trust__card {
  border: 1px solid rgba(217, 188, 156, 0.22);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.trust__card:hover { border-color: var(--gold); transform: translateY(-4px); }
.trust__num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
}
.trust__card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0.6rem 0 0.5rem;
}
.trust__card p { font-size: 0.95rem; color: rgba(253, 252, 232, 0.72); }
.trust__media { margin-top: 3.5rem; }
.trust__media .hero__caption { color: rgba(253, 252, 232, 0.6); }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  gap: 2.6rem;
  margin-top: 3rem;
}
.service h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 1.2rem 0 0.4rem;
}
.service p { font-size: 0.95rem; color: var(--ink-soft); }
.service .video-frame { box-shadow: 0 16px 44px rgba(57, 30, 16, 0.14); }
.service__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: 0 16px 44px rgba(57, 30, 16, 0.14);
}
.service__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery__grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__grid figure:hover img { transform: scale(1.04); }

/* ---------- Feature quote ---------- */
.feature__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.feature__photo img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.feature__quote p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.25;
}
.feature__quote em { font-style: italic; color: var(--gold-light); }
.feature__quote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 252, 232, 0.6);
}

/* ---------- Antes y después ---------- */
.bna__grid {
  display: grid;
  gap: 2.6rem;
  margin-top: 3rem;
}
.bna__card { margin: 0; }
.bna__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(57, 30, 16, 0.16);
}
.bna__img img {
  width: 100%;
  transition: transform 0.8s var(--ease);
}
.bna__card:hover .bna__img img { transform: scale(1.03); }

.bna__quote { margin-top: 1.4rem; padding-left: 1.2rem; position: relative; }
.bna__quote::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3rem; bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(199, 160, 122, 0.15));
}
.bna__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink);
}
.bna__quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Tu camino ---------- */
.path__steps {
  list-style: none;
  display: grid;
  gap: 2.6rem;
  margin-top: 3.4rem;
}
.path__step { position: relative; padding-left: 4.6rem; }

/* Línea vertical que conecta los pasos (móvil) */
.path__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 64px;
  bottom: -2.6rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(199,160,122,0.5), rgba(199,160,122,0.1));
}

.path__badge {
  position: absolute;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: 55px; height: 55px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(199, 160, 122, 0.45);
  background:
    radial-gradient(circle at 30% 25%, rgba(217,188,156,0.22), transparent 70%),
    var(--white);
  box-shadow: 0 8px 22px rgba(199, 160, 122, 0.18);
}

.path__step h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0.15rem 0 0.4rem;
}
.path__step h3 i {
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.path__step p { font-size: 0.94rem; color: var(--ink-soft); max-width: 30rem; }

/* ---------- Casos en video ---------- */
.cases__intro {
  max-width: 40rem;
  color: var(--gold-light);
  margin-bottom: 3rem;
}
.cases__grid {
  display: grid;
  gap: 3rem;
}
.cases__item { margin: 0; }
.cases__item .video-frame { max-width: 320px; margin-inline: auto; }
.cases__item figcaption { margin-top: 1.6rem; text-align: center; }
.cases__item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.cases__item figcaption p {
  font-size: 0.94rem;
  color: var(--gold-light);
  max-width: 26rem;
  margin-inline: auto;
}
.cases__meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Preguntas frecuentes ---------- */
.faq__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}
.faq__item {
  border-bottom: 1px solid rgba(57, 30, 16, 0.16);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 2.4rem 1.3rem 0;
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ink-soft); }
/* Signo + que rota a × al abrir */
.faq__item summary::after,
.faq__item summary::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 15px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.4s var(--ease);
}
.faq__item summary::before { transform: translateY(-50%); }
.faq__item summary::after  { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(0deg); }
.faq__answer {
  padding: 0 2.4rem 1.5rem 0;
  animation: faqIn 0.5s var(--ease);
}
.faq__answer p { font-size: 0.98rem; color: var(--ink-soft); }
.faq__answer strong { color: var(--ink); font-weight: 400; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq__more {
  margin-top: 2rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.faq__more a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.3s;
}
.faq__more a:hover { color: var(--gold); }
.faq__media .video-frame { max-width: 340px; margin-inline: auto; }
.video-frame--square { aspect-ratio: 1 / 1; }

/* ---------- Nueva clínica ---------- */
.clinic__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.clinic__content p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.clinic__content strong { color: var(--ink); font-weight: 400; }
.clinic__cta { margin-top: 1.2rem; }
.clinic__media .video-frame { max-width: 320px; margin-inline: auto; }

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(900px 400px at 50% 120%, var(--gold-pale) 0%, transparent 65%),
    var(--cream);
}
.cta__inner { text-align: center; }
.cta__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2.4rem;
}
.cta__title em { font-style: italic; color: var(--gold); }
.cta__note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Agenda en línea (widget Huli) ---------- */
.booking__sub {
  max-width: 34rem;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
}
.booking__widget {
  background: var(--white);
  border: 1px solid rgba(199, 160, 122, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(57, 30, 16, 0.12);
  padding: clamp(0.8rem, 2.5vw, 2rem);
  min-height: 420px;
  overflow: hidden;
}
.booking__widget .huli-cw,
.booking__widget iframe {
  width: 100% !important;
  border: 0;
}

/* ---------- Insignia de reseñas ---------- */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(199, 160, 122, 0.45);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(57, 30, 16, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(57, 30, 16, 0.14);
}
.review-badge__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
}
.review-badge__text {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.review-badge__text strong { color: var(--ink); font-weight: 500; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem 1.6rem;
}
.contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contact__value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.35;
}
a.contact__value { border-bottom: 1px solid transparent; transition: border-color 0.3s; }
a.contact__value:hover { border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(253, 252, 232, 0.55);
  padding: 3rem 0;
}
.footer__inner { text-align: center; display: grid; gap: 0.8rem; }
.footer__logo .logo__name { color: var(--cream); }
.footer__copy { font-size: 0.78rem; letter-spacing: 0.1em; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.4s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .video-frame--hero { animation: none; }
  .marquee__track { animation: none; }
  .btn--gold::after { animation: none; }
}

/* ============ Desktop ============ */
@media (min-width: 760px) {
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
  .bna__grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 2rem; align-items: start; }
  /* Desktop: pasos en fila, línea horizontal entre badges */
  .path__steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .path__step { padding-left: 0; padding-top: 4.4rem; }
  .path__badge { top: 0; left: 0; }
  .path__step:not(:last-child)::after {
    left: 70px;
    right: -2rem;
    top: 27px;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(199,160,122,0.5), rgba(199,160,122,0.1));
  }
  .about__grid { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .feature__inner { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; }
  .contact__grid { grid-template-columns: repeat(4, 1fr); }
  .cases__grid { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; align-items: start; }
  .faq__grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
  .clinic__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
}
