/* MZ Studio — home · v2 "boutique" · sistema do DESIGN.md */

@font-face {
  font-family: 'Alta';
  src: url('/assets/alta-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --green-950: #1F2B24;
  --green-800: #33453A;
  --green-700: #44584B;
  --green-500: #808C80;
  --green-100: #EAEFEA;
  --ink: #24282A;
  --ink-soft: #4A5052;
  --bg: #FCFCFC;
  --gold-600: #8F6E2A;
  --gold-400: #C4A15A;
  --hairline: rgb(196 161 90 / 0.4);      /* fio dourado */
  --hairline-dark: rgb(196 161 90 / 0.28);

  --font-display: 'Alta', 'Source Sans 3', sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --space-s: clamp(1rem, 2vw, 1.5rem);
  --space-m: clamp(2.2rem, 4.5vw, 4rem);
  --space-l: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;
  --radius-img: 6px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.1rem, 4.5vw, 3.5rem);
}

* { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[id] { scroll-margin-top: 5.5rem; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); }
address { font-style: normal; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Títulos de seção (voz Alta) ────────── */
.hero h1, .metodo h2, .especialidades h2, .opiniones h2, .reserva h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}
.metodo h2, .especialidades h2, .opiniones h2, .reserva h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--green-800);
}
/* fio dourado pendente sob os títulos de seção */
.metodo h2::after, .especialidades h2::after, .opiniones h2::after, .reserva h2::after {
  content: '';
  display: block;
  width: 4.5rem;
  height: 1px;
  background: var(--gold-400);
  margin-top: 1.1rem;
}

/* ── Botões ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 1em 1.9em;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background-color 220ms;
}
.btn svg { width: 1.45em; height: 1.45em; flex: none; }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 8px 22px rgb(31 43 36 / 0.24); }
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 1.15em 2.2em; }
.btn-ghost { background: transparent; color: var(--green-800); border: 1px solid var(--hairline); padding: 1em 1.1em; }
.btn-ghost:hover { background: var(--green-100); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }

/* ── Header ─────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: var(--space-s);
  padding: 0.85rem var(--gutter);
  background: rgb(252 252 252 / 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--ink); }
.brand img, .footer-brand img { border-radius: 50%; }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.09em; line-height: 1.15; display: grid; text-transform: uppercase; }
.brand-sub { font-family: var(--font-body); font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.site-nav { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); margin-inline: auto; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid transparent; padding-block: 0.3em;
  transition: border-color 200ms, color 200ms;
}
.site-nav a:hover { border-bottom-color: var(--gold-400); color: var(--green-800); }

/* ── Submenu de especialidades (CSS puro, sem JS) ───── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 0.4em; }
.nav-dropdown-trigger::after {
  content: '';
  width: 0.4em; height: 0.4em;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-15%);
  transition: transform 200ms var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after { transform: rotate(225deg) translateY(15%); }
.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 4px);
  min-width: 15rem;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-img);
  box-shadow: 0 14px 34px rgb(31 43 36 / 0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 8px); }
.nav-dropdown-menu a {
  display: block;
  padding: 0.65em 0.9em;
  border-radius: calc(var(--radius-img) - 2px);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  border-bottom: none;
}
.nav-dropdown-menu a:hover { background: var(--green-100); color: var(--green-800); }
.nav-dropdown-menu a[aria-current="page"] { color: var(--gold-600); }
@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-trigger::after, .nav-dropdown-menu { transition: none; }
}

.header-actions { display: flex; align-items: center; gap: 1.2rem; }
.tel-link { display: inline-flex; align-items: center; gap: 0.5em; color: var(--green-800); font-weight: 700; text-decoration: none; font-variant-numeric: tabular-nums; }
.tel-link svg { width: 1.1em; height: 1.1em; }
.tel-link:hover { color: var(--green-700); }

/* ── Hero (Pessoa) ──────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter) var(--space-l);
}
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: flex; align-items: center; gap: 1rem;
}
.kicker::before { content: ''; width: 3rem; height: 1px; background: var(--gold-400); flex: none; }
.hero h1 {
  margin-top: 1.6rem;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: 0.045em;
  color: var(--ink);
}
.hero h1 em { font-style: normal; color: var(--green-700); }
.hero-lead { margin-top: 1.7rem; font-size: 1.18rem; max-width: 33em; }
.proof-row { margin-top: 1.7rem; }
.proof-row a { display: inline-flex; align-items: center; gap: 0.55em; color: var(--ink); text-decoration: none; font-size: 1.02rem; }
.proof-row a:hover strong { text-decoration: underline; }
.stars { color: var(--gold-600); letter-spacing: 0.12em; }
.hero-ctas { margin-top: 2.1rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.6rem; }
.cta-alt { color: var(--ink-soft); }
.cta-alt a { color: var(--green-800); font-weight: 700; text-decoration: none; }
.cta-alt a:hover { text-decoration: underline; }

.hero-photo { position: relative; }
.hero-photo img {
  border-radius: var(--radius-img);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
/* moldura-joia: fio dourado deslocado */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-img);
  pointer-events: none;
}

