/* ============================================================
   Clínica Dalboni — redesign
   Paleta: espresso #2B2220 · marrom #4A3A30 · creme #F5EFE6
           areia #EAE0D2 · ouro #C9A36A · champagne #E3C795
   Tipografia: Marcellus (display) · Figtree (texto)
   ============================================================ */

:root {
  --espresso: #2B2220;
  --espresso-2: #382E2A;
  --marrom: #4A3A30;
  --creme: #F5EFE6;
  --areia: #EAE0D2;
  --areia-2: #F0E8DB;
  --ouro: #C9A36A;
  --champagne: #E3C795;
  --ouro-deep: #7E5C2B;          /* ouro legível sobre fundos claros (WCAG AA) */
  --accent-text: var(--ouro-deep); /* seções escuras sobrescrevem para --ouro */
  --mauve: #8A7B7E;
  --ink: #33291f;
  --ink-soft: #6b5d4f;
  --branco-quente: #FBF8F2;

  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Figtree', 'Helvetica Neue', sans-serif;

  --container: 1200px;
  --nav-h: 84px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--creme);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection { background: var(--ouro); color: var(--espresso); }

/* ---------- Tipos ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }

h1 { font-size: clamp(2.6rem, 5.2vw, 4.3rem); letter-spacing: .01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: .01em; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }

h1 em, h2 em { font-style: italic; color: var(--accent-text); }

.hero, .s-metodo, .s-cta-final, .footer { --accent-text: var(--ouro); }

.eyebrow {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-text);
}

.dia {
  display: inline-block; width: 7px; height: 7px;
  background: var(--ouro); transform: rotate(45deg);
  vertical-align: middle; margin-right: .6rem; margin-top: -2px;
}

/* ---------- Layout base ---------- */

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: 860px; }

.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(3rem, 5vw, 4.5rem); }
.sec-head .eyebrow { margin-bottom: 1.1rem; }
.sec-head h2 { margin-bottom: 1.1rem; }
.sec-lead { font-size: 1.08rem; color: var(--ink-soft); font-weight: 300; }
.sec-head-left { text-align: left; margin-left: 0; }

.sec-cta { text-align: center; margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.cta-note { margin-top: .9rem; font-size: .85rem; color: var(--ink-soft); }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.9rem;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  border-radius: 100px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, .node:focus-visible {
  outline: 2px solid var(--ouro); outline-offset: 3px; border-radius: 4px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--champagne), var(--ouro));
  color: var(--espresso);
  box-shadow: 0 10px 28px -12px rgba(201, 163, 106, .65);
}
.btn-gold:hover { box-shadow: 0 16px 36px -12px rgba(201, 163, 106, .8); }

.btn-dark {
  background: var(--espresso); color: var(--creme);
  box-shadow: 0 10px 28px -14px rgba(43, 34, 32, .5);
}
.btn-dark:hover { background: var(--marrom); }

.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

.link-quiet {
  font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.link-quiet:hover { color: var(--accent-text); border-color: var(--accent-text); }

/* ---------- Voo do logo ---------- */

.flight-canvas {
  position: fixed; inset: 0; z-index: 149;
  width: 100%; height: 100%;
  pointer-events: none;
}
.logo-flyer {
  position: fixed; left: 0; top: 0;
  width: 112px; height: auto;
  z-index: 150;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
/* o logo real da nav só aparece quando o voador pousa */
html.js .nav-logo img { opacity: 0; }
body.logo-landed .nav-logo img { opacity: 1; transition: opacity .3s ease-out; }

/* ---------- Cursor custom ---------- */

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-200px, -200px);
  mix-blend-mode: normal;
}
.cursor-dot { width: 7px; height: 7px; background: var(--ouro); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.2px solid rgba(201, 163, 106, .65);
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              border-color .3s, background .3s;
}
body.cursor-on { cursor: none; }
body.cursor-on a, body.cursor-on button, body.cursor-on summary { cursor: none; }
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(201, 163, 106, .95);
  background: rgba(201, 163, 106, .08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(43, 34, 32, 0);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.solid {
  background: rgba(43, 34, 32, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(227, 199, 149, .14);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: var(--nav-h);
  display: flex; align-items: center; gap: 2rem;
  transition: height .4s var(--ease-out);
}
.nav.solid .nav-inner { height: 66px; }

.nav-logo img { height: 52px; width: auto; transition: height .4s var(--ease-out); }
.nav.solid .nav-logo img { height: 44px; }

.nav-links {
  display: flex; align-items: center; gap: 1.6rem;
  margin-left: auto;
}
.nav-links > a, .nav-drop > button {
  font-size: .82rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--creme); opacity: .85;
  padding: .4rem 0;
  transition: opacity .3s, color .3s;
  display: inline-flex; align-items: center; gap: .35rem;
}
.nav-links > a:hover, .nav-drop > button:hover { opacity: 1; color: var(--champagne); }

.chev {
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--espresso-2);
  border: 1px solid rgba(227, 199, 149, .18);
  border-radius: 14px;
  padding: .6rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out), visibility .3s;
  box-shadow: 0 24px 48px -18px rgba(0, 0, 0, .5);
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block; padding: .65rem .9rem;
  font-size: .88rem; color: var(--creme);
  border-radius: 9px;
  transition: background .25s, color .25s;
}
.nav-drop-menu a:hover { background: rgba(201, 163, 106, .14); color: var(--champagne); }

