/* ============================================================
   Dra. Claudia Rodrigues · Estética Avançada
   Preto profundo + dourado · mobile first
   ============================================================ */

:root {
  --preto: #0b0906;
  --preto-2: #14100a;
  --preto-3: #1c1610;
  --ouro: #d9ab4e;
  --ouro-claro: #f3d992;
  --ouro-escuro: #9c7326;
  --champanhe: #e9d9b8;
  --marfim: #f6efe2;
  --texto: #cfc4ae;
  --texto-suave: #a4977e;
  --grad-ouro: linear-gradient(115deg, #8a6420 0%, #d9ab4e 28%, #f7e3a5 50%, #d9ab4e 72%, #8a6420 100%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --transicao: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--preto);
  color: var(--texto);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: .02em;
  text-align: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---- grain ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ---- tipografia ---- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--marfim); line-height: 1.15; }

.script { font-family: var(--script); font-weight: 400; color: var(--ouro); }

.ouro-texto {
  background: var(--grad-ouro);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rotulo {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .68rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--ouro);
  font-weight: 400;
}
.rotulo::before, .rotulo::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ouro));
}
.rotulo::after { background: linear-gradient(90deg, var(--ouro), transparent); }

.titulo {
  font-size: clamp(2rem, 6.4vw, 3.4rem);
  margin: .9rem auto 1.1rem;
  max-width: 18ch;
}
.titulo em { font-style: italic; }

.sub {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--texto-suave);
  font-size: .95rem;
}

/* ---- layout ---- */
.secao { position: relative; padding: 5.5rem 1.4rem; }
.envolto { max-width: 1080px; margin: 0 auto; }

/* ---- botões ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.02rem 2.3rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--preto);
  background: var(--grad-ouro);
  background-size: 200% 100%;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-position .8s var(--transicao), transform .4s var(--transicao), box-shadow .4s var(--transicao);
  box-shadow: 0 8px 30px rgba(217, 171, 78, .22);
}
.btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(217, 171, 78, .35);
}
.btn-fantasma {
  background: transparent;
  color: var(--champanhe);
  border: 1px solid rgba(217, 171, 78, .45);
  box-shadow: none;
}
.btn-fantasma:hover {
  background: rgba(217, 171, 78, .08);
  border-color: var(--ouro);
  box-shadow: none;
}

/* ---- header ---- */
.topo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 95;
  padding: .9rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s, backdrop-filter .5s, box-shadow .5s, padding .5s;
}
.topo.rolou {
  background: rgba(11, 9, 6, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(217, 171, 78, .18);
  padding: .55rem 1.3rem;
}
.topo-logo img { height: 44px; width: auto; }
.topo-links { display: none; }

.menu-btn {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 96;
}
.menu-btn span {
  width: 26px; height: 1px;
  background: var(--champanhe);
  transition: transform .45s var(--transicao), opacity .3s, background .3s;
}
.menu-btn.aberto span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--ouro); }
.menu-btn.aberto span:nth-child(2) { opacity: 0; }
.menu-btn.aberto span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--ouro); }

.menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(11, 9, 6, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--transicao), visibility .5s;
}
.menu-mobile.aberto { opacity: 1; visibility: visible; }
.menu-mobile a {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--marfim);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--transicao), transform .6s var(--transicao), color .3s;
}
.menu-mobile.aberto a { opacity: 1; transform: none; }
.menu-mobile a:hover { color: var(--ouro); }
.menu-mobile .mini { font-family: var(--sans); font-size: .65rem; letter-spacing: .4em; text-transform: uppercase; color: var(--ouro); margin-top: 1.4rem; }

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 6.5rem 1.4rem 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 88%, rgba(217, 171, 78, .16), transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(217, 171, 78, .05), transparent 70%),
    var(--preto);
}
.hero-aura {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(150vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 171, 78, .22) 0%, rgba(217, 171, 78, .06) 45%, transparent 68%);
  animation: respirar 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes respirar {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .85; }
  50% { transform: translateX(-50%) scale(1.07); opacity: 1; }
}
.hero-aneis {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(135vw, 720px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: .5;
}
.hero-aneis circle { fill: none; stroke: var(--ouro); stroke-opacity: .28; }
.hero-aneis .a1 { stroke-dasharray: 3 9; animation: girar 60s linear infinite; transform-origin: center; }
.hero-aneis .a2 { stroke-dasharray: 1 14; stroke-opacity: .18; animation: girar 90s linear infinite reverse; transform-origin: center; }
@keyframes girar { to { transform: rotate(360deg); } }

.hero-conteudo { position: relative; z-index: 3; }
.hero-saudacao {
  font-size: .68rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--champanhe);
  opacity: 0;
  animation: subir 1.1s var(--transicao) .2s forwards;
}
.hero-nome {
  font-size: clamp(3.2rem, 13.5vw, 7rem);
  line-height: 1.04;
  margin: .8rem 0 .2rem;
  opacity: 0;
  animation: subir 1.1s var(--transicao) .45s forwards;
}
.hero-nome .linha2 { display: block; font-size: .62em; letter-spacing: .06em; }
.hero-frase {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.02rem, 3.6vw, 1.3rem);
  color: var(--texto);
  max-width: 30rem;
  margin: .9rem auto 1.6rem;
  opacity: 0;
  animation: subir 1.1s var(--transicao) .7s forwards;
}
.hero-acoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  opacity: 0;
  animation: subir 1.1s var(--transicao) .9s forwards;
}
.hero-foto-moldura {
  position: relative;
  z-index: 2;
  margin-top: 2.6rem;
  width: min(78vw, 400px);
  opacity: 0;
  animation: revelar-foto 1.6s var(--transicao) .55s forwards;
}
.hero-foto-moldura img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .65));
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
}
@keyframes subir {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes revelar-foto {
  from { opacity: 0; transform: translateY(50px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.hero-brilhos { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.brilho {
  position: absolute;
  width: 5px; height: 5px;
  background: radial-gradient(circle, var(--ouro-claro), transparent 70%);
  border-radius: 50%;
  animation: cintilar 4s ease-in-out infinite;
}
@keyframes cintilar {
  0%, 100% { opacity: 0; transform: scale(.4); }
  50% { opacity: .9; transform: scale(1.15); }
}

/* ---- faixa deslizante ---- */
.faixa {
  position: relative;
  z-index: 4;
  background: var(--grad-ouro);
  padding: .78rem 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin-top: -1.4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}
.faixa-trilho {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: deslizar 26s linear infinite;
}
.faixa span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #241a08;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
.faixa span::after { content: "✦"; font-size: .8rem; letter-spacing: 0; }
@keyframes deslizar { to { transform: translateX(-50%); } }

/* ---- divisor ornamental ---- */
.divisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0 1.4rem;
  margin: 0 auto;
  max-width: 560px;
}
.divisor svg { flex: 1; height: 14px; overflow: visible; }
.divisor svg path {
  stroke: var(--ouro);
  stroke-opacity: .55;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 2.2s var(--transicao);
}
.divisor.visivel svg path { stroke-dashoffset: 0; }
.divisor-joia {
  color: var(--ouro);
  font-size: 1rem;
  transform: rotate(45deg) scale(0);
  transition: transform 1s var(--transicao) .5s;
}
.divisor.visivel .divisor-joia { transform: rotate(0deg) scale(1); }

/* ---- revelação por rolagem ---- */
.revelar {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--transicao), transform 1s var(--transicao);
  transition-delay: var(--atraso, 0s);
}
.revelar.visivel { opacity: 1; transform: none; }

/* ---- sobre ---- */
.sobre-foto {
  position: relative;
  width: min(76vw, 340px);
  margin: 0 auto 2.4rem;
}
.sobre-foto img {
  border-radius: 200px 200px 6px 6px;
  filter: saturate(.92);
}
.sobre-foto::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(217, 171, 78, .4);
  border-radius: 210px 210px 8px 8px;
  pointer-events: none;
}
.sobre-foto::after {
  content: "✦";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ouro);
  background: var(--preto);
  padding: 0 .8rem;
  font-size: .85rem;
}
.sobre-texto p { max-width: 36rem; margin: 0 auto 1.1rem; }
.sobre-texto strong { color: var(--champanhe); font-weight: 400; }
.assinatura { font-size: 2.3rem; margin-top: 1.4rem; }

.numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 620px;
  margin: 3rem auto 0;
}
.numero-item { padding: 1.2rem .4rem; border-top: 1px solid rgba(217, 171, 78, .25); }
.numero-item b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  font-weight: 500;
  color: var(--ouro);
}
.numero-item small {
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* ---- cartões empilhados (procedimentos) ---- */
.pilha { position: relative; }
.cartao {
  position: sticky;
  top: calc(86px + var(--i) * 16px);
  margin: 0 auto 2.2rem;
  max-width: 760px;
  background: linear-gradient(160deg, var(--preto-3), var(--preto-2) 60%);
  border: 1px solid rgba(217, 171, 78, .22);
  border-radius: 18px;
  padding: 2.6rem 1.6rem 2.4rem;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .55);
  overflow: hidden;
  transform-origin: center top;
}
.cartao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(217, 171, 78, .12), transparent 65%);
  pointer-events: none;
}
.cartao-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--ouro);
  letter-spacing: .2em;
}
.cartao h3 { font-size: clamp(1.55rem, 5.4vw, 2.1rem); margin: .5rem 0 .8rem; }
.cartao p { max-width: 30rem; margin: 0 auto 1.5rem; font-size: .92rem; color: var(--texto-suave); }
.cartao-icone { width: 54px; height: 54px; margin: 0 auto .9rem; color: var(--ouro); }
.cartao-icone svg { width: 100%; height: 100%; }
.cartao-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ouro);
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(217, 171, 78, .4);
  transition: gap .4s var(--transicao), color .3s, border-color .3s;
}
.cartao-link:hover { gap: 1rem; color: var(--ouro-claro); border-color: var(--ouro-claro); }

