/* =========================================================================
   Dra. Gesiane Sperfeld — Landing Page
   Conceito: luxo discreto (quiet luxury) · preto + rosé + dourado bronze
   Cores alinhadas ao manual oficial da marca (Opção B — tema escuro mantido):
     dourado bronze #A68759 · rosé #E6CECA · creme off-white #F4F1EA · preto
   Fontes: Cormorant Garamond (títulos) · Jost (corpo) · Marcellus (rótulos)
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* cores */
  --preto:        #1F2124;
  --preto-puro:   #0C0C0D;
  --dourado:      #A68759;   /* dourado bronze oficial da marca */
  --dourado-esc:  #906836;   /* bronze mais profundo (hover/sombras) */
  --dourado-contraste: #855D2C;
  --dourado-profundo:  #664216;
  --nude:         #E6CECA;   /* rosé oficial da marca (cor-assinatura feminina) */
  --creme:        #F4F1EA;   /* creme off-white oficial */
  --marfim:       #F4F1EA;   /* unificado ao creme oficial */
  --branco:       #FFFFFF;
  --cinza:        #D5D8DC;
  --cinza-esc:    #8A8F96;
  --verde-wpp:    #2E5725;
  --erro:         #9B2C2C;

  /* fontes */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Jost', system-ui, sans-serif;
  --f-label:   'Marcellus', serif;

  /* layout */
  --container: 1200px;
  --pad-secao: clamp(2.9rem, 6.4vw, 7rem);
  --radius: 4px;
  --transicao: .45s cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--f-body);
  font-size: clamp(1rem, .55vw + .9rem, 1.125rem);
  line-height: 1.7;
  color: var(--cinza);
  background: var(--preto);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.08; color: var(--creme); letter-spacing: .005em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); font-weight: 500; }
.dourado { color: var(--dourado); }
.italico { font-style: italic; }

