/* =====================================================================
   Dra. Liva Tuluche · Cirurgia Plástica
   Sistema de design "o traço": porcelana, uma serifa, uma sans, ouro em fio.
   Tudo que anima: opacity · translate/scale · clip-path · stroke-dashoffset.
   Estado base = estado final (reduced-motion e sem JS já nascem prontos).
   ===================================================================== */

/* ---------- tokens ---------- */
:root {
  color-scheme: light;
  --porcelana: #F7F4EF;
  --linho: #EFE9E1;
  --nude: #E7D6CA;
  --taupe: #8C6F58;
  --taupe-escuro: #5E4A3A;
  --marinho: #24365E;
  --ouro: #B59D78;
  --espresso: #2A211B;
  --tinta: #1E1916;
  /* fundo dos botões cheios: taupe puxado ao escuro (5,3:1 com porcelana) */
  --taupe-fundo: #7A604B;
  --line: #DCCFC0;
  --line-dark: #594A3C;

  --bg: var(--porcelana);
  --fg: var(--tinta);
  --fg-2: var(--taupe-escuro);
  --rule: var(--ouro);

  --font-display: "Bodoni Moda", "Bodoni 72", "Didot", "Times New Roman", serif;
  --font-body: "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Allison", "Snell Roundhand", "Brush Script MT", cursive;

  --ease: cubic-bezier(.77, 0, .18, 1);
  --spring: cubic-bezier(.22, 1, .36, 1);

  --header-h: 4.5rem;
  --wrap: 80rem;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --gap: clamp(1rem, 2.5vw, 2.25rem);
  --sec-pad: clamp(5rem, 12vw, 10rem);

  /* as animações do hero esperam a cortina subir */
  --intro-delay: 1.45s;
}
html.no-intro { --intro-delay: .1s; }
@supports (color: color-mix(in oklch, red, blue)) {
  :root {
    --line: color-mix(in oklch, var(--taupe) 26%, var(--porcelana));
    --line-dark: color-mix(in oklch, var(--ouro) 34%, var(--espresso));
  }
}
@supports (animation-timing-function: linear(0, 1)) {
  :root { --spring: linear(0, .006, .025 2.8%, .101 6.1%, .539 18.9%, .721 25.3%, .849 31.5%, .937 38.1%, .98 45.3%, 1); }
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  background: var(--porcelana);
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
/* rolagem suave só na navegação por âncora (algo em foco), nunca em scroll programático */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--tinta);
  background: var(--porcelana);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
html:has(dialog.menu[open]) { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: inherit; }
p { margin: 0 0 1.25em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--marinho); outline-offset: 4px; }
.dark :focus-visible, .site-footer :focus-visible { outline-color: var(--ouro); }
::selection { background: var(--marinho); color: var(--porcelana); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: -6rem; z-index: 120;
  padding: .75rem 1.25rem; background: var(--espresso); color: var(--porcelana);
  font: 500 .8125rem/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; transition: top .3s var(--ease);
}
.skip:focus { top: 1rem; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.top-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }

/* ---------- tipografia ---------- */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 1rem + 8vw, 8.2rem);
  line-height: .92;
  letter-spacing: -.015em;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96;
  view-transition-name: page-title;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1rem + 3.2vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  text-wrap: balance;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.h2-xl { font-size: clamp(2.6rem, 1.2rem + 6vw, 6.8rem); line-height: .96; }
body.sub .h2-xl { font-size: clamp(2.6rem, 1rem + 4.6vw, 5rem); }
.h2 em, .h1 em, .deck em { font-style: italic; font-weight: 400; }
.eyebrow {
  font: 500 .75rem/1.2 var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--marinho);
  margin: 0;
}
.deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -.005em;
  margin: 0;
  text-wrap: balance;
}
.deck .up { font-style: normal; }
.deck-sm {
  font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 34rem;
}
.lead { font-size: 1.125rem; color: var(--fg-2); max-width: 32rem; }
.muted { color: var(--fg-2); }
.id-block {
  font: 500 .75rem/1.6 var(--font-body);
  letter-spacing: .1em;
  color: var(--marinho);
  margin: 0;
  text-wrap: balance;
}
.nb { white-space: nowrap; }
.only-sm { display: none; }
@media (max-width: 63.99rem) {
  .hero .id-block .only-sm { display: inline; }
  .hero .id-block .sep { display: none; }
}
.dark .id-block, .site-footer .id-block { color: var(--porcelana); }

/* links de corpo: sublinhado fino */
.prose a, .office-list a, .footer-col a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
  text-decoration-color: color-mix(in oklch, currentColor 45%, transparent);
  transition: text-decoration-color .5s var(--ease);
}
.prose a:hover, .office-list a:hover, .footer-col a:hover { text-decoration-color: currentColor; }

