/* ============================================================
   VIE MEDICINA ESPECIALIZADA
   Direção: monografia clínica — porcelana, grafite quente, ouro sólido.
   Tipografia: Fraunces (display) + Hanken Grotesk (corpo)
   Autoridade por escala e contenção; o ouro é assinatura, não brilho.
   ============================================================ */

:root {
  /* Superfícies */
  --porcelain:   #F7F3EB;
  --porcelain-2: #F1EBDF;
  --cream:       #F4EDDE;
  --dark:        #17130C;
  --dark-2:      #201A10;

  /* Tinta */
  --ink:    #221D12;
  --ink-2:  #453B22;
  --soft:   #6E6552;
  --soft-2: #8A8069;

  /* Ouro — sólido, sem degradê em texto */
  --gold:       #9A7C15;
  --gold-vivid: #C9A227;
  --gold-soft:  #E0C75C;
  --gold-tint:  #EFE7CC;

  /* Hairlines */
  --line:         rgba(34, 29, 18, .13);
  --line-strong:  rgba(34, 29, 18, .24);
  --line-light:   rgba(244, 237, 222, .15);
  --line-light-2: rgba(244, 237, 222, .32);
  --gold-line:    rgba(154, 124, 21, .28);
  --gold-line-lt: rgba(224, 199, 92, .3);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Raio — escala, não um valor pra tudo */
  --r-hair: 2px;
  --r-soft: 12px;
  --r-arch: 999px 999px 14px 14px;

  --container: 1280px;
  --gutter: clamp(1.4rem, 4vw, 3.5rem);
  --header-h: 72px;
  --measure: 68ch;

  --ease-out: cubic-bezier(.22, .8, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}
/* clip nao cria contexto de rolagem — hidden quebraria todo position:sticky da pagina */
@supports (overflow: clip) {
  body { overflow-x: clip; }
}

img, svg { display: block; max-width: 100%; }
/* <picture> some da arvore de layout: o <img> herda direto do container,
   senao object-fit/height:100% nao tem altura de referencia */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--gold-tint); color: var(--ink); }

:focus-visible {
  outline: 1.5px solid var(--gold);
  outline-offset: 4px;
}

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

/* ---------- Grão ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Hairline de progresso de leitura ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 100%;
  z-index: 300;
  background: var(--gold);
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  pointer-events: none;
  opacity: .55;
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}
.container--narrow { max-width: 940px; }

.section { padding-block: clamp(5.5rem, 11vw, 10rem); position: relative; }
.section--tint { background: var(--porcelain-2); }
.section--dark {
  background: var(--dark);
  color: var(--cream);
}
.section--flush-top { padding-top: 0; }

/* Linhas de ouro fluidas (asset da marca) sobre seções escuras */
.bg-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/fundo-linhas-ouro.jpg") center / cover no-repeat;
  background-image: image-set(url("../assets/img/fundo-linhas-ouro.webp") type("image/webp"), url("../assets/img/fundo-linhas-ouro.jpg") type("image/jpeg"));
  opacity: .14;
  pointer-events: none;
}
.bg-lines > .container { position: relative; }

/* Eyebrow — vira credencial, com hairline dos dois lados */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  background: var(--gold-line);
  flex: 0 0 2.4rem;
}
.eyebrow::after { flex: 1 1 auto; }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before,
.eyebrow--light::after { background: var(--gold-line-lt); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { flex: 0 0 2.4rem; }

/* Títulos */
.title-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  max-width: 20ch;
  text-wrap: balance;
  font-feature-settings: "ss01", "liga";
}
.title-lg em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.title-lg--light { color: var(--cream); }
.title-lg--light em { color: var(--gold-soft); }
.title-lg--wide { max-width: 26ch; }

.title-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -.02em;
}
.title-md em { font-style: italic; font-weight: 300; color: var(--gold); }

.text {
  color: var(--soft);
  max-width: 52ch;
  margin-top: 1.6rem;
}
.text--light { color: rgba(244, 237, 222, .72); }