.overline {
  font-family: var(--f-label);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: clamp(.72rem, 1vw, .82rem);
  color: var(--dourado);
  display: inline-block;
}
.overline::before {
  content: ""; display: inline-block; width: 32px; height: 1px;
  background: var(--dourado); vertical-align: middle; margin-right: .9em; opacity: .8;
}
.overline.sem-traco::before { display: none; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
section[id], footer[id] { scroll-margin-top: 88px; }
.secao { padding-block: var(--pad-secao); position: relative; }
.secao--escura { background: var(--preto); }
.secao--clara  { background: var(--marfim); color: #3a3c40; }
.secao--clara h2 { color: var(--preto); }
.secao--clara .overline { color: var(--dourado-contraste); }
.secao--clara .overline::before { background: currentColor; opacity: 1; }
.secao--clara .dourado { color: var(--dourado-contraste); }
.secao--preta  { background: var(--preto-puro); }
.centro { text-align: center; }
.medida { max-width: 62ch; }
.centro .medida { margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--f-body); font-weight: 500; font-size: .98rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 1.05em 2.1em; border-radius: var(--radius);
  transition: var(--transicao); cursor: pointer; line-height: 1;
  border: 1px solid transparent;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--ouro {
  background-color: #F0C04A;
  background-image:
    linear-gradient(100deg, transparent 28%, rgba(255,255,255,.6) 50%, transparent 72%),
    linear-gradient(180deg, #FFF3B0 0%, #FAD66E 40%, #F0C04A 75%, #E3B038 100%);
  color: #1c1a10;
  box-shadow: 0 10px 28px -8px rgba(240,192,74,.9),
              inset 0 1.5px 0 rgba(255,255,255,.9),
              inset 0 -2px 5px rgba(170,120,30,.22);
}
.btn--ouro:hover {
  background-color: #F6CC56;
  background-image:
    linear-gradient(100deg, transparent 26%, rgba(255,255,255,.72) 50%, transparent 74%),
    linear-gradient(180deg, #FFFAC8 0%, #FCE084 40%, #F6CC56 75%, #ECBD42 100%);
  color: #1c1a10;
  transform: translateY(-2px);
  box-shadow: 0 18px 46px -8px rgba(246,204,86,1),
              inset 0 2px 0 rgba(255,255,255,1),
              inset 0 -2px 5px rgba(170,120,30,.18);
}
.btn--linha { border-color: var(--dourado); color: var(--dourado); background: transparent; }
.btn--linha:hover { background: var(--dourado); color: var(--preto); }
.btn--fantasma { background: rgba(255,255,255,.04); border-color: rgba(213,216,220,.22);
  color: var(--creme); backdrop-filter: blur(4px); box-shadow: none; }
.btn--fantasma:hover { border-color: var(--dourado); color: var(--creme);
  background: rgba(166,135,89,.12); transform: translateY(-2px); }
.btn--bloco { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.4rem; transition: var(--transicao);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header.scrolled { padding-block: .85rem; background: rgba(15,15,16,.86); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(166,135,89,.18); }
.logo { font-family: var(--f-display); font-size: 1.55rem; font-weight: 600; color: var(--creme); line-height: 1; letter-spacing: .01em; }
.logo small { display: block; font-family: var(--f-label); font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--dourado); margin-top: .35em; }
/* logo oficial (imagem dourada, aparece sobre fundo escuro) */
.logo img { display: block; width: auto; height: 74px; }
.footer__marca .logo img { height: 86px; }
@media (max-width: 980px) { .logo img { height: 66px; } }
@media (max-width: 760px) { .logo img { height: 58px; } .footer__marca .logo img { height: 72px; } }
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: .92rem; letter-spacing: .03em; color: var(--cinza); transition: color .3s; position: relative; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--dourado); transition:width .3s; }
.nav__links a:hover { color: var(--creme); }
.nav__links a:hover::after { width: 100%; }
.header .btn { padding: .85em 1.6em; font-size: .82rem; }
.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.menu-toggle span { display: block; height: 1.5px; width: 26px; background: var(--creme); transition: .3s; margin-left: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: clamp(6.5rem, 12vh, 9rem); padding-bottom: clamp(5rem, 10vh, 8rem);
  background: var(--preto-puro); overflow: hidden; isolation: isolate;
}

/* --- atmosfera multicamada --- */
.hero__atmosfera { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__atmosfera::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(125% 85% at 80% 16%, rgba(166,135,89,.20), transparent 55%),
    radial-gradient(90% 75% at 10% 95%, rgba(166,135,89,.10), transparent 55%),
    linear-gradient(180deg, #0b0b0c 0%, #161719 48%, #1f2124 100%);
}
.hero__atmosfera::after {
  content: ""; position: absolute; inset: 0; opacity: .10; mix-blend-mode: soft-light;
  background: url("../img/fundo-textura.webp") center/cover no-repeat;
}
.hero__aura {
  position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(166,135,89,.55), transparent 65%);
}
.hero__aura--1 { width: 48vmax; height: 48vmax; top: -16vmax; right: -10vmax; opacity: .5; }
.hero__aura--2 { width: 38vmax; height: 38vmax; bottom: -18vmax; left: -12vmax; opacity: .38;
  background: radial-gradient(circle at 50% 50%, rgba(230,206,202,.4), transparent 62%); }
.hero__grao {
  position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay; background-size: 170px 170px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__vinheta {
  position: absolute; inset: 0;
  background: radial-gradient(125% 100% at 50% 28%, transparent 52%, rgba(7,7,8,.72) 100%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 26%; z-index: 1;
  background: linear-gradient(180deg, transparent, var(--preto)); pointer-events: none; }

/* --- grade --- */
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr;
  align-items: center; gap: clamp(2rem, 5vw, 5.5rem); }
.hero__conteudo { max-width: 38rem; }
.hero__overline { margin-bottom: .3rem; }

/* título com revelação linha-a-linha */
.hero__titulo { margin: 1rem 0 1.1rem; font-size: clamp(2.7rem, 5.6vw, 4.7rem); line-height: 1.04; }
.hero__titulo .ln { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__titulo .ln > span { display: block; }
.hero__titulo em { font-style: italic; }

.hero__flourish { display: block; width: 0; height: 1px; margin: .1rem 0 1.4rem;
  background: linear-gradient(90deg, var(--dourado), rgba(166,135,89,0)); }

.hero__sub { font-size: clamp(1.06rem, 1.4vw, 1.24rem); color: var(--cinza); max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; align-items: center; }
.hero__assinatura { font-family: var(--f-display); font-style: italic; font-size: 1.32rem; color: var(--creme); margin-top: 1.8rem; }
.hero__assinatura span { display: block; font-family: var(--f-label); font-style: normal; font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--dourado); margin-top: .45em; }

/* --- palco do retrato (arco de luz) --- */
.hero__palco { position: relative; justify-self: center; width: min(100%, 29rem); }
.hero__palco::before {
  content: ""; position: absolute; z-index: 0; inset: -14px -14px 16px -14px; pointer-events: none;
  border: 1px solid rgba(166,135,89,.42);
  border-radius: 50% 50% 14px 14px / 34% 34% 6% 6%;
}
.hero__halo {
  position: absolute; z-index: 0; inset: -10% -8% 4%; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(166,135,89,.5), rgba(166,135,89,.08) 52%, transparent 70%);
  filter: blur(20px);
}
.hero__anel {
  position: absolute; z-index: 0; left: 50%; top: 45%; width: 122%; aspect-ratio: 1;
  transform: translate(-50%,-50%); border-radius: 50%;
  border: 1px dashed rgba(166,135,89,.3);
}
.hero__retrato {
  position: relative; z-index: 1; overflow: hidden; aspect-ratio: 100/130;
  border-radius: 47% 47% 12px 12px / 33% 33% 5% 5%;
  box-shadow: 0 44px 90px -34px rgba(0,0,0,.8), inset 0 0 0 1px rgba(166,135,89,.22);
}
.hero__retrato::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 36%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(11,11,12,.88));
}
.hero__retrato img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 6%;
  transform: translateY(var(--py, 0px)) scale(1.07); transition: transform .15s linear; }

/* --- selos flutuantes em vidro --- */
.hero__selo {
  position: absolute; z-index: 3; left: -1.6rem; bottom: 13%;
  display: flex; flex-direction: column; gap: .2rem;
  background: rgba(20,20,22,.72); backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(166,135,89,.38); border-radius: 14px;
  padding: .8rem 1.1rem; box-shadow: 0 26px 54px -26px rgba(0,0,0,.85);
}
.hero__estrelas { color: var(--dourado); letter-spacing: 2px; font-size: .82rem; }
.hero__selo figcaption { font-family: var(--f-display); font-size: 1.18rem; color: var(--creme); line-height: 1.1; }
.hero__selo small { display: block; font-family: var(--f-body); font-size: .7rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--cinza); margin-top: .15rem; }
.hero__pill {
  position: absolute; z-index: 3; right: -.7rem; top: 7%;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .16em; font-size: .64rem;
  color: var(--creme); background: #1b160a;
  border: 1px solid rgba(166,135,89,.4); border-radius: 30px; padding: .55em 1em;
}