.nav-cta { flex: none; padding: .75rem 1.4rem; font-size: .85rem; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: .5rem; margin-left: auto; }
.nav-burger span {
  width: 24px; height: 1.6px; background: var(--creme);
  transition: transform .35s var(--ease-out), opacity .3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--espresso);
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  justify-content: flex-start;
  padding: calc(var(--nav-h) + 4vh) 1.5rem 3rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility .4s;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.45rem; color: var(--creme);
}
.nav-mobile a.btn { font-family: var(--font-body); font-size: 1rem; margin-top: 1rem; }
@media (min-height: 700px) { .nav-mobile { justify-content: center; padding-top: var(--nav-h); } }
@media (max-height: 500px) { .nav-mobile { gap: .7rem; } .nav-mobile a { font-size: 1.15rem; } }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  background:
    radial-gradient(120% 110% at 12% 18%, #4A3A30 0%, #382E2A 48%, #2B2220 100%);
  color: var(--creme);
  overflow: hidden;
}
.hero::after {
  /* granulado sutil */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  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='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 2.5rem) 0;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  flex: 1;
  width: 100%;
}

.hero-copy .eyebrow { margin-bottom: 1.6rem; }

.hero-title { margin-bottom: 1.6rem; color: var(--branco-quente); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  animation: rise 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: .15s; }
.hero-title .line:nth-child(2) > span { animation-delay: .28s; }
.hero-title .line:nth-child(3) > span { animation-delay: .41s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-title .line-kicker > span {
  font-family: var(--font-body);
  font-size: clamp(.82rem, 1.1vw, .95rem); font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: .9rem;
}

.hero-lead {
  max-width: 46ch;
  font-weight: 300; font-size: 1.06rem;
  color: rgba(245, 239, 230, .78);
  margin-bottom: 2.2rem;
  opacity: 0; animation: fadeUp .9s var(--ease-out) .6s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp .9s var(--ease-out) .75s forwards;
}
.hero-actions .link-quiet { color: rgba(245, 239, 230, .6); }
.hero-actions .link-quiet:hover { color: var(--champagne); }

.hero-cred {
  font-size: .78rem; letter-spacing: .08em; color: rgba(245, 239, 230, .68);
  max-width: 52ch;
  opacity: 0; animation: fadeUp .9s var(--ease-out) .9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- véu de entrada --- */

.veil {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
}
.veil canvas { width: 100%; height: 100%; display: block; }
.veil.done { display: none; }
html:not(.js) .veil { display: none; }

/* --- poeira dourada (canvas do hero) --- */

.dust {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* --- arte do hero: retrato --- */

.hero-art {
  position: relative;
  align-self: end;
  display: flex; align-items: flex-end; justify-content: center;
  height: 100%;
  user-select: none; -webkit-user-select: none;
  opacity: 0; animation: fadeUp 1.4s var(--ease-out) .35s forwards;
}
.hero-glow {
  position: absolute; left: 50%; top: 42%;
  width: min(46vw, 640px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(227, 199, 149, .16) 0%, rgba(227, 199, 149, .05) 42%, transparent 68%);
  pointer-events: none;
}
.hero-portrait {
  position: relative;
  width: min(100%, 520px, calc((100svh - 240px) * 0.667));
  height: auto;
  filter: saturate(.96) contrast(1.02)
          drop-shadow(0 18px 60px rgba(0, 0, 0, .55))
          drop-shadow(0 0 90px rgba(227, 199, 149, .10));
  -webkit-mask-image: linear-gradient(180deg, #000 88%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 88%, transparent 99%);
}

/* --- ticker --- */

.ticker {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(227, 199, 149, .16);
  padding: 1rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex; align-items: center; gap: 2.4rem;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker-track span:not(.dia) {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245, 239, 230, .68);
  white-space: nowrap;
}
.ticker-track .dia { opacity: .5; width: 5px; height: 5px; margin: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sintomas ---------- */

.s-sintomas { background: var(--creme); }

.sym-list { border-top: 1px solid rgba(74, 58, 48, .14); }

.sym-row {
  display: grid;
  grid-template-columns: 64px minmax(0, .9fr) minmax(0, 1.1fr) 40px;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) .5rem;
  border-bottom: 1px solid rgba(74, 58, 48, .14);
  position: relative;
  transition: background .35s;
}
.sym-row::before {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--ouro);
  transition: width .6s var(--ease-out);
}
.sym-row:hover::before { width: 100%; }
.sym-row:hover { background: rgba(201, 163, 106, .05); }

.sym-glyph { color: var(--ouro); width: 44px; }
.sym-glyph svg { width: 44px; height: 44px; transition: transform .45s var(--ease-out); }
.sym-row:hover .sym-glyph svg { transform: scale(1.12) rotate(-4deg); }

.sym-main h3 { margin-bottom: .2rem; transition: color .3s; }
.sym-row:hover .sym-main h3 { color: var(--marrom); }
.sym-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-text);
}

.sym-symptoms { display: grid; gap: .35rem; }
.sym-symptoms li {
  position: relative; padding-left: 1.1rem;
  font-size: .92rem; color: var(--ink-soft); font-weight: 300;
}
.sym-symptoms li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; background: var(--ouro);
  transform: rotate(45deg);
}