/* ============================================================
   BOTÕES — sem varredura de brilho
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: transform .4s var(--ease-out), background .4s, color .4s, border-color .4s;
}
.btn svg { transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--solid {
  background: var(--ink);
  color: var(--cream);
}
.btn--solid:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost-light {
  border: 1px solid var(--line-light-2);
  color: var(--cream);
  background: transparent;
}
.btn--ghost-light:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.btn--sm { padding: .68rem 1.3rem; font-size: .8rem; }
.btn--lg { padding: 1.2rem 2.2rem; font-size: .95rem; }

/* O degradê da marca sobrevive aqui — material de botão, não de texto */
.btn--gold {
  background: linear-gradient(120deg, #E8D06B 0%, #C9A227 52%, #A9861C 100%);
  color: var(--dark);
  font-weight: 600;
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background .5s var(--ease-soft), border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
/* Sobre o hero escuro, o header é transparente e claro */
.header--over {
  color: var(--cream);
}
.header--over .nav__link { color: rgba(244, 237, 222, .82); }
.header--over .menu-toggle span { background: var(--cream); }
.header--over .brand__logo { filter: none; }
.header--over .btn--solid {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-light-2);
}
.header--over .btn--solid:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

.header.is-scrolled,
.header--solid {
  background: rgba(247, 243, 235, .88);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-color: var(--line);
  color: var(--ink);
}
.header.is-scrolled .nav__link,
.header--solid .nav__link { color: var(--ink-2); }
.header.is-scrolled .menu-toggle span,
.header--solid .menu-toggle span { background: var(--ink); }
.header.is-scrolled .brand__logo,
.header--solid .brand__logo { filter: brightness(.52) saturate(1.3); }
.header.is-scrolled .btn--solid,
.header--solid .btn--solid {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid transparent;
}
.header.is-scrolled .btn--solid:hover,
.header--solid .btn--solid:hover { background: var(--gold); color: var(--dark); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { display: flex; align-items: center; line-height: 1; }
.brand__logo {
  height: 46px;
  width: auto;
  transition: filter .5s var(--ease-soft);
}

.nav { display: flex; gap: 2.4rem; }
.nav__link {
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  padding-block: .5rem;
  transition: color .4s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: .1rem;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: .5;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions { display: flex; align-items: center; gap: 1rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  align-items: center;
}
.menu-toggle span {
  width: 22px; height: 1.2px;
  transition: transform .4s var(--ease-out), background .4s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(3.6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-3.6px) rotate(-45deg); }

/* ---------- Menu mobile ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease-soft), visibility .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 7.5vw, 2.6rem);
  letter-spacing: -.02em;
  padding-block: .7rem;
  border-bottom: 1px solid var(--line-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), color .3s;
}
.mobile-menu__nav a:hover { color: var(--gold-soft); }
.mobile-menu.is-open .mobile-menu__nav a { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: .1s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: .16s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: .22s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: .28s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: .34s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) { transition-delay: .4s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(7) { transition-delay: .46s; }

.mobile-menu__cta {
  color: var(--gold-soft);
  font-style: italic;
  border-bottom-color: transparent !important;
}
.mobile-menu__foot {
  position: absolute;
  bottom: 2.5rem;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243, 233, 221, .45);
}

/* ============================================================
   HERO — full-bleed cinematográfico
   ============================================================ */
.hero {
  position: relative;
  height: min(94vh, 940px);
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -8% 0 -8% 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* enquadra os rostos das três sócias */
  object-position: center 6%;
  /* parallax: a foto sobe mais devagar que a página */
  transform: translate3d(0, calc(var(--p, 0) * -5%), 0) scale(calc(1 + var(--p, 0) * .05));
  transform-origin: center 30%;
  /* abertura: a foto descomprime na carga */
  animation: heroOpen 1.6s var(--ease-out) both;
}
@keyframes heroOpen {
  from { clip-path: inset(14% 8% 14% 8%); opacity: 0; }
  to   { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* Escurecimento cinematográfico: base + lateral esquerda */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(15, 12, 7, .94) 0%, rgba(15, 12, 7, .74) 26%, rgba(15, 12, 7, .18) 58%, rgba(15, 12, 7, .35) 100%),
    linear-gradient(to right, rgba(15, 12, 7, .72) 0%, rgba(15, 12, 7, .22) 45%, transparent 72%);
}

.hero__inner {
  position: relative;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: calc(var(--header-h) + 3rem);
  color: var(--cream);
  /* a copy some quando o hero sai */
  opacity: calc(1 - var(--p, 0) * 1.5);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
}
.hero__eyebrow::before {
  content: "";
  height: 1px; width: 2.4rem;
  background: var(--gold-line-lt);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 7.2vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.035em;
  font-feature-settings: "ss01", "liga";
  max-width: 15ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}

.hero__lead {
  margin-top: 2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(244, 237, 222, .78);
  max-width: 44ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.6rem;
}

/* Indicador de rolagem — hairline que respira */
.hero__scroll {
  position: absolute;
  right: 0;
  bottom: clamp(3rem, 7vw, 5.5rem);
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244, 237, 222, .5);
}
.hero__scroll i {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  transform-origin: left;
  animation: scrollHint 2.6s var(--ease-soft) infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleX(.4); opacity: .5; }
  50%      { transform: scaleX(1);  opacity: 1; }
}

/* ============================================================
   FAIXA DE CREDENCIAIS — substitui o marquee
   ============================================================ */
.creds {
  background: var(--dark);
  color: var(--cream);
  border-top: 1px solid var(--line-light);
  position: relative;
  z-index: 1;
}
.creds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.creds__item {
  padding: clamp(2rem, 3.6vw, 2.9rem) clamp(1rem, 2.4vw, 2.2rem);
  border-left: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.creds__item:first-child { border-left: 0; padding-left: 0; }
.creds__item:last-child { padding-right: 0; }
.creds__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--gold-soft);
}
.creds__label {
  font-size: .74rem;
  line-height: 1.55;
  letter-spacing: .06em;
  color: rgba(244, 237, 222, .6);
}