/* ---------- botões e links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: .9rem 1.85rem;
  border-radius: 999px;
  font: 500 .8125rem/1 var(--font-body);
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--taupe);
  color: var(--taupe-escuro);
  background: transparent;
  cursor: pointer;
  transition: background-color .6s var(--ease), color .6s var(--ease), border-color .6s var(--ease), translate .7s var(--spring);
}
.btn-fill { background: var(--taupe-fundo); border-color: var(--taupe-fundo); color: var(--porcelana); }
.btn-fill:hover { background: var(--espresso); border-color: var(--espresso); }
.btn-outline:hover { background: var(--taupe-fundo); border-color: var(--taupe-fundo); color: var(--porcelana); }
.dark .btn-outline, .site-footer .btn-outline { border-color: var(--ouro); color: var(--porcelana); }
.dark .btn-outline:hover { background: var(--ouro); color: var(--espresso); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .7em;
  padding: .9rem 0;
  font: 500 .8125rem/1 var(--font-body);
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  color: var(--fg-2);
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
  transition: background-size .6s var(--ease), color .5s var(--ease);
}
.link-arrow::after {
  content: ""; flex: none; width: 1.25rem; height: .5rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8' fill='none' stroke='%23000' stroke-width='1'%3E%3Cpath d='M0 4h19M15 .5 19 4l-4 3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8' fill='none' stroke='%23000' stroke-width='1'%3E%3Cpath d='M0 4h19M15 .5 19 4l-4 3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: translate .6s var(--ease);
}
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow:hover::after { translate: .35rem 0; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.25rem; }

.rating {
  display: inline-flex; align-items: center; gap: .5em;
  font: 500 .75rem/1.4 var(--font-body);
  letter-spacing: .06em;
  color: var(--taupe-escuro);
  text-decoration: none;
  padding: .5rem 0;
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
  transition: background-size .6s var(--ease);
}
.rating:hover { background-size: 100% 1px; }
.star { color: var(--ouro); font-size: 1.1em; line-height: 1; }

/* ---------- grelha ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: 2rem;
}
.sec { padding-block: var(--sec-pad); background: var(--bg); color: var(--fg); position: relative; }
.alt { --bg: var(--linho); }
.nude { --bg: var(--nude); }
.dark {
  --bg: var(--espresso);
  --fg: var(--porcelana);
  --fg-2: #D9CFC3;
  --line: var(--line-dark);
}
.dark .eyebrow { color: var(--ouro); font-size: .875rem; }
.site-footer .eyebrow { color: var(--ouro); }
.sticky { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }

.sec-head {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.sec-head .eyebrow { flex: none; }
main:focus { outline: none; }
.sec-head .rule { flex: 1; height: 1px; background: var(--rule); transform-origin: left center; }

/* molduras de foto */
.frame { position: relative; overflow: hidden; }
.frame-45 { aspect-ratio: 4 / 5; }
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- keyframes ---------- */
@keyframes reveal-x { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes curtain { from { scale: 1 1; } to { scale: 0 1; } }
@keyframes rise-in { from { translate: 0 110%; } to { translate: 0 0; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; translate: 0 1.5rem; } to { opacity: 1; translate: 0 0; } }
@keyframes draw-x { from { scale: 0 1; } to { scale: 1 1; } }
@keyframes draw-y { from { scale: 1 0; } to { scale: 1 1; } }
@keyframes draw-path { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes slide { to { translate: -100% 0; } }
@keyframes lt-draw { to { stroke-dashoffset: 0; } }
@keyframes lt-write-1 { from { stroke-dashoffset: 1280; } to { stroke-dashoffset: 0; } }
@keyframes lt-write-2 { from { stroke-dashoffset: 270; } to { stroke-dashoffset: 0; } }
@keyframes ink-out { to { opacity: 0; } }
@keyframes intro-lift { to { translate: 0 -100%; visibility: hidden; } }
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; } }