.sym-arrow {
  font-size: 1.3rem; color: var(--ouro);
  transition: transform .4s var(--ease-out);
}
.sym-row:hover .sym-arrow { transform: translateX(6px); }

/* ---------- Medicina integrada ---------- */

.s-metodo {
  background:
    radial-gradient(110% 120% at 85% 10%, #4A3A30 0%, #382E2A 55%, #2B2220 100%);
  color: var(--creme);
}
.s-metodo .sec-lead { color: rgba(245, 239, 230, .68); }
.s-metodo h2 { color: var(--branco-quente); }

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.pillar {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid rgba(227, 199, 149, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .4s, background .4s, transform .5s var(--ease-out);
}
.pillar:hover {
  border-color: rgba(227, 199, 149, .45);
  background: rgba(201, 163, 106, .06);
  transform: translateY(-6px);
}
.pillar-glyph { width: 44px; height: 44px; color: var(--champagne); margin-bottom: 1.4rem; }
.pillar h3 { margin-bottom: .8rem; color: var(--branco-quente); }
.pillar p { font-size: .95rem; font-weight: 300; color: rgba(245, 239, 230, .68); }

.metodo-quote {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}
.metodo-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-style: italic;
  color: var(--champagne);
  max-width: 30ch; margin: 0 auto .8rem;
}
.metodo-quote cite {
  font-style: normal; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245, 239, 230, .5);
}

/* ---------- Bio ---------- */

.s-bio { background: linear-gradient(180deg, var(--areia) 0%, var(--areia-2) 100%); }

.bio-grid {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.bio-photo { position: relative; will-change: transform; }
.bio-photo img {
  border-radius: 20px;
  box-shadow: 0 32px 64px -24px rgba(43, 34, 32, .45);
}
.bio-creds {
  position: absolute; right: -1.5rem; bottom: 2rem;
  width: min(320px, 88%);
  background: var(--branco-quente);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 24px 48px -20px rgba(43, 34, 32, .35);
}
.creds-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: .7rem;
}
.bio-creds li {
  position: relative; padding-left: 1rem;
  font-size: .84rem; color: var(--ink-soft);
  margin-bottom: .35rem;
}
.bio-creds li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 4px; height: 4px; background: var(--ouro); transform: rotate(45deg);
}

.bio-copy > p { color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 56ch; }
.bio-copy .sec-head { margin-bottom: 1.6rem; }

.bio-stats {
  display: flex; gap: 1.2rem; margin: 2rem 0;
}
.stat {
  flex: 1; max-width: 220px;
  background: var(--branco-quente);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 16px 40px -20px rgba(43, 34, 32, .25);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.stat:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(43, 34, 32, .35); }