/* ============================================================
   MANIFESTO — palavras acendendo no scroll
   ============================================================ */
.manifesto {
  padding-top: clamp(5rem, 10vw, 8.5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  text-align: center;
}
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.55rem, 3.4vw, 2.75rem);
  line-height: 1.34;
  letter-spacing: -.02em;
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance;
}
.manifesto__text em { font-style: italic; color: var(--gold); }
.manifesto__text w {
  display: inline-block;
  opacity: .16;
  transition: opacity .45s var(--ease-soft);
}
.manifesto__text w.is-lit { opacity: 1; }
.manifesto__sig {
  margin-top: 3rem;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--soft-2);
}

/* ============================================================
   A CLÍNICA — coluna sticky + fotos passando
   ============================================================ */
.clinic__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.clinic__aside {
  position: sticky;
  top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
}
.clinic__list {
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
  max-width: 46ch;
}
.clinic__list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: baseline;
  gap: .6rem;
  padding-block: 1.3rem;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
  line-height: 1.5;
}
.clinic__list li span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: .88rem;
}
.clinic__cta { margin-top: 2.4rem; }

.clinic__stack { display: grid; gap: clamp(1.6rem, 3vw, 2.6rem); }
.clinic__shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-soft);
}
.clinic__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.clinic__shot figcaption {
  margin-top: .9rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft-2);
}
.clinic__shot--a { aspect-ratio: 4 / 4.6; }
.clinic__shot--b { aspect-ratio: 4 / 2.7; }
.clinic__shot--c { aspect-ratio: 4 / 3.4; }
/* desalinha a coluna — quebra o grid, evita cara de template */
.clinic__shot--b { margin-left: clamp(2rem, 8vw, 6rem); }
.clinic__shot--c { margin-right: clamp(2rem, 6vw, 4rem); }

/* ============================================================
   ESPECIALIDADES — índice editorial com preview no cursor
   ============================================================ */
.index {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line-light);
  position: relative;
}
.index__row { border-bottom: 1px solid var(--line-light); }