/* --- indicador de rolagem --- */
.hero__scroll { position: absolute; z-index: 2; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .65rem; color: var(--cinza-esc); }
.hero__scroll-txt { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .24em; font-size: .6rem; }
.hero__scroll-linha { position: relative; width: 1px; height: 48px; overflow: hidden;
  background: linear-gradient(180deg, rgba(166,135,89,.45), transparent); }
.hero__scroll-linha::after { content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 18px;
  background: linear-gradient(180deg, var(--creme), transparent); transform: translateY(-20px); }

/* ---------- Faixa de autoridade ---------- */
.autoridade { margin-top: calc(var(--pad-secao) * -.5); position: relative; z-index: 3; }
.autoridade__card {
  background: linear-gradient(145deg, #25272b, #17181a);
  border: 1px solid rgba(166,135,89,.3); border-radius: 6px;
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.5rem, 4vw, 3.5rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.8);
}
.autoridade__item { text-align: center; position: relative; }
.autoridade__item:not(:last-child)::after { content:""; position:absolute; right: -.75rem; top: 15%; height: 70%; width: 1px; background: rgba(166,135,89,.22); }
.autoridade__item b { display: block; font-family: var(--f-display); font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 600; color: var(--dourado); line-height: 1; }
.autoridade__item span { display: block; margin-top: .6em; font-size: .82rem; letter-spacing: .04em; color: var(--cinza); text-transform: uppercase; }