/* ── Método ─────────────────────────────── */
.metodo { background: var(--green-100); padding: var(--space-l) var(--gutter); }
.metodo-inner {
  max-width: 1280px; margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.metodo-photo { position: relative; }
.metodo-photo img {
  border-radius: var(--radius-img);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.metodo-photo::after {
  content: '';
  position: absolute;
  inset: -1.1rem 1.1rem 1.1rem -1.1rem;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-img);
  pointer-events: none;
}
.metodo-lead { margin-top: 1.3rem; font-size: 1.16rem; max-width: 34em; }
.pasos {
  margin-top: var(--space-m);
  padding: 0;
  list-style: none;
  counter-reset: paso;
}
.pasos li {
  counter-increment: paso;
  position: relative;
  padding: 1.8rem 0 1.8rem 5.2rem;
  border-top: 1px solid var(--hairline);
}
.pasos li:last-child { border-bottom: 1px solid var(--hairline); }
.pasos li::before {
  content: counter(paso, decimal-leading-zero);
  position: absolute; top: 1.55rem; left: 0;
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--green-500);
  letter-spacing: 0.04em;
}
.pasos h3 { font-size: 1.22rem; font-weight: 700; color: var(--green-950); }
.pasos p { margin-top: 0.45rem; }

/* ── Especialidades (Mi caso) ───────────── */
.especialidades { max-width: 1280px; margin-inline: auto; padding: var(--space-l) var(--gutter); }
.esp-grid {
  margin-top: var(--space-m);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.esp-destacada {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-img);
  overflow: hidden;
  text-decoration: none;
  background: var(--green-950);
}
.esp-destacada img { aspect-ratio: 4 / 4.4; object-fit: cover; object-position: center 30%; width: 100%; flex: 1 1 auto; transition: transform 700ms var(--ease-out); }
.esp-destacada:hover img { transform: scale(1.035); }
.esp-destacada-body { flex: 0 0 auto; padding: clamp(1.5rem, 3vw, 2.3rem); color: #fff; }
.esp-destacada h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.esp-destacada p { margin-top: 0.7rem; max-width: 34em; color: rgb(255 255 255 / 0.94); }
.esp-cta {
  display: inline-block; margin-top: 1.1rem;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold-400);
}
.esp-destacada:hover .esp-cta, .esp-item:hover .esp-cta { text-decoration: underline; text-underline-offset: 4px; }
.esp-secundarias { display: grid; grid-auto-rows: 1fr; gap: clamp(1.6rem, 3vw, 2.6rem); }
.esp-item {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-img);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 250ms, box-shadow 250ms;
}
.esp-item:hover { border-color: var(--gold-400); box-shadow: 0 10px 30px rgb(31 43 36 / 0.09); }
.esp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.esp-item:hover img { transform: scale(1.04); }
.esp-item-body { padding: clamp(1.3rem, 2.4vw, 1.9rem); align-self: center; }
.esp-item h3 { font-size: 1.24rem; font-weight: 700; color: var(--green-800); }
.esp-item p { margin-top: 0.5rem; color: var(--ink-soft); }
.esp-item .esp-cta { color: var(--gold-600); }

.especialidades-cta {
  margin-top: var(--space-m);
  text-align: center;
  font-size: 1.05rem;
}
.especialidades-cta a {
  font-weight: 700;
  color: var(--green-800);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-400);
  padding-bottom: 0.15em;
}
.especialidades-cta a:hover { color: var(--green-700); }