.index__head {
  width: 100%;
  display: grid;
  grid-template-columns: 4.5rem 1fr auto 2rem;
  align-items: center;
  gap: 1.5rem;
  padding-block: clamp(1.8rem, 3.4vw, 2.8rem);
  text-align: left;
  position: relative;
  transition: padding-left .5s var(--ease-out);
}
.index__head::before {
  content: "";
  position: absolute;
  inset: 0 -1.5rem;
  background: rgba(244, 237, 222, .04);
  opacity: 0;
  transition: opacity .5s var(--ease-soft);
  pointer-events: none;
}
.index__row:hover .index__head::before,
.index__row.is-open .index__head::before { opacity: 1; }
.index__row:hover .index__head { padding-left: 1rem; }

.index__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: .95rem;
  color: var(--gold-soft);
  letter-spacing: .04em;
}
.index__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.028em;
  color: var(--cream);
  transition: color .4s;
}
.index__row:hover .index__name { color: #fff; }
.index__meta {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244, 237, 222, .45);
  text-align: right;
}
.index__icon {
  position: relative;
  width: 14px; height: 14px;
  justify-self: end;
}
.index__icon::before,
.index__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 14px; height: 1px;
  background: var(--gold-soft);
  transition: transform .5s var(--ease-out);
}
.index__icon::after { transform: rotate(90deg); }
.index__row.is-open .index__icon::after { transform: rotate(0deg); }

/* corpo expansível */
.index__body {
  overflow: hidden;
  height: 0;
  visibility: hidden;
  /* visibility atrasada tira o conteudo fechado do tab order sem matar a transicao */
  transition: height .6s var(--ease-out), visibility 0s linear .6s;
}
.index__row.is-open .index__body {
  visibility: visible;
  transition: height .6s var(--ease-out), visibility 0s linear 0s;
}
.index__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: .5rem 0 clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}
.index__desc {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.5;
  color: var(--gold-soft);
}
.index__list {
  columns: 2;
  column-gap: 2.5rem;
}
.index__list li {
  break-inside: avoid;
  padding: .7rem 0 .7rem 1.3rem;
  border-bottom: 1px solid var(--line-light);
  font-size: .92rem;
  color: rgba(244, 237, 222, .82);
  position: relative;
}
.index__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.32em;
  width: .55rem; height: 1px;
  background: var(--gold-line-lt);
}

/* preview que segue o cursor (só desktop) */
.index__preview {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  aspect-ratio: 4 / 4.8;
  border-radius: var(--r-soft);
  overflow: hidden;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.94);
  transition: opacity .45s var(--ease-soft), transform .45s var(--ease-out);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .8);
}
.index__preview.is-on { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
.index__preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   CORPO CLÍNICO — grade editorial, credencial em destaque
   ============================================================ */
.team__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.2rem) clamp(1.6rem, 3vw, 2.6rem);
}
.doc__frame {
  position: relative;
  aspect-ratio: 4 / 4.9;
  overflow: hidden;
  border-radius: var(--r-soft);
  background: var(--porcelain-2);
  margin-bottom: 1.4rem;
}
.doc__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.02);
  transition: transform 1s var(--ease-out), filter .9s var(--ease-soft);
}
.doc:hover .doc__photo { transform: scale(1.04); filter: saturate(1) contrast(1.04); }

.doc__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.doc__spec {
  margin-top: .5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.doc__reg {
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: var(--soft-2);
  letter-spacing: .03em;
}
/* formação — o ativo de autoridade, tratado como tal */
.doc__edu {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .9rem;
}
.doc__edu li {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .35rem .7rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-hair);
}

/* ============================================================
   MÉTODO — passos numerados + imagem sticky
   ============================================================ */
.method__grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.method__steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.4rem;
  padding-block: clamp(1.8rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--gold);
  padding-top: .3rem;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: -.015em;
}
.step__text {
  font-size: .93rem;
  color: var(--soft);
  margin-top: .5rem;
  max-width: 46ch;
}
.method__visual {
  position: sticky;
  top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
}
.method__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-arch);
}
.method__figure img { width: 100%; height: 100%; object-fit: cover; }
.method__figure::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(244, 237, 222, .28);
  border-radius: var(--r-arch);
  pointer-events: none;
}

/* ============================================================
   O ESPAÇO — galeria horizontal pinada
   ============================================================ */