/* ---- resultados ---- */
.resultados-grade {
  display: grid;
  gap: 2.6rem;
  max-width: 880px;
  margin: 3rem auto 0;
}
.comparar {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(217, 171, 78, .25);
  touch-action: none;
  cursor: ew-resize;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.comparar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.comparar .depois { clip-path: inset(0 0 0 50%); }
.comparar-linha {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--ouro-claro);
  pointer-events: none;
  box-shadow: 0 0 14px rgba(217, 171, 78, .7);
}
.comparar-alca {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(11, 9, 6, .72);
  border: 1px solid var(--ouro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ouro-claro);
  font-size: .72rem;
  letter-spacing: .08em;
  backdrop-filter: blur(4px);
}
.comparar-etiqueta {
  position: absolute;
  bottom: 12px;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--marfim);
  background: rgba(11, 9, 6, .62);
  border: 1px solid rgba(217, 171, 78, .35);
  padding: .32rem .8rem;
  border-radius: 30px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.comparar-etiqueta.antes { left: 12px; }
.comparar-etiqueta.dep { right: 12px; }
.resultado-legenda {
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champanhe);
}
.par-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  max-width: 560px;
  margin: 0 auto;
}
.par-fotos figure {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(217, 171, 78, .25);
}
.par-fotos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1.05; }
.par-fotos figcaption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .56rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--marfim);
  background: rgba(11, 9, 6, .62);
  border: 1px solid rgba(217, 171, 78, .35);
  padding: .3rem .75rem;
  border-radius: 30px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ---- aparelho / tecnologia ---- */
.tec {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(217, 171, 78, .08), transparent 60%),
    var(--preto-2);
  border-top: 1px solid rgba(217, 171, 78, .12);
  border-bottom: 1px solid rgba(217, 171, 78, .12);
}
.aparelho-palco { max-width: 420px; margin: 2.2rem auto 0; }
.aparelho-palco svg { width: 100%; height: auto; overflow: visible; }

.ap-corpo { fill: none; stroke: var(--ouro); stroke-width: 1.4; }
.ap-detalhe { fill: none; stroke: rgba(217, 171, 78, .5); stroke-width: 1; }
.ap-luz {
  fill: var(--ouro-claro);
  animation: luz-pulso 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes luz-pulso {
  0%, 100% { opacity: .25; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.25); }
}
.ap-feixe {
  fill: url(#feixeGrad);
  opacity: 0;
  animation: feixe 2.4s ease-in-out infinite;
  transform-origin: top center;
  transform-box: fill-box;
}
@keyframes feixe {
  0%, 18% { opacity: 0; transform: scaleY(.2); }
  38%, 62% { opacity: .85; transform: scaleY(1); }
  82%, 100% { opacity: 0; transform: scaleY(.2); }
}
.ap-onda {
  fill: none;
  stroke: var(--ouro);
  stroke-width: 1;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: onda 2.4s ease-out infinite;
}
.ap-onda.o2 { animation-delay: .35s; }
.ap-onda.o3 { animation-delay: .7s; }
@keyframes onda {
  0%, 30% { opacity: 0; transform: scale(.35); }
  55% { opacity: .8; }
  100% { opacity: 0; transform: scale(1.5); }
}
.ap-faisca {
  fill: var(--ouro-claro);
  animation: cintilar 2.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.ap-pele { stroke: rgba(233, 217, 184, .5); stroke-width: 1.2; fill: none; }
.ap-flutuar { animation: flutuar 5s ease-in-out infinite; }
@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.tec-itens {
  display: grid;
  gap: 1.6rem;
  max-width: 640px;
  margin: 2.8rem auto 0;
}
.tec-item { padding: 0 1rem; }
.tec-item h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--champanhe);
  margin-bottom: .3rem;
}
.tec-item p { font-size: .88rem; color: var(--texto-suave); max-width: 30rem; margin: 0 auto; }