/* ---------- intro (uma vez por sessão, só CSS) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 100;
  background: var(--porcelana);
  display: grid; place-content: center; justify-items: center; gap: 2rem;
  color: var(--ouro);
  animation: intro-lift .55s var(--ease) 1.35s forwards;
}
.intro-mark { width: clamp(9rem, 16vw, 15rem); height: auto; aspect-ratio: 708 / 558; }
.lt-pen { fill: none; stroke: #fff; stroke-width: 34; stroke-linecap: round; stroke-linejoin: round; }
#lt-i1 { stroke-dasharray: 1280; stroke-dashoffset: 1280; animation: lt-draw .95s cubic-bezier(.45, 0, .2, 1) .1s forwards; }
#lt-i2 { stroke-dasharray: 270; stroke-dashoffset: 270; animation: lt-draw .3s ease-out 1.02s forwards; }
.intro-caption {
  font: 500 .75rem/1 var(--font-body); letter-spacing: .24em; text-transform: uppercase;
  color: var(--taupe-escuro); margin: 0; opacity: 0;
  animation: fade-in .5s var(--ease) .85s forwards;
}
html.no-intro .intro { display: none; }

/* ---------- cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--porcelana);
  border-bottom: 1px solid transparent;
  transition: border-color .6s var(--ease);
  view-transition-name: header;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-row {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .9rem; color: var(--tinta); text-decoration: none; }
.mark { width: 1em; height: auto; aspect-ratio: 708 / 558; color: var(--ouro); }
.brand-mark { width: 2.4rem; height: auto; aspect-ratio: 708 / 558; color: var(--taupe); }
.brand-name { display: block; font: 500 1.125rem/1 var(--font-display); letter-spacing: .01em; }
.brand-sub {
  display: block; margin-top: .35rem;
  font: 500 .625rem/1 var(--font-body); letter-spacing: .22em; text-transform: uppercase;
  color: var(--taupe-escuro); white-space: nowrap;
}
@media (max-width: 22rem) { .brand-sub { letter-spacing: .14em; } }
.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav a:not(.btn) {
  font: 500 .75rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase;
  color: var(--taupe-escuro); text-decoration: none; padding: .75rem 0;
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
  transition: background-size .6s var(--ease);
}
.nav a:not(.btn):hover { background-size: 100% 1px; }
.nav .btn { min-height: 2.625rem; padding: .7rem 1.4rem; }
.menu-btn {
  display: none; align-items: center; gap: .75rem;
  min-height: 2.75rem; padding: .5rem .25rem;
  background: none; border: 0; cursor: pointer;
  font: 500 .75rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase;
  color: var(--taupe-escuro);
}
.menu-btn::after {
  content: ""; width: 1.5rem; height: .6rem;
  border-block: 1px solid currentColor;
}

/* menu móvel */
.menu {
  border: 0; padding: 0; margin: 0; inset: 0;
  width: 100%; max-width: none; height: 100dvh; max-height: none;
  background: var(--porcelana); color: var(--tinta);
}
.menu::backdrop { background: transparent; }
.menu[open] { display: grid; }
.menu-inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding: 0 var(--gutter) 2.5rem;
  display: grid; grid-template-rows: auto 1fr auto; gap: 2rem;
  min-height: 100%;
}
.menu-top { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.menu-top .mark { width: 2.4rem; color: var(--taupe); }
.menu-top { padding-block: 0; }
.menu-close {
  background: none; border: 0; cursor: pointer; min-height: 2.75rem; padding: .5rem .25rem;
  font: 500 .75rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--taupe-escuro);
}
.menu-nav { display: grid; align-content: center; gap: .25rem; }
.menu-nav a {
  font: 400 clamp(2.25rem, 9vw, 3.5rem)/1.1 var(--font-display);
  letter-spacing: -.01em; text-decoration: none; color: var(--tinta);
  padding: .35rem 0; border-bottom: 1px solid var(--line);
}
.menu-nav a:last-child { border-bottom: 0; }
.menu-foot { display: grid; gap: 1rem; }
.menu-foot a { text-decoration: none; font: 400 1.125rem/1.4 var(--font-body); color: var(--tinta); }

/* ---------- hero ---------- */
.hero {
  padding-block: clamp(1.5rem, 4vh, 3.5rem) clamp(3rem, 6vh, 5rem);
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  overflow: clip;
}
.hero-grid { row-gap: 2.5rem; }
.hero-text { grid-column: 1 / -1; display: grid; align-content: center; justify-items: start; }
.hero-text .eyebrow { margin-bottom: 1.5rem; }
.hero .h1 { margin: 0 0 1.5rem; }
.h1-line { display: block; }
.h1-line2 { display: inline-block; position: relative; margin-left: .65em; }
.h1-clip { display: block; overflow: hidden; padding: .1em .08em .1em 0; margin: -.1em 0; }
.h1-in { display: block; }
.h1-pre {
  font-size: .4em; font-style: italic; letter-spacing: 0; color: var(--taupe-escuro);
  margin-right: -.42em; vertical-align: baseline;
}
.h1-stroke {
  position: absolute; left: -2%; bottom: -.08em; width: 108%; height: .22em;
  overflow: visible; color: var(--ouro);
}
.h1-stroke path { fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 0; }
.hero .deck { margin-bottom: 1.5rem; max-width: 16em; }
.hero .id-block { margin-bottom: 1.75rem; }
.hero .lead { margin-bottom: 2rem; }
.hero .cta-row { margin-bottom: 1.25rem; }
.hero-fig {
  grid-column: 1 / -1; position: relative; margin: 0;
  width: 100%; max-width: 31.9rem;
}
.hero-fig img {
  position: relative; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%;
  /* o vestido some no chão (78%→100%) e as bordas laterais e o topo dissolvem em 5%: nenhum retângulo */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 78%, transparent 100%), linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 78%, transparent 100%), linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-composite: intersect;
}
/* cortina da revelação: porcelana sobre porcelana, só transform (compositor); some sob reduced-motion */
.hero-fig::after {
  content: ""; position: absolute; inset: -1px; z-index: 1; pointer-events: none;
  background: var(--porcelana); transform-origin: right center; scale: 0 1;
}
.signature {
  font-family: var(--font-script); font-weight: 400;
  font-size: clamp(2.75rem, 2rem + 2.2vw, 4.25rem); line-height: 1;
  color: var(--ouro); white-space: nowrap;
}
.hero-sign { position: absolute; left: -4%; bottom: 9%; rotate: -6deg; transform-origin: left bottom; z-index: 2; }
/* tablet: a assinatura fica no canto, fora da mão */
@media (min-width: 48rem) and (max-width: 63.99rem) {
  .hero-sign { font-size: 2.5rem; left: -6%; bottom: 2%; }
}