.space { background: var(--dark); color: var(--cream); }
.space__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.space__addr {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244, 237, 222, .5);
  text-align: right;
}
.space__pin { position: relative; }
.space__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.space__tile figcaption { margin: 0; }
.space__rail {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  padding-inline: var(--gutter);
  will-change: transform;
  transform: translate3d(calc(var(--x, 0px)), 0, 0);
}
.space__tile {
  flex: 0 0 auto;
  height: min(66vh, 620px);
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  border-radius: var(--r-soft);
  position: relative;
}
.space__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9);
}
.space__tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15, 12, 7, .72), transparent);
  pointer-events: none;
}
.space__cap {
  position: absolute;
  z-index: 1;
  left: 1.2rem; bottom: 1.1rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244, 237, 222, .85);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
}
.space__foot {
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote { text-align: center; overflow: hidden; }
.quote--texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/textura-ouro.jpg") center / cover no-repeat;
  background-image: image-set(url("../assets/img/textura-ouro.webp") type("image/webp"), url("../assets/img/textura-ouro.jpg") type("image/jpeg"));
  opacity: .22;
  pointer-events: none;
}
.quote--texture .container { position: relative; }
.quote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.28;
  max-width: 24ch;
  margin-inline: auto;
  letter-spacing: -.025em;
}
.quote__text em { font-style: italic; color: var(--gold-soft); }
.quote__src {
  margin-top: 2.6rem;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(243, 233, 221, .5);
}

/* ============================================================
   CONTATO + LOCALIZAÇÃO (fundidos)
   ============================================================ */
.close {
  background: var(--dark);
  color: var(--cream);
  padding-block: clamp(5rem, 10vw, 8.5rem);
  position: relative;
  overflow: hidden;
}
.close__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.close__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.028em;
  max-width: 15ch;
  color: var(--cream);
}
.close__title em { font-style: italic; font-weight: 300; color: var(--gold-soft); }
.close__cta { margin-top: 2.6rem; }

.close__list { border-top: 1px solid var(--line-light); }
.close__row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.5rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-light);
}
.close__row dt {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-top: .3rem;
}
.close__row dd {
  font-size: .94rem;
  line-height: 1.6;
  color: rgba(244, 237, 222, .85);
}
.close__row dd a {
  border-bottom: 1px solid transparent;
  transition: border-color .35s, color .35s;
}
.close__row dd a:hover { color: var(--gold-soft); border-color: var(--gold-line-lt); }

.close__map {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border: 1px solid var(--line-light);
  border-radius: var(--r-soft);
  overflow: hidden;
  position: relative;
}
.close__map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 440px);
  border: 0;
  /* o embed colorido do Google é o que mais destoa — entra na paleta */
  filter: grayscale(1) contrast(1.05) brightness(.86) sepia(.22);
}
.close__map:hover iframe { filter: grayscale(.5) contrast(1.03) brightness(.95) sepia(.1); }
.close__map iframe { transition: filter .7s var(--ease-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2.5rem;
  position: relative;
  border-top: 1px solid var(--line-light);
}
.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
}
.footer__logo { height: 96px; width: auto; }
.footer__tag {
  margin-top: 1.4rem;
  font-size: .86rem;
  color: rgba(243, 233, 221, .55);
  line-height: 1.7;
  max-width: 34ch;
}
.footer__nav {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__nav a {
  font-size: .82rem;
  letter-spacing: .06em;
  color: rgba(243, 233, 221, .7);
  transition: color .35s;
}
.footer__nav a:hover { color: var(--gold-soft); }

.footer__legal {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 3rem;
  align-items: end;
  font-size: .74rem;
  line-height: 1.7;
  color: rgba(243, 233, 221, .4);
}
.footer__legal p + p { margin-top: .3rem; }
.footer__sign { text-align: right; white-space: nowrap; }
.footer__sign a { border-bottom: 1px solid rgba(243, 233, 221, .2); transition: color .3s, border-color .3s; }
.footer__sign a:hover { color: var(--gold-soft); border-color: var(--gold-line-lt); }

/* ============================================================
   PÁGINAS INTERNAS — hero
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(4.5rem, 9vw, 7.5rem)) 0 clamp(4rem, 8vw, 6rem);
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.032em;
  max-width: 16ch;
  font-feature-settings: "ss01", "liga";
}
.page-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.page-hero__lead {
  margin-top: 1.8rem;
  color: rgba(244, 237, 222, .72);
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.7;
}
.page-hero--banner {
  background-size: cover;
  background-position: center 26%;
}
.page-hero--banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15, 12, 7, .92) 12%, rgba(15, 12, 7, .55) 62%, rgba(15, 12, 7, .3)),
    linear-gradient(to top, rgba(15, 12, 7, .7), transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }

/* ============================================================
   SEGMENTOS (página) — blocos alternados
   ============================================================ */
.seg {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.seg + .seg { border-top: 1px solid var(--line); }
.seg:nth-child(even) .seg__visual { order: 2; }
.seg__figure {
  position: relative;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  border-radius: var(--r-arch);
  max-width: 380px;
}
.seg__figure img { width: 100%; height: 100%; object-fit: cover; }
.seg__figure::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-arch);
  pointer-events: none;
}
.seg__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -.025em;
  line-height: 1.1;
}
.seg__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.seg__text { color: var(--soft); margin-top: 1.3rem; max-width: 54ch; }
.seg__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}
.seg__tags li {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-hair);
  color: var(--ink-2);
}