/* ---- depoimentos ---- */
.estrelas { color: var(--ouro); letter-spacing: .3em; font-size: .95rem; }
.nota-google {
  display: inline-flex;
  flex-direction: column;
  gap: .3rem;
  margin: 1rem auto 2.6rem;
  padding: 1.1rem 2.2rem;
  border: 1px solid rgba(217, 171, 78, .3);
  border-radius: 10px;
  background: rgba(217, 171, 78, .05);
}
.nota-google b { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; color: var(--marfim); line-height: 1; }
.nota-google small { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--texto-suave); }
.depo-trilho {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .4rem .2rem 1.4rem;
  scrollbar-width: none;
}
.depo-trilho::-webkit-scrollbar { display: none; }
.depo {
  flex: 0 0 min(84vw, 340px);
  scroll-snap-align: center;
  background: linear-gradient(160deg, var(--preto-3), var(--preto-2));
  border: 1px solid rgba(217, 171, 78, .2);
  border-radius: 14px;
  padding: 2rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  align-items: center;
}
.depo-aspas { font-family: var(--serif); font-size: 3rem; line-height: .4; color: var(--ouro); opacity: .7; }
.depo p { font-size: .9rem; font-style: italic; font-family: var(--serif); font-size: 1.05rem; color: var(--texto); }
.depo footer { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ouro); }

/* ---- CTA final ---- */
.cta-final {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 65% at 50% 110%, rgba(217, 171, 78, .2), transparent 65%),
    var(--preto);
  padding-bottom: 0;
}
.cta-final .titulo { max-width: 22ch; }
.cta-foto {
  width: min(64vw, 300px);
  margin: 2.4rem auto 0;
}
.cta-foto img {
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, .6));
}

/* ---- contato ---- */
.contato-grade {
  display: grid;
  gap: 1.2rem;
  max-width: 680px;
  margin: 2.6rem auto 0;
}
.contato-item {
  padding: 1.7rem 1.3rem;
  border: 1px solid rgba(217, 171, 78, .2);
  border-radius: 12px;
  background: rgba(217, 171, 78, .04);
  transition: border-color .4s, transform .4s var(--transicao);
}
.contato-item:hover { border-color: rgba(217, 171, 78, .5); transform: translateY(-3px); }
.contato-item h4 {
  font-size: .64rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ouro);
  font-weight: 500;
  margin-bottom: .5rem;
}
.contato-item p, .contato-item a.valor { font-family: var(--serif); font-size: 1.15rem; color: var(--marfim); }

/* ---- rodapé ---- */
.rodape {
  border-top: 1px solid rgba(217, 171, 78, .16);
  padding: 3.4rem 1.4rem 6.6rem;
  background: #080604;
}
.rodape-logo { width: 190px; margin: 0 auto 1.4rem; }
.rodape p { font-size: .78rem; color: var(--texto-suave); }
.rodape .social {
  display: inline-flex;
  gap: 1.4rem;
  margin: 1.3rem 0;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--champanhe);
}
.rodape .social a:hover { color: var(--ouro); }
.rodape .fina { font-size: .62rem; letter-spacing: .18em; margin-top: 1.6rem; opacity: .55; }

/* ---- botão whatsapp flutuante ---- */
.zap-flutuante {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-ouro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto);
  box-shadow: 0 10px 30px rgba(217, 171, 78, .4);
  animation: zap-pulso 2.6s ease-in-out infinite;
  transition: transform .3s var(--transicao);
}
.zap-flutuante:hover { transform: scale(1.08); }
.zap-flutuante svg { width: 26px; height: 26px; }
@keyframes zap-pulso {
  0%, 100% { box-shadow: 0 10px 30px rgba(217, 171, 78, .4), 0 0 0 0 rgba(217, 171, 78, .45); }
  60% { box-shadow: 0 10px 30px rgba(217, 171, 78, .4), 0 0 0 16px rgba(217, 171, 78, 0); }
}

/* ---- páginas de procedimento ---- */
.proc-hero {
  position: relative;
  padding: 9rem 1.4rem 4.6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 60% at 50% -10%, rgba(217, 171, 78, .14), transparent 65%),
    var(--preto);
}
.proc-hero .script-fundo {
  position: absolute;
  top: 4.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--script);
  font-size: clamp(5rem, 22vw, 11rem);
  color: rgba(217, 171, 78, .07);
  white-space: nowrap;
  pointer-events: none;
}
.proc-hero .titulo { max-width: 16ch; }
.migalha {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--texto-suave);
}
.migalha a:hover { color: var(--ouro); }
.migalha b { color: var(--ouro); font-weight: 400; }