/* ---------- Conexão (clara) ---------- */
.conexao__grid { display: grid; gap: clamp(2rem,4vw,3.5rem); }
.conexao h2 { margin: 1rem 0 1.3rem; max-width: 22ch; }
.conexao p { color: #55585c; }
.conexao__pontos { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.ponto { background: var(--branco); border: 1px solid #ece3cf; border-radius: 6px; padding: 2rem 1.7rem; transition: var(--transicao); }
.ponto:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(144,104,54,.5); border-color: var(--dourado); }
.ponto__ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--marfim); border: 1px solid var(--dourado); color: var(--dourado-esc); margin-bottom: 1.1rem; }
.ponto__ic svg { width: 22px; height: 22px; }
.ponto h3 { color: var(--preto); font-size: 1.3rem; margin-bottom: .5rem; }
.ponto p { font-size: .96rem; color: #6a6d71; }

/* ---------- Como funciona ---------- */
.passos { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; margin-top: 3.2rem; counter-reset: passo; }
.passo { padding: 1.2rem .4rem; position: relative; }
.passo::before {
  counter-increment: passo; content: "0" counter(passo);
  font-family: var(--f-display); font-size: 2.6rem; color: var(--dourado); opacity: .85; display:block; margin-bottom:.6rem; line-height:1;
}
.passo h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.passo p { font-size: .95rem; color: var(--cinza-esc); }
.passo:not(:last-child)::after { content:""; position:absolute; top: 1.9rem; right: -.7rem; width: 1.4rem; height:1px; background: rgba(166,135,89,.4); }
.cta-centro { margin-top: 3.4rem; text-align: center; }

/* ---------- Rodapé ---------- */
.footer { background: var(--preto-puro); padding-block: clamp(3.5rem,7vw,6rem) 2.5rem; }
.footer__cta { text-align: center; padding-bottom: clamp(3rem,6vw,5rem); border-bottom: 1px solid rgba(166,135,89,.15); }
.footer__cta h2 { margin: 1rem auto 1.8rem; max-width: 18ch; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-top: 3.5rem; }
.footer__marca .logo { font-size: 1.7rem; }
.footer__marca p { font-size: .9rem; color: var(--cinza-esc); margin-top: 1rem; max-width: 30ch; }
.footer h4 { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; color: var(--dourado); margin-bottom: 1.2rem; }
.footer a { font-size: .94rem; color: var(--cinza); transition: color .3s; }
.footer a:hover { color: var(--dourado); }
/* o CTA dourado do rodapé não deve herdar a cor dos links do rodapé */
.footer a.btn--ouro, .footer a.btn--ouro:hover { color: #1c1a10; }
.footer__col li { margin-bottom: .7rem; }
/* Link do Instagram: ícone dourado + @ alinhados */
.footer__social { display: inline-flex; align-items: center; gap: .5rem; }
.footer__social-ico { width: 1.15rem; height: 1.15rem; color: var(--dourado); flex: 0 0 auto; transition: color .3s; }
.footer__base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.07); font-size: .8rem; color: #7a7f86; }
.pendente { color: var(--nude); font-style: italic; }

/* ---------- Flutuantes ---------- */
.flutuante { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90; display: flex; flex-direction: column; gap: .8rem; }
.flutuante a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(0,0,0,.5); transition: transform .3s; }
.flutuante a:hover { transform: scale(1.08); }
.fab-wpp { background: var(--verde-wpp); color: #fff; }
.fab-ig { background: linear-gradient(45deg,#f09433,#dc2743 40%,#bc1888); color:#fff; }
.flutuante svg { width: 28px; height: 28px; }


/* ---------- Animação de entrada (só com JS ativo → degrada graciosamente) ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); filter: blur(6px);
  transition: opacity .9s ease, transform 1s cubic-bezier(.2,.7,.2,1), filter .9s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"]{ transition-delay:.1s } .reveal[data-delay="2"]{ transition-delay:.2s } .reveal[data-delay="3"]{ transition-delay:.3s }
.reveal[data-delay="4"]{ transition-delay:.4s } .reveal[data-delay="5"]{ transition-delay:.5s }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero { text-align: center; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 2.4rem; }
  .hero__conteudo { max-width: none; margin-inline: auto; }
  .hero__sub { max-width: 48ch; margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__flourish { margin-inline: auto; }
  .hero__palco { order: -1; width: min(78%, 21rem); }
  .hero__pill { display: none; }
  .hero__selo { left: auto; right: -.4rem; bottom: 8%; padding: .7rem .95rem; }
  .hero__selo figcaption { font-size: 1.05rem; }
  .hero__scroll { display: none; }
  .autoridade__card { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .autoridade__item:nth-child(2)::after { display: none; }
  .conexao__pontos { grid-template-columns: 1fr; }
  .passos { grid-template-columns: repeat(2,1fr); gap: 2rem 1.4rem; }
  .passo:not(:last-child)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  /* height explícito (100dvh) — o header rolado usa backdrop-filter, que o torna
     bloco de contenção dos filhos position:fixed. Sem altura fixa, o inset top/bottom
     encolhe o menu à altura do header e o conteúdo da página aparece por trás. */
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80%, 320px); height: 100vh; height: 100dvh;
         background: var(--preto-puro);
         flex-direction: column; justify-content: center; gap: 0; padding: 2rem; transform: translateX(100%);
         transition: transform .4s cubic-bezier(.2,.7,.2,1); box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  .nav.aberto { transform: none; }
  .nav__links { flex-direction: column; gap: 0; text-align: center; }
  .nav__links a { display: block; padding: 1.1rem; font-size: 1.1rem; font-family: var(--f-display); }
  .nav .btn { margin-top: 1.5rem; }
  .menu-toggle.ativo span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle.ativo span:nth-child(2){ opacity: 0; }
  .menu-toggle.ativo span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 460px) {
  .autoridade__card { grid-template-columns: 1fr 1fr; }
  .passos { grid-template-columns: 1fr; }
  /* CTA "Quero agendar minha avaliação" não cabe em 1 linha até ~410px: o texto pede
     ~366px e o container só oferece 318px em telas de 360px. Encolhe corpo, entre-letras
     e recuo lateral de forma fluida para manter o rótulo sempre em linha única.
     Seletor com `a.`/`button.` para vencer `.footer a { font-size: .94rem }`. */
  a.btn, button.btn { font-size: clamp(.75rem, 3.6vw, .98rem); letter-spacing: .02em; padding: 1.05em 1.35em; }
  .header .btn { padding: .85em 1.2em; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  html { scroll-behavior: auto; }
  /* desliga todo movimento contínuo/ambiente da hero */
  .hero__aura, .hero__halo, .hero__anel, .hero__selo, .hero__pill,
  .hero__scroll-linha::after, .fab-wpp::before, .btn--ouro::after { animation: none !important; }
  .hero__retrato img { transform: scale(1.07) !important; }
  .js .img-wipe::after { display: none; }
  .js .img-wipe img { clip-path: none; opacity: 1; }
  /* galeria de procedimentos: sem fade nem cascata (estado final visível) */
  .proc__galeria, .proc__galeria.is-saindo { opacity: 1 !important; transition: none; }
  .js .proc-galeria .proc-foto { opacity: 1; transform: none; animation: none; }
  /* entrada da hero sem movimento (estado final visível) */
  .js .hero__titulo .ln > span { transform: none; animation: none; }
  .js .hero__flourish { width: 84px; animation: none; }
  .js .hero__overline, .js .hero__sub, .js .hero__cta, .js .hero__assinatura,
  .js .hero__scroll, .js .hero__palco { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   SEÇÕES 5–10
   ============================================================ */

/* ---- 5. Procedimentos (claro) ---- */
/* Seletor de categorias (tabs): 3 cards. O ativo abre a galeria correspondente logo abaixo. */
.proc__seletor { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3.2rem; }
.proc-cat { position: relative; display: flex; flex-direction: column; text-align: left;
  border-radius: 12px; border: 1px solid rgba(166,135,89,.28);
  /* cor de texto clara explícita: o card é um <button> que, sem isto, herdaria o cinza
     escuro da seção clara — ilegível sobre o fundo escuro do card (falha de contraste) */
  color: var(--creme);
  /* cor sólida escura como base (mantém o contraste real do rótulo nude e evita falso positivo
     das auditorias, que ignoram o gradiente e mediriam contra o fundo claro da seção) */
  background-color: #141517;
  background-image: linear-gradient(155deg, #25272b, #141517);
  transition: transform var(--transicao), box-shadow var(--transicao), border-color var(--transicao); }
.proc-cat__capa { position: relative; aspect-ratio: 3/2; overflow: hidden; border-radius: 12px 12px 0 0; background: #0e0f11; }
.proc-cat__capa img { width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter var(--transicao); filter: saturate(.92) brightness(.94); }
.proc-cat__capa::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(20,21,23,.55)); }
.proc-cat__txt { display: flex; flex-direction: column; gap: .3rem; padding: 1rem 1.25rem 1.2rem; }
.proc-cat__tec { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .16em;
  font-size: .63rem; color: var(--nude); }
.proc-cat__nome { font-family: var(--f-display); font-weight: 500; line-height: 1.1; color: var(--creme);
  font-size: clamp(1.3rem, 2vw, 1.6rem); }
/* Hover (mouse): leve elevação e realce dourado */
@media (hover: hover) {
  .proc-cat:hover { transform: translateY(-4px); border-color: rgba(166,135,89,.55);
    box-shadow: 0 22px 46px -28px rgba(144,104,54,.6); }
  .proc-cat:hover .proc-cat__capa img { transform: scale(1.05); filter: saturate(1) brightness(1); }
}
/* Card ativo: anel dourado + foto plena + seta apontando para a galeria */
.proc-cat.is-ativo { border-color: var(--dourado);
  box-shadow: 0 0 0 1px var(--dourado), 0 22px 46px -26px rgba(144,104,54,.6); }
.proc-cat.is-ativo .proc-cat__capa img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.proc-cat.is-ativo::after { content: ""; position: absolute; left: 50%; bottom: -8px; width: 16px; height: 16px;
  background: #141517; border-right: 1px solid var(--dourado); border-bottom: 1px solid var(--dourado);
  transform: translateX(-50%) rotate(45deg); border-radius: 0 0 3px 0; }

/* Dica de interação (logo abaixo do parágrafo de apoio) */
.proc__dica { margin-top: .9rem; font-family: var(--f-label); text-transform: uppercase;
  letter-spacing: .14em; font-size: .68rem; color: var(--dourado); }

/* Selo "Toque para ver" sobre a capa — sinaliza que o card abre a galeria de antes/depois.
   A galeria só é renderizada após o clique/toque (ver js/main.js → abreProc/fechaGaleria). */
.proc-cat__ver { position: absolute; left: 50%; bottom: .75rem; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .5em; z-index: 2; pointer-events: none;
  white-space: nowrap; font-family: var(--f-label); text-transform: uppercase;
  letter-spacing: .12em; font-size: .6rem; line-height: 1; color: var(--creme);
  background: rgba(12,12,13,.66); border: 1px solid rgba(166,135,89,.55);
  padding: .55em .9em; border-radius: 30px; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  transition: background var(--transicao), color var(--transicao), border-color var(--transicao); }
.proc-cat__ver svg { width: 1.05em; height: 1.05em; flex: 0 0 auto;
  animation: verPulso 2.4s ease-in-out infinite; }
@keyframes verPulso { 0%, 100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }
@media (hover: hover) {
  .proc-cat:hover .proc-cat__ver { background: rgba(166,135,89,.95); color: #1a1206; border-color: var(--dourado); }
}
/* Card ativo: o selo vira "Tocar para fechar" em dourado pleno */
.proc-cat.is-ativo .proc-cat__ver { background: var(--dourado); color: #1a1206; border-color: var(--dourado); }
.proc-cat.is-ativo .proc-cat__ver svg { animation: none; opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .proc-cat__ver svg { animation: none; opacity: 1; } }

/* Galeria da categoria selecionada */
.proc__galeria { margin-top: 2.8rem; }
.proc-galeria { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.proc-foto { position: relative; flex: 0 1 calc((100% - 3rem) / 4); margin: 0; aspect-ratio: 4/5;
  overflow: hidden; border-radius: 8px; border: 1px solid rgba(166,135,89,.22); background: #efe7d6; }
.proc-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.proc-foto::before { content: "Antes · Depois"; position: absolute; top: .55rem; left: .55rem; z-index: 1;
  font-family: var(--f-label); text-transform: uppercase; letter-spacing: .1em; font-size: .56rem;
  color: var(--creme); background: rgba(12,12,13,.5); padding: .32em .7em; border-radius: 30px; pointer-events: none; }
.proc-foto__abrir { display: block; width: 100%; height: 100%; padding: 0; border: 0;
  background: none; cursor: zoom-in; }
.proc-foto__abrir:focus-visible { outline: 2px solid var(--dourado); outline-offset: -3px; }
@media (hover: hover) { .proc-foto:hover img { transform: scale(1.06); } }

/* ---- Lightbox: foto da galeria ampliada em tela cheia ---- */
.sem-rolagem { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center;
  justify-content: center; gap: clamp(.25rem, 2vw, 1.5rem); padding: clamp(.75rem, 3vw, 2rem);
  background: rgba(12,12,13,.94); animation: lightboxEntra .25s ease; }
.lightbox[hidden] { display: none; }
.lightbox__palco { margin: 0; display: flex; flex-direction: column; align-items: center;
  gap: .75rem; min-width: 0; }
.lightbox__palco img { max-width: min(92vw, 800px); max-height: 86vh; width: auto; height: auto;
  object-fit: contain; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.lightbox__contador { font-family: var(--f-label); letter-spacing: .12em; font-size: .72rem;
  color: var(--cinza-esc); }
.lightbox__fechar { position: absolute; top: clamp(.5rem, 2vw, 1.25rem);
  right: clamp(.5rem, 2vw, 1.25rem); width: 2.75rem; height: 2.75rem; display: grid;
  place-items: center; font-size: 1.9rem; line-height: 1; color: var(--creme); cursor: pointer;
  background: rgba(244,241,234,.1); border: 1px solid rgba(244,241,234,.22); border-radius: 50%; }
.lightbox__nav { flex: 0 0 auto; width: 2.75rem; height: 2.75rem; display: grid; place-items: center;
  font-size: 2rem; line-height: 1; color: var(--creme); cursor: pointer;
  background: rgba(244,241,234,.1); border: 1px solid rgba(244,241,234,.22); border-radius: 50%; }
.lightbox__nav[hidden] { display: none; }
.lightbox__fechar:hover, .lightbox__nav:hover { background: var(--dourado); border-color: var(--dourado);
  color: var(--preto-puro); }
.lightbox__fechar:focus-visible, .lightbox__nav:focus-visible { outline: 2px solid var(--dourado);
  outline-offset: 3px; }
@keyframes lightboxEntra { from { opacity: 0 } to { opacity: 1 } }
@media (prefers-reduced-motion: reduce) { .lightbox { animation: none; } }
/* telas estreitas: setas descem para as laterais inferiores, imagem ganha a largura toda */
@media (max-width: 560px) {
  .lightbox { flex-wrap: wrap; align-content: center; }
  .lightbox__palco { flex: 1 0 100%; order: -1; }
  .lightbox__palco img { max-width: 96vw; max-height: 74vh; }
}

/* ---- 6. Depoimentos / Avaliações do Google (escuro) ---- */
/* Carrossel automático (marquee): desliza da direita p/ a esquerda, em loop contínuo.
   Sem JS / movimento reduzido: vira rolagem horizontal manual (degrada com elegância). */
.depoimentos { margin-top: 3.4rem; overflow-x: auto; scrollbar-width: none;
  /* Fade das bordas em px FIXOS (não %): em % o fade cresce junto com a tela
     estreita e passa a comer o cartão inteiro, deixando o texto sempre cortado. */
  --depo-fade: 48px; }
.depoimentos::-webkit-scrollbar { display: none; }
.depoimentos__track { display: flex; align-items: stretch; width: max-content; }

.js .depoimentos { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--depo-fade), #000 calc(100% - var(--depo-fade)), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 var(--depo-fade), #000 calc(100% - var(--depo-fade)), transparent 100%); }
.js .depoimentos__track { animation: deslizaDepo var(--depo-dur, 40s) linear infinite; }
.js .depoimentos__track:hover { animation-play-state: paused; }   /* pausa p/ ler */
@keyframes deslizaDepo { to { transform: translateX(-50%); } }    /* -50% = 1 conjunto → emenda invisível */

/* Poucas avaliações (1-2) ou movimento reduzido: centraliza, sem rolagem automática */
.js .depoimentos.is-estatico { overflow: visible; -webkit-mask-image: none; mask-image: none; }
.js .depoimentos.is-estatico .depoimentos__track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; gap: 1.1rem; }
.js .depoimentos.is-estatico .depo { margin-right: 0; }

/* Cartão no estilo "avaliação do Google" (branco sobre o fundo escuro da seção) */
.depo { flex: 0 0 clamp(280px, 82vw, 340px); display: flex; flex-direction: column;
  margin-right: 1.1rem; background: #fff; border: 1px solid #e6e6e6; border-radius: 12px;
  padding: 1.25rem 1.3rem 1.35rem; box-shadow: 0 12px 32px rgba(0,0,0,.30); color: #3c4043; text-align: left; }
.depo__topo { display: flex; align-items: center; gap: .7rem; position: relative; padding-right: 1.5rem; }
.depo__avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cor, #5f6368); color: #fff; font-family: var(--f-body); font-weight: 500; font-size: 1.1rem; line-height: 1; }
.depo__id { display: flex; flex-direction: column; min-width: 0; }
.depo__nome { font-family: var(--f-body); font-weight: 600; font-size: .95rem; color: #202124; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.depo__meta { font-family: var(--f-body); font-size: .78rem; color: #5f6368; line-height: 1.25; }
.depo__g { position: absolute; top: 0; right: 0; flex: none; }
.depo__aval { display: flex; align-items: center; gap: .55rem; margin-top: .9rem; }
.depo__estrelas { color: #fbbc05; letter-spacing: 1px; font-size: 1rem; line-height: 1; }
.depo__quando { font-family: var(--f-body); font-size: .78rem; color: #70757a; }
.depo__texto { font-family: var(--f-body); font-weight: 400; font-style: normal; font-size: .92rem;
  line-height: 1.55; color: #3c4043; margin: .8rem 0 0; }
/* Telas estreitas: fade discreto e cartão limitado à janela opaca da máscara.
   O container mede 100vw - 2.6rem; descontando o fade dos dois lados (2x10px)
   e ~24px de respiro, o cartão inteiro fica legível em algum ponto do trajeto. */
@media (max-width: 560px) {
  .depoimentos { --depo-fade: 10px; }
  .depo { flex-basis: min(340px, calc(100vw - 2.6rem - 44px)); }
}

@media (prefers-reduced-motion: reduce) {
  .js .depoimentos { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .js .depoimentos__track { animation: none; }
}

/* ---- 7. Sobre (claro) ---- */
.sobre__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
.sobre__foto { position: relative; }
.sobre__foto img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.sobre__foto::before { content: ""; position: absolute; inset: -14px -14px auto auto;
  width: 62%; height: 62%; border: 1px solid var(--dourado); border-radius: 8px; z-index: 0; }
.sobre__conteudo { display: flex; flex-direction: column; justify-content: space-between; }
.sobre h2 { margin: .7rem 0 1.2rem; }
.sobre p { color: #55585c; margin-bottom: 1.1rem; }
.sobre p:last-of-type { margin-bottom: 0; }
.sobre__assina { margin-top: auto; margin-bottom: 0; display: flex; align-items: flex-end; }
.sobre__assina img { height: 52px; width: auto; display: block; }

/* ---- 8. Oferta (faixa nude/dourado) ---- */
.oferta { background-color: var(--nude); background-image: linear-gradient(135deg, var(--nude), var(--creme)); color: var(--preto); text-align: center; }
.oferta__tag { display: inline-flex; align-items: center; gap: .55em; font-family: var(--f-label);
  text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; color: var(--dourado-profundo);
  border: 1px solid var(--dourado-profundo); border-radius: 30px; padding: .5em 1.2em; }
.oferta__tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dourado-profundo); }
.oferta h2 { color: var(--preto); margin: 1.2rem auto 1.2rem; max-width: 20ch; }
.oferta h2:first-child { margin-top: 0; }   /* sem a tag de escassez acima, o recuo vira espaço morto */
.oferta p { color: #4a4133; max-width: 54ch; margin: 0 auto 2.2rem; }

/* ---- 9. FAQ (escuro, acordeão nativo) ---- */
.faq { max-width: 760px; margin: 3rem auto 0; }
.faq details { border-bottom: 1px solid rgba(166,135,89,.2); }
.faq summary { list-style: none; cursor: pointer; padding: 1.4rem 0; gap: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-display); font-size: clamp(1.2rem, 2vw, 1.45rem); color: var(--creme); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-family: var(--f-body); font-size: 1.6rem;
  color: var(--dourado); transition: transform .3s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 0 1.5rem; max-width: 64ch; color: var(--cinza); }

/* ---- 10. Local (claro) ---- */
.local__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.local__foto img { width: 100%; border-radius: 8px; }
.local h2 { margin: 1rem 0 1.3rem; }
.local p { color: #55585c; }
.locais { display: grid; gap: .9rem; margin: 1.8rem 0 2rem; }
.local-card { display: flex; align-items: center; gap: 1rem; background: var(--branco);
  border: 1px solid #ece3cf; border-radius: 8px; padding: 1.1rem 1.3rem; }
.local-card__ic { flex: none; width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: var(--marfim); border: 1px solid var(--dourado); color: var(--dourado-esc); }
.local-card__ic svg { width: 20px; height: 20px; }
.local-card__txt { flex: 1; min-width: 0; }
.local-card__txt h4 { font-family: var(--f-display); font-weight: 600; font-size: 1.28rem; color: var(--preto); line-height: 1.12; }
.local-card__txt .clinica { display: block; font-family: var(--f-label); text-transform: uppercase;
  letter-spacing: .12em; font-size: .66rem; color: var(--dourado-esc); margin-top: .3rem; }
.local-card__txt p { font-size: .9rem; color: #6a6d71; margin-top: .15rem; }

@media (max-width: 980px) {
  .proc-foto { flex-basis: calc((100% - 2rem) / 3); }   /* galeria: 3 colunas */
  .sobre__grid { grid-template-columns: 1fr; gap: 2.2rem; align-items: start; }
  .sobre__foto { max-width: 420px; margin-inline: auto; }
  .sobre__foto img { height: auto; }
  .sobre__foto::before { display: none; }
  .sobre__conteudo { justify-content: start; }
  .sobre__assina { display: flex; justify-content: center; margin-top: 1.5rem; margin-bottom: 0; }
  .local .btn { display: flex; width: fit-content; max-width: 100%; margin-inline: auto; text-align: center; }
  .local__grid { grid-template-columns: 1fr; gap: 2rem; }
  .local__foto { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 620px) {
  /* Cards de categoria viram layout horizontal compacto, empilhados */
  .proc__seletor { grid-template-columns: 1fr; gap: .8rem; margin-top: 2.4rem; }
  .proc-cat { flex-direction: row; align-items: stretch; }
  .proc-cat__capa { flex: 0 0 40%; aspect-ratio: auto; border-radius: 12px 0 0 12px; }
  .proc-cat__txt { justify-content: center; gap: .25rem; padding: .85rem 1.1rem; }
  .proc-cat.is-ativo::after { display: none; }   /* seta não cabe no layout empilhado */
  /* Galeria movida para dentro da grade (via JS): aparece logo abaixo do card clicado,
     ocupando a coluna inteira e colada a ele. */
  .proc__seletor > .proc__galeria { grid-column: 1 / -1; margin-top: .2rem; }
}
@media (max-width: 560px) {
  .proc-foto { flex-basis: calc((100% - 1rem) / 2); }   /* galeria: 2 colunas */
}

/* =========================================================================
   EFEITOS & ANIMAÇÕES — luxo discreto (movimento sutil, lento, intencional)
   Tudo neutralizado em prefers-reduced-motion (ver bloco acima).
   ========================================================================= */

/* ---- Hero: atmosfera viva — auras à deriva, halo respirando, anel girando ---- */
.js .hero__aura--1 { animation: deriva1 26s ease-in-out infinite; }
.js .hero__aura--2 { animation: deriva2 32s ease-in-out infinite; }
@keyframes deriva1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4%,3%) scale(1.12); } }
@keyframes deriva2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5%,-4%) scale(1.1); } }

.js .hero__halo { animation: respira 7s ease-in-out infinite; transform-origin: 50% 45%; }
@keyframes respira {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
.js .hero__anel { animation: gira 60s linear infinite; }
@keyframes gira { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* selos flutuantes — flutuação lenta e defasada */
.js .hero__selo { animation: flutua 6s ease-in-out infinite; }
.js .hero__pill { animation: flutua 6.5s ease-in-out infinite .9s; }
@keyframes flutua { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* entrada cinematográfica do título — linha a linha sob máscara */
.js .hero__titulo .ln > span { transform: translateY(115%); animation: subirLinha 1s cubic-bezier(.2,.75,.2,1) forwards; }
.js .hero__titulo .ln:nth-child(1) > span { animation-delay: .15s; }
.js .hero__titulo .ln:nth-child(2) > span { animation-delay: .30s; }
.js .hero__titulo .ln:nth-child(3) > span { animation-delay: .45s; }
@keyframes subirLinha { to { transform: translateY(0); } }

/* filete dourado que cresce sob o título */
.js .hero__flourish { animation: cresceLinha 1s ease .7s forwards; }
@keyframes cresceLinha { to { width: 84px; } }

/* demais elementos do texto — fade-up encadeado */
.js .hero__overline, .js .hero__sub, .js .hero__cta, .js .hero__scroll {
  opacity: 0; transform: translateY(16px); animation: surge .9s cubic-bezier(.2,.7,.2,1) forwards; }
.js .hero__assinatura {
  transform: translateY(16px); animation: surgeSemFade .9s cubic-bezier(.2,.7,.2,1) .94s forwards; }
.js .hero__overline    { animation-delay: .1s; }
.js .hero__sub         { animation-delay: .62s; }
.js .hero__cta         { animation-delay: .78s; }
.js .hero__scroll      { animation-delay: 1.3s; }
@keyframes surge { to { opacity: 1; transform: none; } }
@keyframes surgeSemFade { to { transform: none; } }

/* palco do retrato — surgimento suave + selos depois */
.js .hero__palco { animation: surgeFoto 1.2s cubic-bezier(.2,.7,.2,1) .35s both; }
@keyframes surgeFoto { from { transform: translateY(26px) scale(.97); } to { transform: none; } }

/* ponto de luz descendo no indicador de rolagem */
.js .hero__scroll-linha::after { animation: desceLuz 2.4s cubic-bezier(.6,0,.4,1) infinite; }
@keyframes desceLuz { 0% { transform: translateY(-20px); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateY(48px); opacity: 0; } }

/* ---- Botões dourados: brilho que cruza no hover ---- */
.btn--ouro { position: relative; overflow: hidden; }
.btn--ouro::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn--ouro:hover::after { animation: brilho .85s ease; }
@keyframes brilho { to { left: 130%; } }

/* ---- Contadores: estabiliza largura enquanto sobem os números ---- */
.autoridade__item b, .hero__prova b { font-variant-numeric: tabular-nums; }

/* ---- Revelação das imagens (wipe dourado) ---- */
.js .img-wipe { position: relative; overflow: hidden; }
.js .img-wipe img { clip-path: inset(0 100% 0 0); opacity: 0;
  transition: clip-path 1.1s cubic-bezier(.2,.7,.2,1), opacity .4s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.js .img-wipe.is-revealed img { clip-path: inset(0 0 0 0); opacity: 1; }
.js .img-wipe::after {
  content: ""; position: absolute; inset: 0; left: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(166,135,89,.55), transparent);
  transform: translateX(-110%);
}
.js .img-wipe.is-revealed::after { animation: passa 1.1s cubic-bezier(.2,.7,.2,1); }
@keyframes passa { to { transform: translateX(110%); } }

/* ---- FAQ: revelação suave do conteúdo ao abrir ---- */
.js .faq details[open] > p { animation: abre .5s ease both; }
@keyframes abre { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---- Procedimentos: troca elegante entre galerias (fade do bloco + entrada das fotos em cascata) ---- */
.proc__galeria { transition: opacity .2s ease; }
.proc__galeria.is-saindo { opacity: 0; }
.js .proc-galeria .proc-foto { opacity: 0; transform: translateY(14px); animation: procFotoEntra .55s cubic-bezier(.2,.7,.2,1) forwards; }
.js .proc-galeria .proc-foto:nth-child(1) { animation-delay: .03s }
.js .proc-galeria .proc-foto:nth-child(2) { animation-delay: .08s }
.js .proc-galeria .proc-foto:nth-child(3) { animation-delay: .13s }
.js .proc-galeria .proc-foto:nth-child(4) { animation-delay: .18s }
.js .proc-galeria .proc-foto:nth-child(5) { animation-delay: .23s }
.js .proc-galeria .proc-foto:nth-child(6) { animation-delay: .28s }
.js .proc-galeria .proc-foto:nth-child(7) { animation-delay: .33s }
.js .proc-galeria .proc-foto:nth-child(n+8) { animation-delay: .38s }
@keyframes procFotoEntra { to { opacity: 1; transform: none; } }

/* ---- Scroll-spy: link ativo do menu ---- */
.nav__links a.ativo { color: var(--creme); }
.nav__links a.ativo::after { width: 100%; }

/* ---- WhatsApp flutuante: pulso discreto de atenção ---- */
.fab-wpp { position: relative; }
.fab-wpp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--verde-wpp); animation: pulso 2.8s ease-out infinite; pointer-events: none;
}
@keyframes pulso {
  0%   { transform: scale(1);    opacity: .6; }
  70%  { transform: scale(1.5);  opacity: 0; }
  100% { transform: scale(1.5);  opacity: 0; }
}