/* ── Opiniones ──────────────────────────── */
.opiniones {
  background: radial-gradient(120% 90% at 50% 0%, #263329 0%, var(--green-950) 65%);
  color: #fff;
  padding: var(--space-l) var(--gutter);
}
.opiniones-inner { max-width: 1280px; margin-inline: auto; position: relative; }
.opiniones-inner::before {
  content: '«';
  position: absolute;
  top: -0.35em; right: 0;
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 1;
  color: rgb(196 161 90 / 0.18);
  pointer-events: none;
}
.opiniones h2 { color: #fff; }
.quotes {
  margin-top: var(--space-m);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.8rem, 4vw, 3.5rem);
}
.quotes blockquote p { font-size: 1.1rem; line-height: 1.75; color: rgb(255 255 255 / 0.96); }
.quotes cite {
  display: block; margin-top: 1.3rem; padding-top: 1rem;
  border-top: 1px solid var(--hairline-dark);
  font-style: normal; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-400);
}
.link-light {
  display: inline-block; margin-top: var(--space-m);
  color: #fff; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.13em; text-transform: uppercase;
}

/* ── Reserva (Fácil) ────────────────────── */
.reserva {
  max-width: 1280px; margin-inline: auto;
  padding: var(--space-l) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.reserva-lead { margin-top: 1.3rem; font-size: 1.16rem; max-width: 32em; }
.precios-tabla { margin-top: var(--space-s); border-collapse: collapse; width: 100%; max-width: 34rem; }
.precios-tabla th, .precios-tabla td { padding: 1em 0; border-bottom: 1px solid var(--hairline); text-align: left; }
.precios-tabla th { font-weight: 600; }
.precios-tabla td { text-align: right; font-weight: 700; color: var(--green-800); white-space: nowrap; font-variant-numeric: tabular-nums; }
.precios-tabla td span { font-weight: 400; color: var(--ink-soft); }
.precios-nota { margin-top: 0.9rem; font-size: 0.92rem; color: var(--ink-soft); }
.reserva .hero-ctas { margin-top: 2.2rem; }

.reserva-photo { position: relative; }
.reserva-photo img { border-radius: var(--radius-img); aspect-ratio: 4 / 5; object-fit: cover; }
.reserva-photo figcaption {
  position: relative;
  margin: -3.4rem 1.3rem 0;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-img);
  padding: 1.3rem 1.5rem;
  box-shadow: 0 14px 36px rgb(31 43 36 / 0.14);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center; justify-content: space-between;
}
.reserva-photo figcaption a { font-weight: 700; white-space: nowrap; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-600); }