@media (min-width: 64rem) {
  .hero-text { grid-column: 1 / 8; }
  .hero-fig { grid-column: 8 / 13; justify-self: end; }
}
/* tablet retrato: duas colunas, foto na primeira tela, nome menor */
@media (min-width: 48rem) and (max-width: 63.99rem) {
  .hero-grid { align-items: start; }
  .hero-text { grid-column: 1 / 8; }
  .hero-fig { grid-column: 8 / 13; justify-self: end; max-width: 20rem; margin-top: 2rem; }
  .hero .h1 { font-size: clamp(3rem, 1rem + 6vw, 5.2rem); }
}
/* celular: nome primeiro, a foto logo depois da identificação; o resto segue */
@media (max-width: 47.99rem) {
  .hero-grid { row-gap: 0; justify-items: start; }
  .hero-text { display: contents; }
  .hero-grid > *, .hero-text > * { grid-column: 1 / -1; }
  .hero-fig { max-width: 32rem; }
  .hero-text > .eyebrow { order: 1; }
  .hero-text > .h1 { order: 2; }
  .hero-text > .deck { order: 3; }
  .hero-text > .id-block { order: 4; margin-bottom: 0; }
  .hero-fig { order: 5; margin-block: 2rem 2.25rem; }
  .hero-text > .lead { order: 6; }
  .hero-text > .cta-row { order: 7; }
  .hero-text > .rating { order: 8; }
}

/* ---------- faixa de credenciais ---------- */
.creds {
  background: var(--linho);
  border-block: 1px solid var(--line);
  padding-block: 1.125rem;
  overflow: hidden;
}
.marquee { display: block; }
.marquee-track {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center; row-gap: .75rem;
  padding-inline: var(--gutter);
}
.marquee-track li {
  display: flex; align-items: center; gap: 1.25rem;
  padding-right: 2.5rem;
  font: 500 .75rem/1.3 var(--font-body); letter-spacing: .18em; text-transform: uppercase;
  color: var(--taupe-escuro);
}
.marquee-track .mark { width: 1.75rem; flex: none; }
.marquee-track[aria-hidden] { display: none; }
@media (min-width: 40rem) and (max-width: 63.9375rem) {
  .marquee-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: .85rem; }
}
@media (min-width: 64rem) and (prefers-reduced-motion: no-preference) {
  .marquee { display: flex; width: max-content; }
  .marquee-track { flex: none; flex-wrap: nowrap; padding-inline: 0; padding-left: 1.25rem; animation: slide 64s linear infinite; }
  .marquee-track li { white-space: nowrap; }
  .marquee-track[aria-hidden] { display: flex; }
  .marquee.is-paused .marquee-track, .marquee:hover .marquee-track { animation-play-state: paused; }
}

/* ---------- A Dra. Liva ---------- */
.about-fig { grid-column: 1 / -1; margin: 0; width: 100%; max-width: 21rem; }
.about-fig img {
  object-position: 50% 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 88%, transparent 100%), linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 88%, transparent 100%), linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
}
.about-text { grid-column: 1 / -1; }
.about-text .h2 { max-width: 13em; }
.prose { max-width: 36rem; }
.pull {
  margin: clamp(2rem, 4vw, 3rem) 0; padding-left: 1.5rem;
  border-left: 1px solid var(--ouro); max-width: 30rem;
}
.pull p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.1rem); line-height: 1.2; letter-spacing: -.005em;
  margin: 0 0 .75rem;
}
.pull .pull-by { font: 500 .75rem/1.2 var(--font-body); font-style: normal; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-2); margin: 0; }
.personal { color: var(--fg-2); max-width: 34rem; }
.creds-list { margin: clamp(2rem, 4vw, 3rem) 0 0; border-top: 1px solid var(--line); max-width: 36rem; }
.creds-list div {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 1.5rem;
  padding: .9rem 0; border-bottom: 1px solid var(--line);
}
.creds-list dt { font: 500 .75rem/1.5 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-2); }
.creds-list div, .office-list div { align-items: baseline; }
.creds-list dd { margin: 0; font-size: 1rem; }
@media (min-width: 40rem) and (max-width: 63.9375rem) {
  .about-fig { grid-column: 1 / 6; max-width: none; }
  .about-text { grid-column: 6 / 13; }
}
@media (min-width: 64rem) {
  .about-fig { grid-column: 1 / 6; }
  .about-text { grid-column: 7 / 13; }
}