.proc-secao { padding: 4.2rem 1.4rem; }
.proc-texto { max-width: 37rem; margin: 0 auto; }
.proc-texto p { margin-bottom: 1.1rem; }
.proc-texto strong { color: var(--champanhe); font-weight: 400; }

.beneficios {
  display: grid;
  gap: .9rem;
  max-width: 560px;
  margin: 2.4rem auto 0;
}
.beneficio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1.05rem 1.3rem;
  border: 1px solid rgba(217, 171, 78, .2);
  border-radius: 10px;
  background: rgba(217, 171, 78, .04);
  font-size: .92rem;
  color: var(--texto);
  transition: border-color .4s, background .4s;
}
.beneficio:hover { border-color: rgba(217, 171, 78, .5); background: rgba(217, 171, 78, .08); }
.beneficio::before { content: "✦"; color: var(--ouro); font-size: .8rem; }

.etapas {
  max-width: 600px;
  margin: 2.6rem auto 0;
  display: grid;
  gap: 0;
}
.etapa {
  position: relative;
  padding: 1.6rem 1rem 1.9rem;
}
.etapa:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(217, 171, 78, .35));
  z-index: -1;
}
.etapa-num {
  width: 46px; height: 46px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  border: 1px solid var(--ouro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ouro);
  background: var(--preto);
}
.etapa h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--marfim); margin-bottom: .35rem; }
.etapa p { font-size: .88rem; color: var(--texto-suave); max-width: 28rem; margin: 0 auto; }

.faq { max-width: 620px; margin: 2.4rem auto 0; text-align: left; }
.faq details {
  border-bottom: 1px solid rgba(217, 171, 78, .18);
  padding: 1.1rem .4rem;
}
.faq summary {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--marfim);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ouro);
  font-size: 1.3rem;
  transition: transform .4s var(--transicao);
  flex-shrink: 0;
}
.faq details[open] summary { color: var(--ouro); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: .7rem .2rem 0; font-size: .9rem; color: var(--texto-suave); }

.proc-cta {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(217, 171, 78, .18), transparent 65%),
    var(--preto-2);
  border-top: 1px solid rgba(217, 171, 78, .12);
  padding: 4.6rem 1.4rem 5rem;
}
.proc-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  max-width: 720px;
  margin: 2.8rem auto 0;
}
.proc-nav a {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .55rem 1.05rem;
  border: 1px solid rgba(217, 171, 78, .25);
  border-radius: 30px;
  color: var(--texto-suave);
  transition: color .3s, border-color .3s, background .3s;
}
.proc-nav a:hover, .proc-nav a.ativo { color: var(--ouro); border-color: var(--ouro); background: rgba(217, 171, 78, .06); }

.proc-imagem {
  max-width: 460px;
  margin: 2.4rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(217, 171, 78, .25);
}

/* ============ desktop ============ */
@media (min-width: 900px) {
  body { font-size: 1.05rem; }
  .secao { padding: 7.5rem 2rem; }

  .topo { padding: 1.2rem 3rem; }
  .topo.rolou { padding: .7rem 3rem; }
  .topo-logo img { height: 52px; }
  .topo-links {
    display: flex;
    gap: 2.4rem;
    align-items: center;
  }
  .topo-links a {
    font-size: .68rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--texto);
    position: relative;
    transition: color .3s;
  }
  .topo-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--ouro);
    transition: width .4s var(--transicao), left .4s var(--transicao);
  }
  .topo-links a:hover { color: var(--marfim); }
  .topo-links a:hover::after { width: 100%; left: 0; }
  .menu-btn, .menu-mobile { display: none; }

  .hero { padding-top: 7rem; }
  .hero-foto-moldura { width: min(34vw, 460px); margin-top: -1rem; }
  .hero-nome { font-size: clamp(4.4rem, 7.4vw, 7.2rem); }

  .numeros { gap: 2rem; }
  .cartao { padding: 3.4rem 3rem 3rem; }
  .resultados-grade { grid-template-columns: 1fr 1fr; align-items: start; gap: 2rem; }
  .tec-itens { grid-template-columns: repeat(3, 1fr); max-width: 980px; }
  .contato-grade { grid-template-columns: repeat(3, 1fr); max-width: 980px; }
  .depo-trilho { justify-content: center; flex-wrap: wrap; overflow: visible; }
  .depo { flex: 0 1 300px; }
  .beneficios { grid-template-columns: 1fr 1fr; max-width: 760px; }
  .zap-flutuante { right: 2rem; bottom: 2rem; width: 62px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