/* ── Footer ─────────────────────────────── */
.site-footer {
  background: var(--green-950); color: #fff;
  padding: var(--space-l) var(--gutter) var(--space-s);
}
.footer-grid {
  max-width: 1280px; margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-m);
  align-items: start;
}
.site-footer a { color: #fff; text-decoration-color: var(--hairline-dark); }
.site-footer a:hover { text-decoration-color: var(--gold-400); }
.footer-claim { margin-top: 1.2rem; line-height: 1.6; color: rgb(255 255 255 / 0.92); }
.footer-col h4 {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-400); font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col address { margin-bottom: 0.6rem; color: rgb(255 255 255 / 0.92); }
nav.footer-col { display: block; }
nav.footer-col a { display: block; margin-bottom: 0.55rem; text-decoration: none; }
nav.footer-col a:hover { text-decoration: underline; text-decoration-color: var(--gold-400); }
.footer-legal {
  max-width: 1280px; margin: var(--space-m) auto 0;
  padding-top: var(--space-s);
  border-top: 1px solid var(--hairline-dark);
  font-size: 0.88rem; color: rgb(255 255 255 / 0.7);
}

/* ── CTA fixa móvil ─────────────────────── */
.mobile-cta { display: none; }

/* ── Reveal (padrão visível; .pre só via JS) ─── */
.reveal.pre { opacity: 0; transform: translateY(16px); }
.reveal.pre.in { opacity: 1; transform: none; transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  .reveal.pre { opacity: 1; transform: none; transition: none; }
}

/* ── Scrollytelling sutil (CSS nativo, zero JS) ─────────────
   animation-timeline: view() liga a animação à posição do
   próprio elemento na viewport. Sem pin, sem scrub de seção —
   é reforço decorativo sobre o layout estático. Navegador sem
   suporte simplesmente fica no estado final (regras acima),
   sem @supports não roda nada e a página já está correta. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {

    /* fio dourado sob H2: desenha da esquerda ao entrar na viewport
       (.section-title e .prose h2 são o mesmo padrão nas páginas internas:
       FAQ de fertilidad.html, corpo de post.html) */
    .metodo h2::after, .especialidades h2::after,
    .opiniones h2::after, .reserva h2::after,
    .section-title::after, .prose h2::after {
      transform-origin: left center;
      animation: hairlineDraw linear both;
      animation-timeline: view();
      animation-range: entry 5% entry 55%;
    }
    @keyframes hairlineDraw {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    /* molduras douradas das fotos: fade + scale-in leve
       (.split-photo é fertilidad.html/contacto.html, .team-photo é equipo.html —
       mesma técnica do hero/método/reserva, sem overflow:hidden no pai) */
    .metodo-photo::after, .reserva-photo::after, .hero-photo::after,
    .split-photo::after, .team-photo::after {
      animation: frameIn linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 45%;
    }
    @keyframes frameIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    /* foto do hero: parallax mínimo ao rolar para fora */
    .hero-photo img {
      animation: heroParallax linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
    @keyframes heroParallax {
      from { transform: translateY(-2.5%) scale(1.04); }
      to   { transform: translateY(2.5%) scale(1.04); }
    }

    /* aspas gigantes da seção opiniões: escala sutil ao entrar */
    .opiniones-inner::before {
      animation: quoteIn linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 60%;
    }
    @keyframes quoteIn {
      from { opacity: 0; transform: scale(0.85); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* card de fertilidade: fade só em opacity (não mexe em transform,
       que o hover da imagem já usa) — fecha a consistência com o
       resto das seções sem tocar na estrutura do overflow:hidden */
    .esp-destacada {
      animation: cardFadeIn linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
    @keyframes cardFadeIn {
      from { opacity: 0.35; }
      to   { opacity: 1; }
    }

    /* faixa final de conversão (páginas internas): fecha a página com o
       mesmo gesto do quoteIn da home — não tem .reveal hoje (é sempre
       visível de cara), então isto é a única camada de entrada dela */
    .cta-band-inner {
      animation: ctaBandIn linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 55%;
    }
    @keyframes ctaBandIn {
      from { opacity: 0; transform: scale(0.97); }
      to   { opacity: 1; transform: scale(1); }
    }
  }
}

/* ── Responsivo ─────────────────────────── */
@media (max-width: 1060px) {
  .esp-item { grid-template-columns: 1fr; }
  .esp-item img { aspect-ratio: 16 / 8; }
}
@media (max-width: 960px) {
  .site-nav { display: none; }
  .tel-link { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: var(--space-m); }
  .hero-photo { order: -1; max-width: 32rem; }
  .hero-photo img { aspect-ratio: 4 / 4.2; }
  .hero-photo::after { inset: 0.9rem -0.7rem -0.9rem 0.9rem; }
  .metodo-inner { grid-template-columns: 1fr; }
  .metodo-photo { max-width: 26rem; }
  .esp-grid { grid-template-columns: 1fr; }
  .reserva { grid-template-columns: 1fr; }
  .reserva-photo { max-width: 32rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  body { padding-bottom: 4.8rem; }
  .mobile-cta {
    display: flex; gap: 0.6rem;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
    padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
    background: rgb(252 252 252 / 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--hairline);
  }
  .mobile-cta .btn-primary { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2rem, 8.6vw, 2.4rem); }
  .header-actions .btn { padding: 0.85em 1.2em; }
  .footer-grid { grid-template-columns: 1fr; }
  .opiniones-inner::before { display: none; }
}

/* ═══ Páginas internas ═══════════════════ */

/* faixa de topo */
.page-hero {
  background: radial-gradient(120% 100% at 50% 0%, #263329 0%, var(--green-950) 70%);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
}
.page-hero-inner { max-width: 1280px; margin-inline: auto; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgb(255 255 255 / 0.75); }
.breadcrumb a { color: rgb(255 255 255 / 0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .sep { margin-inline: 0.6em; color: var(--gold-400); }
.page-hero h1 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--gold-400); }
.page-hero .lead { margin-top: 1.3rem; font-size: 1.15rem; max-width: 38em; color: rgb(255 255 255 / 0.94); }
.iva-notice {
  margin-top: 1.2rem;
  display: inline-block;
  padding: 0.6em 1.1em;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: rgb(255 255 255 / 0.94);
}
.page-hero .hero-ctas { margin-top: 1.8rem; }
.page-hero .cta-alt { color: rgb(255 255 255 / 0.85); }
.page-hero .cta-alt a { color: #fff; }

/* prosa editorial */
.prose { max-width: 66ch; }
.prose h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-800);
  margin-top: 2.6em;
}
.prose h2::after { content: ''; display: block; width: 3.5rem; height: 1px; background: var(--gold-400); margin-top: 0.8rem; }
.prose h3 { font-size: 1.18rem; font-weight: 700; color: var(--green-950); margin-top: 1.8em; }
.prose p { margin-top: 1em; }
.prose ul { margin-top: 1em; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.6em; margin-top: 0.55em; }
.prose ul li::before { content: '·'; position: absolute; left: 0.3em; color: var(--gold-600); font-weight: 700; font-size: 1.4em; line-height: 1.1; }
.prose a { color: var(--green-700); font-weight: 600; }

/* seção padrão de página interna */
.page-section { max-width: 1280px; margin-inline: auto; padding: var(--space-l) var(--gutter); }
.page-section + .page-section { padding-top: 0; }
.split { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.split-photo { position: relative; }
.split-photo img { border-radius: var(--radius-img); }
.split-photo::after {
  content: ''; position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-img);
  pointer-events: none;
}
.split-photo figcaption { margin-top: 2rem; font-size: 0.9rem; color: var(--ink-soft); }

/* Testimonio en vídeo */
.testimonio-intro { margin-top: var(--space-s); max-width: 60ch; font-size: 1.08rem; color: var(--ink-soft); }
.video-embed {
  margin-top: var(--space-m);
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-img);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 14px 34px rgb(31 43 36 / 0.1);
}
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* FAQ */
.faq { max-width: 66ch; margin-top: var(--space-m); }
.faq details { border-top: 1px solid var(--hairline); }
.faq details:last-child { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.2rem 2.5rem 1.2rem 0;
  font-weight: 700; color: var(--green-950);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-600);
  transition: transform 250ms var(--ease-out);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.3rem; max-width: 60ch; }

/* listas de preços/bonos */
.tarifa-grupo { margin-top: var(--space-m); }
.tarifa-grupo h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.4rem; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--green-800);
}
.tarifa-grupo > p { margin-top: 0.6rem; max-width: 60ch; color: var(--ink-soft); }
.tarifa-lista { margin-top: 1rem; border-collapse: collapse; width: 100%; }
.tarifa-lista th, .tarifa-lista td { padding: 1.05em 0; border-bottom: 1px solid var(--hairline); text-align: left; vertical-align: top; }
.tarifa-lista th { font-weight: 600; padding-right: 1.5rem; }
.tarifa-lista th small { display: block; font-weight: 400; color: var(--ink-soft); margin-top: 0.2em; }
.tarifa-lista td { text-align: right; font-weight: 700; color: var(--green-800); white-space: nowrap; font-variant-numeric: tabular-nums; }
.tarifa-lista td span { font-weight: 400; color: var(--ink-soft); }