/* ---------- Procedimentos ---------- */
.proc-grid { row-gap: 0; }
.proc-lead { grid-column: 1 / -1; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.proc-figure { display: none; position: relative; }
.contour { width: 100%; height: auto; aspect-ratio: 566 / 641; overflow: visible; color: var(--ouro); transition: opacity .7s var(--ease); }
.contour path { stroke: currentColor; stroke-dasharray: 1; stroke-dashoffset: 0; }
.proc-tiles { display: none; }
.proc-index { list-style: none; grid-column: 1 / -1; border-top: 1px solid var(--line); }
.proc-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "name go" "list list";
  column-gap: 2rem; align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
}
.proc-name {
  grid-area: name;
  font: 400 clamp(1.75rem, 1rem + 2.4vw, 3.25rem)/1 var(--font-display);
  text-transform: uppercase; letter-spacing: .06em;
  transition: color .6s var(--ease), translate .7s var(--ease);
}
.proc-list { grid-area: list; margin: .85rem 0 0; color: var(--fg-2); font-size: .9375rem; line-height: 1.65; max-width: 36rem; display: flex; flex-wrap: wrap; column-gap: .35em; }
.proc-list span { white-space: nowrap; }
.proc-list span:not(:last-child)::after { content: " \00B7"; color: var(--taupe); }
.proc-row .link-arrow { grid-area: go; }
.proc-note { grid-column: 1 / -1; margin-top: 2rem; font-size: .9375rem; color: var(--fg-2); max-width: 36rem; }
@media (min-width: 64rem) {
  .proc-lead { grid-column: 1 / 8; }
  .proc-figure { display: block; grid-column: 8 / 13; grid-row: 1 / 4; margin: 0; align-self: start; position: sticky; top: calc(var(--header-h) + 1.5rem); }
  .proc-index { grid-column: 1 / 8; }
  .proc-note { grid-column: 1 / 8; }
  .proc-tiles { display: block; position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 11.5rem; aspect-ratio: 3 / 4; }
  .proc-tiles img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; clip-path: inset(0 0 100% 0);
    transition: opacity .5s var(--ease), clip-path .9s var(--ease);
  }
  .proc-figure[data-tile="mamas"] img[data-key="mamas"],
  .proc-figure[data-tile="contorno"] img[data-key="contorno"],
  .proc-figure[data-tile="face"] img[data-key="face"],
  .proc-figure[data-tile="intima"] img[data-key="intima"],
  .proc-figure[data-tile="nao-cirurgicos"] img[data-key="nao-cirurgicos"] { opacity: 1; clip-path: inset(0); }
  .proc-figure[data-tile="mamas"] .contour,
  .proc-figure[data-tile="contorno"] .contour,
  .proc-figure[data-tile="face"] .contour,
  .proc-figure[data-tile="intima"] .contour,
  .proc-figure[data-tile="nao-cirurgicos"] .contour { opacity: .2; }
}
@media (hover: hover) and (pointer: fine) {
  .proc-row:hover .proc-name { color: var(--taupe); translate: .5rem 0; }
}

/* ---------- Como é o cuidado ---------- */
.care-lead { grid-column: 1 / -1; }
.care-lead .h2 { max-width: 11em; }
.care-steps {
  list-style: none; grid-column: 1 / -1; position: relative;
  padding-left: 4rem;
}
.care-steps::before {
  content: ""; position: absolute; left: 1rem; top: 1rem; bottom: 1rem; width: 1px;
  background: var(--ouro); transform-origin: center top; opacity: .8;
}
.care-steps li { position: relative; padding: clamp(1.5rem, 3vw, 2.25rem) 0; border-bottom: 1px solid var(--line); }
.care-steps li:first-child { padding-top: .5rem; }
.care-steps .mark {
  position: absolute; left: -4rem; top: calc(clamp(1.5rem, 3vw, 2.25rem) - .1rem);
  width: 3rem; padding-block: .45rem; background: var(--espresso);
}
.care-steps li:first-child .mark { top: .4rem; }
.care-steps h3 { font: 400 clamp(1.5rem, 1rem + 1.4vw, 2.125rem)/1.1 var(--font-display); margin-bottom: .6rem; }
.care-steps p { color: var(--fg-2); max-width: 32rem; }
@media (min-width: 64rem) {
  .care-lead { grid-column: 1 / 6; }
  .care-steps { grid-column: 7 / 13; }
}

/* ---------- Expectativas ---------- */
.expect-title { grid-column: 1 / -1; }
.expect-title .h2 { max-width: 9.5em; margin-bottom: 0; }
.expect-body { grid-column: 1 / -1; max-width: 32rem; }
.rating-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2rem; padding: 1.1rem 0; border-block: 1px solid var(--line);
  text-decoration: none; color: var(--tinta);
  transition: color .5s var(--ease);
}
.rating-row .rating { padding: 0; background: none; }
.rating-row:hover .rating { color: var(--tinta); }
.rating-row .rating-go {
  font: 500 .6875rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--fg-2);
  display: inline-flex; align-items: center; gap: .6em;
}
.rating-row .rating-go::after {
  content: ""; width: 1.25rem; height: .5rem; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8' fill='none' stroke='%23000' stroke-width='1'%3E%3Cpath d='M0 4h19M15 .5 19 4l-4 3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8' fill='none' stroke='%23000' stroke-width='1'%3E%3Cpath d='M0 4h19M15 .5 19 4l-4 3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: translate .6s var(--ease);
}
.rating-row:hover .rating-go::after { translate: .35rem 0; }
@media (min-width: 64rem) {
  .expect-title { grid-column: 1 / 7; }
  .expect-body { grid-column: 8 / 13; padding-top: .6rem; }
}