/* ============================================================
   TRATAMENTOS — lista numerada editorial
   ============================================================ */
.treat__list {
  margin-top: clamp(3rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2.5rem, 6vw, 5rem);
}
.treat {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.2rem;
  padding-block: clamp(1.6rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--line);
}
.treat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: .95rem;
  color: var(--gold);
  padding-top: .35rem;
}
.treat__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  letter-spacing: -.015em;
  line-height: 1.2;
}
.treat__text {
  font-size: .89rem;
  color: var(--soft);
  margin-top: .6rem;
  line-height: 1.65;
  max-width: 46ch;
}

/* ============================================================
   BIOS (quem somos) — ficha editorial
   ============================================================ */
.bios { border-top: 1px solid var(--line); margin-top: clamp(3rem, 6vw, 4.5rem); }
.bio {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.bio__frame {
  position: relative;
  aspect-ratio: 4 / 4.9;
  overflow: hidden;
  border-radius: var(--r-soft);
  background: var(--porcelain-2);
}
.bio__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85);
  transition: transform 1s var(--ease-out), filter .9s var(--ease-soft);
}
.bio:hover .bio__photo { transform: scale(1.035); filter: saturate(1); }
.bio__body { padding-top: .4rem; }
.bio__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -.025em;
  line-height: 1.1;
}
.bio__spec {
  margin-top: .7rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.bio__text {
  font-size: .97rem;
  color: var(--soft);
  margin-top: 1.4rem;
  line-height: 1.75;
  max-width: var(--measure);
}
.bio__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--soft-2);
}
.bio__edu {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.2rem;
}
.bio__edu li {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .38rem .75rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-hair);
}

/* ---------- Galeria simples (páginas internas) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.gallery--tres { grid-template-columns: repeat(3, 1fr); }
.gallery figure {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  border-radius: var(--r-soft);
}
.gallery--tres figure { aspect-ratio: 4 / 3.2; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform 1s var(--ease-out), filter .8s;
}
.gallery figure:hover img { transform: scale(1.04); filter: saturate(1); }
.gallery figure:nth-child(even) { margin-top: clamp(1rem, 3vw, 2.6rem); }

/* ============================================================
   MOVIMENTO — hierarquia, não um reveal pra tudo
   ============================================================ */

/* Carga inicial */
.load-fade {
  opacity: 0;
  animation: loadFade 1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes loadFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.load-line { display: block; overflow: hidden; }
.load-line > span {
  display: block;
  transform: translateY(110%);
  animation: loadLine 1.15s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes loadLine { to { transform: none; } }

/* Scroll — texto sobe (curto, discreto) */
.r-up, .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--stagger, 0s);
}
.r-up.is-in, .reveal.is-in { opacity: 1; transform: none; }

/* Scroll — imagem revelada por máscara, com a foto descomprimindo */
.r-mask {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease-out);
  transition-delay: var(--stagger, 0s);
}
.r-mask.is-in { clip-path: inset(0 0 0 0); }
.r-mask img {
  transform: scale(1.1);
  transition: transform 1.5s var(--ease-out);
  transition-delay: var(--stagger, 0s);
}
.r-mask.is-in img { transform: scale(1); }