/* equipe */
.team-member {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.team-member + .team-member { margin-top: var(--space-l); }
.team-member.flip .team-photo { order: 2; }
.team-photo { position: relative; }
.team-photo img { border-radius: var(--radius-img); aspect-ratio: 4 / 5; object-fit: cover; }
.team-photo::after {
  content: ''; position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-img);
  pointer-events: none;
}
.team-member.flip .team-photo::after { inset: 1rem 1rem -1rem -1rem; }
.team-role { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); margin-top: 0.5rem; }
.team-member h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--green-950);
}
.team-member .prose { margin-top: 1.2rem; }

/* faixa final de conversão */
.cta-band {
  background: radial-gradient(120% 100% at 50% 100%, #263329 0%, var(--green-950) 70%);
  color: #fff;
  padding: var(--space-l) var(--gutter);
  text-align: center;
}
.cta-band-inner { max-width: 720px; margin-inline: auto; }
.cta-band h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cta-band p { margin-top: 1rem; color: rgb(255 255 255 / 0.92); }
.cta-band .hero-ctas { margin-top: 2rem; justify-content: center; }
.cta-band .cta-alt { color: rgb(255 255 255 / 0.85); }
.cta-band .cta-alt a { color: #fff; }

/* contacto */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.contact-card { border: 1px solid var(--hairline); border-radius: var(--radius-img); padding: clamp(1.6rem, 3vw, 2.4rem); }
.contact-card + .contact-card { margin-top: 1.4rem; }
.contact-card h3 { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.contact-card p, .contact-card address { margin-top: 0.7rem; font-size: 1.08rem; }
.contact-card a { font-weight: 700; }
.contact-note { margin-top: 1.2rem; font-size: 0.92rem; color: var(--ink-soft); }

@media (max-width: 960px) {
  .split, .contact-grid, .team-member { grid-template-columns: 1fr; }
  .team-member.flip .team-photo { order: 0; }
  .split-photo, .team-photo { max-width: 26rem; }
}

/* título de seção reutilizável (páginas internas) */
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-800);
}
.section-title::after { content: ''; display: block; width: 3.5rem; height: 1px; background: var(--gold-400); margin-top: 0.8rem; }

/* ═══ Blog ═══════════════════════════════ */
.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-img);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 250ms, box-shadow 250ms;
}
.featured-post:hover { border-color: var(--gold-400); box-shadow: 0 12px 34px rgb(31 43 36 / 0.1); }
.featured-post img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.featured-post-body { padding: clamp(1.5rem, 3vw, 2.5rem); }
.post-tag { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }
.featured-post h2 {
  margin-top: 0.8rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green-950);
}
.featured-post p { margin-top: 0.9rem; color: var(--ink-soft); max-width: 40em; }
.featured-post .post-date { margin-top: 1.1rem; font-size: 0.9rem; color: var(--ink-soft); }