/* ---------- A Dra. responde ---------- */
.qa-title { grid-column: 1 / -1; }
.qa-title .h2 { max-width: 10em; }
.qa { list-style: none; grid-column: 1 / -1; border-top: 1px solid var(--line); }
.qa a {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: start; gap: 1.25rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--line);
  font: 400 clamp(1.2rem, 1rem + .7vw, 1.5rem)/1.25 var(--font-display);
  color: var(--tinta); text-decoration: none;
  transition: color .5s var(--ease);
}
.qa .mark { width: 1.8rem; flex: none; margin-top: .2rem; transition: translate .6s var(--ease); }
.qa a > span:not(.qa-go) { text-wrap: pretty; }
.qa a:hover { color: var(--taupe-escuro); }
.qa a:hover .mark { translate: .3rem 0; }
.qa-go {
  position: relative; width: 1.25rem; height: .5rem; margin-top: .7rem; color: var(--fg-2);
  background: currentColor; opacity: 0; translate: -.5rem 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8' fill='none' stroke='%23000' stroke-width='1'%3E%3Cpath d='M0 4h19M15 .5 19 4l-4 3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8' fill='none' stroke='%23000' stroke-width='1'%3E%3Cpath d='M0 4h19M15 .5 19 4l-4 3.5'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: opacity .5s var(--ease), translate .5s var(--ease);
}
.qa a:hover .qa-go, .qa a:focus-visible .qa-go { opacity: 1; translate: 0 0; }
@media (hover: none) { .qa-go { opacity: 1; translate: 0 0; } }
@media (max-width: 40rem) { .qa a { grid-template-columns: auto minmax(0, 1fr); } .qa-go { display: none; } }
@media (min-width: 64rem) {
  .qa-title { grid-column: 1 / 6; }
  .qa { grid-column: 7 / 13; }
}

/* ---------- Instagram ---------- */
.insta { padding-bottom: calc(var(--sec-pad) * .8); }
.insta-head { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.insta-title { font: 400 clamp(1.5rem, 1rem + 1.6vw, 2.4rem)/1.15 var(--font-display); letter-spacing: -.01em; }
.insta-title .muted { font-size: .62em; display: block; margin-top: .5rem; font-family: var(--font-body); letter-spacing: .02em; }
.insta-title .at { font: 400 .8em/1 var(--font-body); vertical-align: .05em; }
.rail-wrap {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  /* o trilho sangra, mas o primeiro tile começa no fio da grade */
  --rail-start: calc(max(0px, (100% - var(--wrap)) / 2) + var(--gutter));
  scrollbar-width: none; padding-inline: var(--rail-start); scroll-padding-inline: var(--rail-start);
  -webkit-overflow-scrolling: touch;
}
.rail-wrap::-webkit-scrollbar { display: none; }
.rail { list-style: none; display: flex; gap: 1rem; flex: none; padding-right: 1rem; }
.rail li { flex: none; width: 10.5rem; scroll-snap-align: start; }
.rail a { display: block; overflow: hidden; }
.rail img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; transition: scale 1.2s var(--ease); }
.rail a:hover img { scale: 1.04; }
.rail-dup { display: none; }
@media (min-width: 64rem) and (prefers-reduced-motion: no-preference) {
  .rail-wrap { overflow: hidden; scroll-snap-type: none; }
  .rail { animation: slide 96s linear infinite; }
  .rail-dup { display: flex; }
  .rail-wrap.is-paused .rail, .rail-wrap:hover .rail, .rail-wrap:focus-within .rail { animation-play-state: paused; }
}
@media (min-width: 64rem) {
  .insta-head { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .insta-head .sec-head { grid-column: 1 / -1; }
}

/* ---------- Consultório ---------- */
.office-info { grid-column: 1 / -1; }
.office-info .h2 { max-width: 9em; }
.addr { font-size: 1.125rem; line-height: 1.55; margin-bottom: 1.5rem; }
.office-list { margin: 0 0 2rem; border-top: 1px solid var(--line); max-width: 30rem; }
.office-list div { display: grid; grid-template-columns: 7rem minmax(0, 1fr); gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.office-list dt { font: 500 .75rem/1.6 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-2); }
.office-list dd { margin: 0; }
.map-frame { grid-column: 1 / -1; border: 1px solid var(--line); padding: .75rem; background: var(--linho); position: relative; }
.map-fallback {
  position: absolute; inset: .75rem; display: grid; place-content: center; justify-items: center; gap: .6rem;
  text-align: center; font-family: var(--font-body); color: var(--fg-2);
}
.map-fallback address { font-style: normal; font-size: .9375rem; line-height: 1.6; }
.map-fallback .map-go { font: 500 .75rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); }
.map-frame iframe { display: block; position: relative; width: 100%; height: auto; aspect-ratio: 4 / 3; border: 0; filter: grayscale(1) sepia(.22) contrast(.95); }
@media (min-width: 64rem) {
  .office-info { grid-column: 1 / 6; }
  .map-frame { grid-column: 7 / 13; align-self: start; }
}