/* Scroll — hairline que se desenha */
.r-rule {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease-out);
}
.r-rule.is-in { transform: scaleX(1); }

/* Parallax leve de mídia (usa --p publicado pelo JS) */
[data-scene="parallax"] {
  transform: translate3d(0, calc((var(--p, .5) - .5) * var(--range, 60px)), 0);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1100px) {
  .clinic__grid { grid-template-columns: 1fr; gap: 3rem; }
  .clinic__aside { position: static; }
  .clinic__shot--b, .clinic__shot--c { margin: 0; }
  .clinic__stack { grid-template-columns: repeat(2, 1fr); }
  .clinic__shot--a { grid-column: span 2; aspect-ratio: 4 / 2.9; }

  .team__grid { grid-template-columns: repeat(2, 1fr); }

  .method__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .method__visual { position: static; max-width: 420px; }

  .index__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .index__preview { display: none; }

  .close__grid { grid-template-columns: 1fr; }
  .seg { grid-template-columns: 1fr; }
  .seg:nth-child(even) .seg__visual { order: 0; }
  .seg__figure { max-width: 320px; }
  .treat__list { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 190px 1fr; gap: 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:nth-child(even) { margin-top: 0; }
  .creds__grid { grid-template-columns: repeat(2, 1fr); }
  .creds__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .creds__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .creds__item:nth-child(even) { padding-right: 0; }
  .creds__item:nth-child(1), .creds__item:nth-child(2) { border-bottom: 1px solid var(--line-light); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header__actions .btn { display: none; }
  .hero { height: auto; min-height: min(88vh, 760px); }
  .hero__title { max-width: 100%; }
  .hero__scroll { display: none; }
  .index__head { grid-template-columns: 3rem 1fr 1.6rem; gap: 1rem; }
  .index__meta { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__nav { justify-content: flex-start; }
  .footer__legal { grid-template-columns: 1fr; }
  .footer__sign { text-align: left; }
  .team__head, .space__head { grid-template-columns: 1fr; align-items: start; }
  .space__addr { text-align: left; }
}

@media (max-width: 620px) {
  .clinic__stack { grid-template-columns: 1fr; }
  .clinic__shot--a { grid-column: auto; aspect-ratio: 4 / 4.6; }
  .team__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .index__list { columns: 1; }
  .close__row { grid-template-columns: 1fr; gap: .35rem; }
  .bio { grid-template-columns: 1fr; }
  .bio__frame { max-width: 240px; }
  .gallery, .gallery--tres { grid-template-columns: 1fr; }
  .creds__grid { grid-template-columns: 1fr; }
  .creds__item { border-left: 0 !important; padding-inline: 0 !important; border-bottom: 1px solid var(--line-light); }
  .creds__item:last-child { border-bottom: 0; }
  .step { grid-template-columns: 2.4rem 1fr; gap: 1rem; }
  .treat { grid-template-columns: 2.4rem 1fr; gap: 1rem; }
}

/* Sem pinagem em telas curtas ou touch — vira scroll horizontal nativo */
@media (max-width: 860px), (pointer: coarse) {
  .space__pin { height: auto !important; }
  .space__sticky { position: static; height: auto; }
  .space__rail {
    transform: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .space__rail::-webkit-scrollbar { display: none; }
  .space__tile { scroll-snap-align: center; height: auto; width: min(78vw, 420px); }
}

/* ============================================================
   MOVIMENTO REDUZIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .load-fade, .load-line > span, .r-up, .reveal { opacity: 1; transform: none; }
  .r-mask { clip-path: none; }
  .r-mask img { transform: none; }
  .r-rule { transform: none; }
  .hero__media img { animation: none; transform: none; }
  .hero__inner { opacity: 1; }
  .manifesto__text w { opacity: 1; }
  .space__pin { height: auto !important; }
  .space__sticky { position: static; height: auto; }
  .space__rail { transform: none !important; overflow-x: auto; }
  .progress { display: none; }
  [data-scene="parallax"] { transform: none; }
}