.archive-list { margin-top: var(--space-m); }
.archive-item {
  display: grid;
  grid-template-columns: minmax(0, 8rem) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-top: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
}
.archive-item:last-child { border-bottom: 1px solid var(--hairline); }
.archive-item h3 { font-size: 1.15rem; font-weight: 700; color: var(--green-950); transition: color 200ms; }
.archive-item:hover h3 { color: var(--green-700); }
.archive-item .arrow { color: var(--gold-600); font-weight: 700; }

/* post único */
.post-header { max-width: 760px; }
.post-meta { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; font-size: 0.9rem; color: rgb(255 255 255 / 0.85); }
.post-meta strong { color: #fff; }
.post-body { max-width: 720px; margin-inline: auto; }
.prose .pull {
  margin: 2.2em 0;
  padding: 1.4em 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--green-800);
  font-weight: 600;
}
.author-box {
  margin-top: var(--space-m);
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.4rem;
  align-items: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-img);
  padding: 1.5rem;
  max-width: 720px;
  margin-inline: auto;
}
.author-box img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; object-position: center 20%; }
.author-box h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-950); }
.author-box p { margin-top: 0.3rem; font-size: 0.95rem; color: var(--ink-soft); }
.author-box a { font-weight: 700; }

@media (max-width: 860px) {
  .featured-post { grid-template-columns: 1fr; }
  .archive-item { grid-template-columns: 1fr auto; }
  .archive-item .post-tag { grid-column: 1 / -1; }
}

/* ── Sobre la Clínica: vídeo facade + galería ─────────────── */
.video-facade { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-img); overflow: hidden; cursor: pointer; background: var(--green-950); }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn { position: absolute; inset: 0; margin: auto; width: 4.5rem; height: 4.5rem; border-radius: 50%; background: rgb(255 255 255 / 0.92); border: none; padding: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 250ms var(--ease-out), background 250ms; }
.video-facade:hover .video-play-btn { transform: scale(1.08); background: #fff; }
.video-play-btn svg { width: 1.6rem; height: 1.6rem; fill: var(--green-950); margin-left: 0.2rem; }
.video-facade.is-playing .video-play-btn, .video-facade.is-playing img { display: none; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.clinica-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.8rem, 1.6vw, 1.3rem); }
.clinica-gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-img); }