/* ---------- Agendar ---------- */
.book-body { grid-column: 1 / -1; }
.book-body .h2 { max-width: 8em; }
.book-body .deck-sm { margin-bottom: 2.25rem; }
.book-body .cta-row { margin-bottom: 1.5rem; }
.phone { font: 400 1.125rem/1.4 var(--font-body); color: var(--fg-2); }
.book-aside { grid-column: 1 / -1; display: grid; align-content: start; gap: 1rem; padding-top: .5rem; }
.book-aside .mark { width: 3.5rem; margin-bottom: .5rem; }
.book-aside p { font-size: .9375rem; color: var(--fg-2); max-width: 22rem; }
@media (min-width: 64rem) {
  .book-body { grid-column: 1 / 8; }
  .book-aside { grid-column: 9 / 13; padding-top: calc(clamp(1.75rem, 3vw, 2.75rem) + 1.2rem); }
}

/* ---------- rodapé ---------- */
.site-footer {
  background: var(--espresso); color: var(--porcelana);
  --line: var(--line-dark); --fg-2: #D9CFC3; --rule: var(--ouro);
  padding-block: clamp(4rem, 8vw, 6.5rem) 2rem;
}
.footer-grid { row-gap: 3rem; }
.footer-brand { grid-column: 1 / -1; }
.footer-mark { width: clamp(6rem, 9vw, 8rem); height: auto; aspect-ratio: 708 / 558; color: var(--ouro); margin-bottom: 2rem; }
.footer-mark .lt-ink { fill: none; stroke: currentColor; stroke-width: 14; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
#lt-f1 { stroke-dasharray: 1280; stroke-dashoffset: 0; }
#lt-f2 { stroke-dasharray: 270; stroke-dashoffset: 0; }
.footer-col { grid-column: 1 / -1; display: grid; gap: .6rem; align-content: start; font-size: .9375rem; }
.footer-col .eyebrow { margin-bottom: .5rem; }
.footer-col a { color: inherit; }
.footer-sign { grid-column: 1 / -1; display: flex; align-items: end; }
.footer-sign .signature { rotate: -4deg; transform-origin: left bottom; }
.footer-bottom {
  width: calc(100% - 2 * var(--gutter)); max-width: calc(var(--wrap) - 2 * var(--gutter)); padding-inline: 0;
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; flex-wrap: wrap;
  font-size: .8125rem; color: var(--fg-2);
}
.footer-bottom nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-bottom nav a {
  font: 500 .6875rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-2); text-decoration: none; padding: .75rem 0;
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
  transition: background-size .6s var(--ease);
}
.footer-bottom nav a:hover { background-size: 100% 1px; }
.footer-bottom .credit { font-size: .8125rem; color: color-mix(in oklch, var(--porcelana) 72%, var(--espresso)); }
.footer-bottom .credit a {
  color: var(--ouro); font-weight: 500; text-decoration: none;
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
  transition: background-size .5s var(--ease);
}
.footer-bottom .credit a:hover, .footer-bottom .credit a:focus-visible { background-size: 100% 1px; }
.demo-line { margin: 0; }
@media (min-width: 64rem) {
  .footer-brand { grid-column: 1 / 6; }
  .footer-col { grid-column: span 3; }
  .footer-col:last-of-type { grid-column: span 2; }
  .footer-sign { grid-column: 1 / 6; margin-top: -1rem; }
}

/* ---------- cursor e magnético (só ponteiro fino) ---------- */
@media (hover: hover) and (pointer: fine) {
  .cursor { position: fixed; left: 0; top: 0; z-index: 200; pointer-events: none; opacity: 0; transition: opacity .4s var(--ease); }
  .cursor.is-on { opacity: 1; }
  .cursor-dot { position: fixed; left: -4px; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--ouro); }
  .cursor-ring {
    position: fixed; left: -18px; top: -18px; width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--ouro);
    transition: scale .6s var(--ease), opacity .4s var(--ease);
  }
  .cursor.is-link .cursor-ring { scale: 1.7; opacity: .7; }
}

/* ---------- movimento: entrada (tempo) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-fig::after { animation: curtain 1.1s var(--ease) var(--intro-delay) both; }
  .h1-in { animation: rise-in .9s var(--ease) calc(var(--intro-delay) + .1s) both; }
  .h1-line2 .h1-in { animation-delay: calc(var(--intro-delay) + .24s); }
  .h1-stroke path { animation: draw-path 1s var(--ease) calc(var(--intro-delay) + .95s) both; }
  .hero-text .eyebrow { animation: fade-in .8s var(--ease) var(--intro-delay) both; }
  .hero-text > :not(.h1, .eyebrow) { animation: fade-in .9s var(--ease) calc(var(--intro-delay) + .55s) both; }
  .hero-sign { animation: fade-in 1s var(--ease) calc(var(--intro-delay) + 1.25s) both; }
  .footer-mark.write .lt-fill { animation: fade-in .4s var(--ease) .95s both; }
  .footer-mark.write #lt-f1 { opacity: 1; animation: lt-write-1 .9s cubic-bezier(.45, 0, .2, 1) both, ink-out .35s ease-out 1.1s forwards; }
  .footer-mark.write #lt-f2 { opacity: 1; animation: lt-write-2 .3s ease-out .85s both, ink-out .35s ease-out 1.15s forwards; }
  .magnetic { transition: translate .7s var(--spring), background-color .6s var(--ease), border-color .6s var(--ease); }

  /* menu móvel: entra com @starting-style */
  .menu { transition: opacity .5s var(--ease), translate .6s var(--ease), display .6s allow-discrete, overlay .6s allow-discrete; }
  .menu:not([open]) { opacity: 0; translate: 0 1.25rem; }
  .menu[open] { opacity: 1; translate: 0 0; }
  @starting-style { .menu[open] { opacity: 0; translate: 0 1.25rem; } }

  /* transições entre páginas */
  @view-transition { navigation: auto; }
  ::view-transition { background: var(--porcelana); }
  ::view-transition-old(root) { animation: vt-out .38s var(--ease) both; }
  ::view-transition-new(root) { animation: vt-in .38s var(--ease) both; }
  ::view-transition-group(header), ::view-transition-group(page-title) { animation-duration: .38s; animation-timing-function: var(--ease); }
}