.stat-n {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem; color: var(--marrom); line-height: 1.1;
}
.stat-l { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Como funciona ---------- */

.s-jornada { background: var(--creme); }

.steps {
  max-width: 680px; margin: 0 auto;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ouro) 12%, var(--ouro) 88%, transparent);
  opacity: .5;
}
.step {
  display: flex; gap: clamp(1.4rem, 3vw, 2.2rem);
  padding: 1.4rem 0;
  position: relative;
}
.step-n {
  flex: none;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border: 1px solid var(--ouro);
  border-radius: 50%;
  background: var(--creme);
  font-family: var(--font-body);
  font-size: .92rem; font-weight: 600; letter-spacing: .08em; color: var(--marrom);
  position: relative; z-index: 1;
  transition: background .35s, color .35s, transform .35s var(--ease-out);
}
.step:hover .step-n { background: var(--ouro); color: var(--espresso); transform: scale(1.08); }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-weight: 300; max-width: 52ch; }

/* ---------- Blog ---------- */

.s-blog { background: linear-gradient(180deg, var(--areia-2) 0%, var(--creme) 100%); }

.blog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.blog-card {
  display: flex; flex-direction: column; gap: .7rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--branco-quente);
  border-radius: 18px;
  border: 1px solid rgba(74, 58, 48, .08);
  box-shadow: 0 12px 32px -20px rgba(43, 34, 32, .2);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s;
  will-change: transform;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 163, 106, .5);
  box-shadow: 0 24px 48px -20px rgba(43, 34, 32, .3);
}
.blog-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-text);
}
.blog-card h3 { font-size: 1.12rem; line-height: 1.3; }
.blog-desc { font-size: .88rem; color: var(--ink-soft); font-weight: 300; flex: 1; }
.blog-link {
  font-size: .85rem; font-weight: 600; color: var(--marrom);
  transition: color .3s, transform .3s;
}
.blog-card:hover .blog-link { color: var(--ouro); }

/* ---------- FAQ ---------- */

.s-faq { background: var(--creme); }

.faq-list { display: grid; gap: .8rem; }

.faq-item {
  background: var(--branco-quente);
  border: 1px solid rgba(74, 58, 48, .1);
  border-radius: 14px;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: rgba(201, 163, 106, .5); box-shadow: 0 16px 36px -24px rgba(43, 34, 32, .3); }

.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 600; font-size: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-ico {
  flex: none; position: relative; width: 26px; height: 26px;
  border: 1px solid var(--ouro); border-radius: 50%;
}
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--ouro);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease-out);
}
.faq-ico::before { width: 10px; height: 1.4px; }
.faq-ico::after { width: 1.4px; height: 10px; }
.faq-item[open] .faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item p {
  padding: 0 1.5rem 1.3rem;
  color: var(--ink-soft); font-weight: 300; font-size: .95rem;
  max-width: 68ch;
}

/* ---------- CTA final ---------- */