/* ---------- movimento: revelações disparadas ao entrar na tela ----------
   A classe html.reveal só existe com JS + IntersectionObserver + motion-ok.
   Sem ela, tudo já nasce no estado final. */
html.reveal [data-reveal] { opacity: 0; translate: 0 1.25rem; transition: opacity .9s var(--ease), translate .9s var(--ease); }
html.reveal [data-reveal].in { opacity: 1; translate: 0 0; }
html.reveal [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
html.reveal [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
html.reveal [data-reveal]:nth-child(4) { transition-delay: 0.18s; }
html.reveal [data-reveal]:nth-child(5) { transition-delay: 0.24s; }
html.reveal [data-reveal]:nth-child(6) { transition-delay: 0.3s; }
html.reveal [data-reveal]:nth-child(7) { transition-delay: 0.36s; }
html.reveal [data-reveal]:nth-child(8) { transition-delay: 0.42s; }
html.reveal [data-reveal]:nth-child(9) { transition-delay: 0.48s; }
html.reveal [data-reveal]:nth-child(10) { transition-delay: 0.54s; }
html.reveal .reveal-clip { clip-path: inset(0 100% 0 0); transition: clip-path 1.2s var(--ease); }
html.reveal .reveal-clip.in { clip-path: inset(0 0 0 0); }
html.reveal .sec-head .rule { scale: 0 1; transition: scale 1.4s var(--ease) .1s; }
html.reveal .sec-head.in .rule { scale: 1 1; }
html.reveal .contour path { stroke-dashoffset: 1; transition: stroke-dashoffset 1.8s var(--ease); }
html.reveal .contour path:nth-child(2) { transition-delay: .12s; }
html.reveal .contour path:nth-child(3) { transition-delay: .24s; }
html.reveal .contour path:nth-child(4) { transition-delay: .36s; }
html.reveal .contour path:nth-child(5) { transition-delay: .48s; }
html.reveal .contour path:nth-child(6) { transition-delay: .6s; }
html.reveal .proc-figure.in .contour path { stroke-dashoffset: 0; }
html.reveal .care-steps::before { scale: 1 0; transition: scale 1.8s var(--ease) .2s; }
html.reveal .care-steps.in::before { scale: 1 1; }

/* ---------- movimento: guiado por scroll (só o que não esconde conteúdo) ---------- */
@keyframes drift { to { translate: 0 9vh; } }
@keyframes turn { from { rotate: -4deg; } to { rotate: 4deg; } }
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-fig { animation: drift linear both; animation-timeline: scroll(root); animation-range: 0 100vh; }
    .proc-grid { view-timeline-name: --proc; }
    .contour { animation: turn linear both; animation-timeline: --proc; animation-range: cover 0% cover 100%; }
  }
}

/* ---------- reduced motion: tudo nasce no estado final ---------- */
@media (prefers-reduced-motion: reduce) {
  :root { --intro-delay: 0s; }
  .intro { display: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- móvel ---------- */
@media (max-width: 63.99rem) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .hero { min-height: 0; display: block; }
  .hero-sign { left: 2%; bottom: 10%; }
  .h1-line2 { margin-left: .45em; }
  .sticky { position: static; }
}
@media (max-width: 40rem) {
  .hero .cta-row { gap: .75rem 1.5rem; }
  .creds-list div, .office-list div { grid-template-columns: 1fr; gap: .25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
/* sem JS: o menu móvel vira lista simples (a classe .js vem do script inline do head) */
html:not(.js) .menu-btn { display: none; }
html:not(.js) .nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: flex-end; }

/* impressão: nada fica escondido à espera de uma revelação */
@media print {
  html.reveal [data-reveal], html.reveal .reveal-clip, html.reveal .sec-head .rule, html.reveal .contour path, html.reveal .care-steps::before {
    opacity: 1 !important; translate: none !important; scale: none !important; clip-path: none !important;
    stroke-dashoffset: 0 !important; transition: none !important;
  }
  .intro, .cursor, .marquee-track[aria-hidden], .rail-dup, .proc-tiles { display: none !important; }
  .site-header, .sticky { position: static; }
}