.s-cta-final {
  background:
    radial-gradient(85% 90% at 50% 42%, #4A3A30 0%, #382E2A 52%, #2B2220 100%);
  color: var(--creme);
  text-align: center;
}
.s-cta-final .eyebrow { margin-bottom: 1.2rem; }
.s-cta-final h2 { max-width: 22ch; margin: 0 auto 1.2rem; color: var(--branco-quente); }
.s-cta-final .sec-lead { max-width: 54ch; margin: 0 auto; color: rgba(245, 239, 230, .68); }
.s-cta-final .cta-note { color: rgba(245, 239, 230, .55); }

/* ---------- Footer ---------- */

.footer {
  background: var(--espresso);
  color: rgba(245, 239, 230, .75);
  padding-top: clamp(3.5rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.f-brand img { width: 124px; margin-bottom: 1.2rem; }
.f-tag {
  font-family: var(--font-display);
  font-size: 1.05rem; color: var(--champagne);
  letter-spacing: .04em; margin-bottom: .8rem;
}
.f-sub { font-size: .85rem; font-weight: 300; color: rgba(245, 239, 230, .5); }

.f-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ouro); margin-bottom: 1.1rem;
}
.f-col { display: flex; flex-direction: column; gap: .5rem; }
.f-col a, .f-col p { font-size: .9rem; font-weight: 300; color: rgba(245, 239, 230, .7); }
.f-col a { transition: color .3s; width: fit-content; }
.f-col a:hover { color: var(--champagne); }

.footer-legal {
  border-top: 1px solid rgba(227, 199, 149, .14);
  padding: 1.4rem 0;
}
.footer-legal p {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  font-size: .76rem; font-weight: 300; text-align: center;
  color: rgba(245, 239, 230, .6);
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 90;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px -12px rgba(43, 34, 32, .55);
  transition: transform .35s var(--ease-out), box-shadow .35s, opacity .35s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float.hidden { opacity: 0; pointer-events: none; transform: scale(.6); }
html:not(.js) .wa-float.hidden { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- Entre na clínica (scroll-zoom) ---------- */

.s-clinica {
  position: relative;
  height: 500vh;
  background: var(--espresso);
}
.clinica-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
}
.clinica-stage {
  position: absolute; inset: 0;
  opacity: 0;
  will-change: transform, opacity;
}
.clinica-stage img,
.clinica-stage video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: 50% 45%;
  will-change: transform;
}
/* pan lateral: imagem mais larga que a tela, desliza para a direita */
.clinica-stage[data-motion="pan"] img {
  width: 128%; max-width: none;
}

/* estágios em moldura: foto centrada no campo espresso, sem ampliação de tela cheia */
.clinica-stage[data-motion="kenburns"],
.clinica-stage[data-motion="frame"],
.clinica-stage[data-motion="frame-pan"] {
  background:
    radial-gradient(80% 90% at 50% 45%, #4A3A30 0%, #382E2A 55%, #2B2220 100%);
  display: flex; align-items: center; justify-content: center;
}
.kb-frame-tall { aspect-ratio: 3 / 4; }
/* pan: moldura mais estreita que a foto → sobra lateral para deslizar o recorte */
.clinica-stage[data-motion="frame-pan"] .kb-frame { aspect-ratio: 7 / 10; }
.kb-frame {
  position: relative;
  height: min(78svh, 92%);
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .7), 0 0 0 1px rgba(227, 199, 149, .18);
}
.kb-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.stage-caption {
  position: absolute; left: 50%; bottom: clamp(4rem, 8vh, 6.5rem);
  transform: translateX(-50%);
  max-width: min(88vw, 680px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--branco-quente);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .6);
  padding: .8rem 1.6rem;
  background: rgba(43, 34, 32, .48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(227, 199, 149, .22);
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0; translate: 0 14px;
  transition: opacity .5s var(--ease-out), translate .5s var(--ease-out);
}
.stage-caption .dia { margin-right: .55rem; }
.clinica-stage.cap-on .stage-caption { opacity: 1; translate: 0 0; }

.clinica-scrim {
  position: absolute; inset: 0; z-index: 10; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(43, 34, 32, .78) 0%, rgba(43, 34, 32, .3) 20%, transparent 32%);
}
.clinica-head {
  position: absolute; top: calc(var(--nav-h) + 1.2rem); left: 0; right: 0; z-index: 11;
  text-align: center;
  color: var(--branco-quente);
  --accent-text: var(--ouro);
}
.clinica-head .eyebrow { margin-bottom: .6rem; }
.clinica-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.clinica-head h2 em { color: var(--champagne); }

.clinica-dots {
  position: absolute; right: clamp(1.2rem, 3vw, 2.4rem); top: 50%; z-index: 11;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: .7rem;
}
.cdot {
  width: 8px; height: 8px;
  border: 1px solid rgba(227, 199, 149, .7);
  transform: rotate(45deg);
  transition: background .3s, transform .3s;
}
.cdot.on { background: var(--champagne); transform: rotate(45deg) scale(1.25); }

html:not(.js) .s-clinica { height: auto; }
html:not(.js) .clinica-sticky { position: static; height: auto; }
html:not(.js) .clinica-stage { position: static; opacity: 1; }
html:not(.js) .clinica-stage img, html:not(.js) .clinica-stage video { height: 60vh; width: 100%; }
html:not(.js) .stage-caption { position: static; transform: none; opacity: 1; margin: .8rem 0 1.6rem; }

/* ---------- Reveals ---------- */

/* Reveal só quando o JS está presente (html.js) — sem JS, tudo visível */
html.js .rv {
  opacity: 0; transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 100ms);
}
html.js .rv.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsivo ---------- */

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 2rem); gap: 3rem; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .pillars { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 480px; margin: 0 auto; }
  .bio-creds { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .sym-row { grid-template-columns: 44px 1fr; grid-template-areas: "g main" "sym sym"; row-gap: 1rem; }
  .sym-glyph { grid-area: g; }
  .sym-main { grid-area: main; }
  .sym-symptoms { grid-area: sym; }
  .sym-arrow { display: none; }
}

@media (max-width: 640px) {
  .stage-caption { white-space: normal; border-radius: 18px; width: max-content; max-width: 86vw; }

  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bio-stats { flex-direction: column; }
  .stat { max-width: none; }
  .bio-creds { position: static; width: auto; margin-top: 1rem; }
  .hero { min-height: auto; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.15rem; }
}

/* ---------- Acessibilidade / reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-title .line > span { transform: none; }
  .hero-lead, .hero-actions, .hero-cred, .hero-art { opacity: 1; }
  .dust, .veil { display: none; }
  html.js .rv { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
