/* ============================================================
   Dr. Erasmo Correa | Implantes e lentes de contato dental
   Odontologia estética premium — petróleo + dourado + marfim
   ============================================================ */

:root {
  /* superfícies — ritmo claro / tom / escuro */
  --canvas:          hsl(48 24% 98%);
  --superficie:      hsl(42 22% 95%);
  --canvas-tom:      hsl(40 20% 93%);
  --canvas-escuro:   hsl(193 66% 12%);
  --canvas-escuro-2: hsl(193 52% 17%);

  /* tinta */
  --tinta:           hsl(196 18% 16%);
  --texto-suave:     hsl(40 7% 41%);
  --texto-inverso:   hsl(48 30% 97%);
  --texto-inverso-suave: hsl(40 16% 80%);

  /* primária (petróleo) */
  --primaria:        hsl(193 62% 18%);
  --primaria-hover:  hsl(193 66% 11%);

  /* ouro champagne */
  --ouro:            hsl(41 47% 58%);   /* decorativo / texto sobre escuro */
  --ouro-forte:      hsl(41 52% 32%);   /* texto dourado sobre claro (AA) */

  /* linhas e sombras */
  --hairline:        hsl(196 15% 16% / .12);
  --hairline-forte:  hsl(196 15% 16% / .22);
  --hairline-inversa:hsl(48 30% 97% / .16);
  --sombra:          0 18px 50px hsl(193 40% 12% / .10);
  --sombra-hover:    0 26px 64px hsl(193 40% 12% / .16);

  /* tipografia fluida */
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --text-h1:     clamp(2.35rem, 5.4vw, 4.15rem);
  --text-h2:     clamp(1.75rem, 3.4vw, 2.85rem);
  --text-h3:     clamp(1.15rem, 1.7vw, 1.4rem);
  --text-body:   clamp(1rem, calc(.35vw + .94rem), 1.125rem);
  --text-number: clamp(3rem, 7vw, 5.5rem);
  --text-kicker: .74rem;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(3.5rem, 7vw, 6.5rem);
  --content-gap: clamp(1.5rem, 3vw, 2.75rem);
  --header-h: 70px;

  /* raios e easing */
  --r-sm: 12px; --r-md: 18px; --r-lg: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--tinta);
  background: var(--canvas);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.14; letter-spacing: -.01em; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--ouro); outline-offset: 3px; border-radius: 4px; }

.pular {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primaria); color: var(--texto-inverso);
  padding: 10px 16px; border-radius: var(--r-sm); transition: top .2s var(--ease);
}
.pular:focus { top: 12px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.sec { padding-block: var(--section-space); position: relative; }
.sec--claro  { background: var(--canvas); color: var(--tinta); }
.sec--tom    { background: var(--canvas-tom); color: var(--tinta); }
.sec--escuro { background: var(--canvas-escuro); color: var(--texto-inverso); }

/* ---------- tipografia auxiliar ---------- */
.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: var(--text-kicker);
  font-weight: 600;
  color: var(--ouro-forte);
  margin-bottom: .9rem;
}
.kicker--ouro { color: var(--ouro); }
.sec-cab { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-titulo { font-size: var(--text-h2); }
.sec-intro { color: var(--texto-suave); margin-top: 1rem; font-size: 1.08rem; }
.sec--escuro .sec-intro { color: var(--texto-inverso-suave); }

.divisor {
  display: block; height: 2px; width: 84px; margin-top: 1.4rem;
  background: linear-gradient(90deg, var(--ouro), transparent);
  transform-origin: left; border-radius: 2px;
}
[data-reveal].divisor { opacity: 1; transform: scaleX(0); transition: transform .9s var(--ease-expo); }
[data-reveal].divisor.is-in { transform: scaleX(1); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: var(--r-sm); border: 1.5px solid transparent;
  cursor: pointer; min-height: 46px; text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-primario { background: var(--primaria); color: var(--texto-inverso); box-shadow: var(--sombra); }
.btn-primario:hover { background: var(--primaria-hover); transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.btn-primario:active { transform: translateY(0); }
.btn-fantasma { background: transparent; border-color: var(--hairline-forte); color: var(--tinta); }
.btn-fantasma:hover { border-color: var(--primaria); color: var(--primaria); transform: translateY(-2px); }
.btn-claro { color: var(--texto-inverso); border-color: var(--hairline-inversa); }
.btn-claro:hover { border-color: var(--ouro); color: var(--ouro); }
.btn-grande { padding: 15px 30px; min-height: 52px; font-size: 1.06rem; }
.btn-card { margin-top: 1.4rem; align-self: flex-start; }
.ico-zap { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner {
  max-width: var(--maxw); margin-inline: auto; padding: 10px var(--gutter);
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
}
header.is-scrolled {
  background: hsl(48 24% 98% / .9);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--hairline);
  box-shadow: 0 8px 30px hsl(193 40% 12% / .07);
}
.marca { display: flex; align-items: center; gap: .7rem; color: var(--texto-inverso); }
header.is-scrolled .marca { color: var(--tinta); }
.marca-mono {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px;
  background: var(--primaria); color: var(--ouro);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em;
  border: 1px solid hsl(41 47% 58% / .4); flex-shrink: 0;
}
.marca-txt { display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; line-height: 1.1; }
.marca-txt small { font-family: var(--font-body); font-weight: 400; font-size: .68rem; letter-spacing: .02em; opacity: .8; margin-top: 2px; }
.nav { display: flex; gap: 1.6rem; }
.nav a {
  color: var(--texto-inverso); font-weight: 600; font-size: .95rem; position: relative; padding: 4px 0;
}
header.is-scrolled .nav a { color: var(--tinta); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--ouro); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.btn-header { padding: 10px 18px; min-height: 44px; box-shadow: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-foto { position: absolute; inset: 0; z-index: -2; }
.hero-foto img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(104deg, hsl(193 66% 9% / .92) 0%, hsl(193 66% 10% / .78) 38%, hsl(193 66% 11% / .34) 68%, hsl(193 66% 12% / .12) 100%),
    linear-gradient(0deg, hsl(193 66% 9% / .55) 0%, transparent 45%);
}
.hero-conteudo {
  position: relative; width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero-conteudo > * { max-width: 40ch; }
.hero-titulo {
  color: var(--texto-inverso); font-size: var(--text-h1); margin-top: .3rem;
  max-width: 20ch; text-wrap: balance;
}
.assina {
  color: hsl(41 60% 78%); font-style: italic;
  background-image: linear-gradient(90deg, var(--ouro), hsl(41 55% 70%));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 2px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.assina--claro { color: var(--ouro-forte); background-image: linear-gradient(90deg, var(--ouro-forte), var(--ouro)); }
.hero .assina { background-size: 0% 2px; }
.hero.is-loaded .assina { animation: desenha .95s var(--ease-expo) .8s forwards; }
@keyframes desenha { to { background-size: 100% 2px; } }

.hero-sub { color: var(--texto-inverso-suave); margin-top: 1.35rem; font-size: 1.14rem; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; max-width: none; }
.hero-micro { color: var(--texto-inverso-suave); font-size: .9rem; margin-top: .9rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.9rem;
  padding: 9px 16px 9px 12px; border-radius: 100px;
  background: hsl(193 66% 9% / .5); border: 1px solid var(--hairline-inversa);
  backdrop-filter: blur(4px); min-height: 44px;
}
.hero-badge:hover { border-color: hsl(41 47% 58% / .6); }
.badge-estrelas { display: inline-flex; gap: 1px; }
.badge-estrelas .estrela { width: 17px; height: 17px; fill: var(--ouro); }
.badge-txt { color: var(--texto-inverso); font-size: .92rem; }
.badge-txt strong { font-weight: 600; }

/* ============================================================
   CONFIANÇA / TRUST-STRIP
   ============================================================ */
.sec-confianca { padding-block: clamp(2.2rem, 4vw, 3rem); }
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  text-align: center;
}
.trust li {
  display: flex; flex-direction: column; gap: .25rem;
  padding: .6rem .5rem; position: relative;
}
.trust li:not(:last-child)::after {
  content: ""; position: absolute; right: -.5rem; top: 18%; bottom: 18%; width: 1px; background: var(--hairline);
}
.trust-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.35rem, 2.4vw, 1.9rem); color: var(--primaria); line-height: 1.1; }
.trust-lab { font-size: .86rem; color: var(--texto-suave); }

/* ============================================================
   CUIDADO / PILARES
   ============================================================ */
.pilares { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--content-gap); }
.pilar {
  background: var(--superficie); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: clamp(1.5rem, 2.5vw, 2.1rem); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pilar::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--ouro), transparent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.pilar:hover { transform: translateY(-3px); box-shadow: var(--sombra-hover); }
.pilar:hover::before { transform: scaleX(1); }
.pilar-ico {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: var(--canvas-tom); margin-bottom: 1.2rem;
}
.pilar-ico svg, .proc-ico svg, .local-ico svg { fill: none; stroke: var(--primaria); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pilar-ico svg { width: 26px; height: 26px; }
.pilar h3 { font-size: var(--text-h3); margin-bottom: .55rem; }
.pilar p { color: var(--texto-suave); font-size: 1rem; }

/* ============================================================
   PROCEDIMENTOS
   ============================================================ */
.proc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--content-gap); }
.proc-card {
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: clamp(1.7rem, 3vw, 2.6rem); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.proc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--ouro), transparent); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.proc-card:hover { transform: translateY(-3px); box-shadow: var(--sombra-hover); }
.proc-card:hover::before { transform: scaleX(1); }
.proc-ico {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 16px;
  background: var(--canvas-tom); margin-bottom: 1.3rem;
}
.proc-ico svg { width: 32px; height: 32px; }
.proc-card h3 { font-size: clamp(1.4rem, 2.3vw, 1.75rem); margin-bottom: .7rem; }
.proc-obj {
  font-family: var(--font-display); font-style: italic; color: var(--ouro-forte);
  font-size: 1.05rem; margin-bottom: .9rem; line-height: 1.35;
}
.proc-card > p:not(.proc-obj) { color: var(--texto-suave); }
.proc-nota { text-align: center; color: var(--texto-suave); font-size: .96rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--content-gap); }
.passo { position: relative; padding-top: .5rem; }
.passo-num {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-number);
  color: var(--primaria); opacity: .16; line-height: .8; display: block; margin-bottom: -.35em;
}
.passo h3 { font-size: var(--text-h3); margin: .9rem 0 .5rem; position: relative; }
.passo p { color: var(--texto-suave); font-size: .98rem; }
.como-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   AMBIENTE
   ============================================================ */
.ambiente-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--content-gap); }
.ambiente-fig { margin: 0; }
.ambiente-img { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sombra); aspect-ratio: 16 / 11; }
.ambiente-fig:nth-child(2) .ambiente-img img { object-position: center 60%; }
.ambiente-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ambiente-fig:hover .ambiente-img img { transform: scale(1.04); }
.ambiente-fig figcaption {
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
  color: var(--texto-suave); margin-top: .95rem; padding-left: 1rem;
  border-left: 2px solid var(--ouro);
}

/* ============================================================
   AVALIAÇÕES (escuro)
   ============================================================ */
.aval-topo {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--hairline-inversa);
}
.aval-nota { display: flex; flex-direction: column; align-items: flex-start; gap: .3rem; }
.aval-num { font-family: var(--font-display); font-weight: 700; font-size: var(--text-number); color: var(--texto-inverso); line-height: 1; }
.aval-estrelas { display: inline-flex; gap: 3px; }
.aval-estrelas .estrela { width: 26px; height: 26px; fill: hsl(41 47% 58% / .28); transition: fill .3s var(--ease); }
.aval-estrelas .estrela.acesa { fill: var(--ouro); }
.aval-cont { color: var(--texto-inverso-suave); font-size: .92rem; }
.aval-cab .sec-titulo { color: var(--texto-inverso); }

.aval-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--content-gap); }
.review {
  background: var(--canvas-escuro-2); border: 1px solid var(--hairline-inversa);
  border-radius: var(--r-md); padding: 1.7rem 1.5rem 1.5rem; position: relative;
  display: flex; flex-direction: column;
}
.aspas { font-family: var(--font-display); font-size: 3.4rem; line-height: .5; color: var(--ouro); opacity: .55; height: 1.1rem; }
.review p { color: var(--texto-inverso); font-size: 1rem; margin-top: .6rem; flex: 1; }
.review footer { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .2rem; }
.review cite { font-style: normal; font-weight: 600; color: var(--texto-inverso); }
.review-estrelas { color: var(--ouro); font-size: .95rem; letter-spacing: 2px; }

.aval-rodape { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: clamp(2rem, 4vw, 3rem); }
.aval-consulta { color: var(--texto-inverso-suave); font-size: .84rem; }

/* ============================================================
   LOCALIZAÇÃO E FAQ
   ============================================================ */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.local-lista { display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0 2.2rem; }
.local-lista li { display: flex; gap: .9rem; align-items: flex-start; }
.local-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--superficie); flex-shrink: 0; }
.local-ico svg { width: 20px; height: 20px; }
.local-lista span:last-child { padding-top: .35rem; color: var(--texto-suave); }

.faq { display: flex; flex-direction: column; gap: .7rem; }
.faq details {
  border: 1px solid var(--hairline); border-radius: var(--r-sm); background: var(--superficie);
  overflow: hidden; transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: var(--hairline-forte); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1rem 1.1rem; min-height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.chevron { width: 12px; height: 12px; border-right: 2px solid var(--ouro-forte); border-bottom: 2px solid var(--ouro-forte); transform: rotate(45deg); transition: transform .3s var(--ease); flex-shrink: 0; margin-right: 4px; }
.faq details[open] .chevron { transform: rotate(-135deg); }
.faq-corpo { display: grid; grid-template-rows: 1fr; }
.faq-corpo > p { overflow: hidden; padding: 0 1.1rem 1.1rem; color: var(--texto-suave); font-size: 1rem; }

.local-mapa { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sombra); border: 1px solid var(--hairline); }
.local-mapa iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ============================================================
   AGENDAR / FECHAMENTO (escuro)
   ============================================================ */
.sec-agendar { text-align: center; }
.agendar-box { max-width: 42ch; margin-inline: auto; }
.agendar-box .kicker { margin-inline: auto; }
.agendar-titulo { color: var(--texto-inverso); font-size: clamp(2rem, 4.4vw, 3.4rem); }
.agendar-titulo .assina { white-space: normal; }
.agendar-sub { color: var(--texto-inverso-suave); margin-top: 1.2rem; font-size: 1.1rem; }
.agendar-cta { margin-top: 2.2rem; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.rodape { background: hsl(193 66% 9%); color: var(--texto-inverso-suave); padding-top: clamp(3rem, 6vw, 4.5rem); }
.rodape-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 2.5rem; }
.rodape-marca { display: flex; gap: .9rem; align-items: flex-start; }
.rodape-marca > div { display: flex; flex-direction: column; gap: .3rem; }
.rodape-marca strong { color: var(--texto-inverso); font-family: var(--font-display); font-size: 1.15rem; }
.rodape-marca span { font-size: .9rem; }
.rodape-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rodape-col h4 { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ouro); margin-bottom: .8rem; }
.rodape-col a, .rodape-col p { display: block; font-size: .94rem; color: var(--texto-inverso-suave); margin-bottom: .4rem; }
.rodape-col a { transition: color .2s var(--ease); }
.rodape-col a:hover { color: var(--ouro); }
.rodape-fim {
  border-top: 1px solid var(--hairline-inversa); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  font-size: .82rem;
}
.rodape-nota { max-width: 52ch; opacity: .85; }

/* ============================================================
   STICKY CTA MOBILE + ZAP FLOAT
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: hsl(48 24% 98% / .92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  transform: translateY(115%); transition: transform .35s var(--ease);
  display: none;
}
.sticky-cta.is-on { transform: translateY(0); }
.sticky-cta .btn { width: 100%; min-height: 52px; }

.zap-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 95;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--primaria); color: var(--texto-inverso);
  display: grid; place-items: center; box-shadow: var(--sombra-hover);
  border: 1px solid hsl(41 47% 58% / .35);
  opacity: 0; transform: scale(.9); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .2s var(--ease);
}
.zap-float.is-ready { opacity: 1; transform: scale(1); pointer-events: auto; }
.zap-float.is-ready:hover { background: var(--primaria-hover); transform: scale(1.06); }
.zap-float.is-hidden { opacity: 0 !important; transform: scale(.6) !important; pointer-events: none !important; }
.zap-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ============================================================
   MOTION — reveal
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: calc(var(--d, 0) * 80ms);
}
[data-reveal="zoom"] { transform: scale(.96); }
[data-reveal="right"] { transform: translateX(16px); }
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes hero-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes hero-fade { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
.hero.is-loaded .hero-conteudo > * { animation: hero-rise .8s var(--ease) both; }
.hero.is-loaded .hero-conteudo > *:nth-child(1) { animation-delay: .05s; }
.hero.is-loaded .hero-conteudo > *:nth-child(2) { animation-delay: .14s; }
.hero.is-loaded .hero-conteudo > *:nth-child(3) { animation-delay: .26s; }
.hero.is-loaded .hero-conteudo > *:nth-child(4),
.hero.is-loaded .hero-conteudo > *:nth-child(5) { animation-delay: .38s; }
.hero.is-loaded .hero-conteudo > *:nth-child(6) { animation-delay: .5s; }
.hero.is-loaded .hero-foto { animation: hero-fade 1.1s var(--ease-expo) both; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .aval-topo { grid-template-columns: 1fr; text-align: left; }
  .aval-grid { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: 1fr; }
  .local-mapa iframe { min-height: 320px; }
  .rodape-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .marca-txt small { display: none; }
  .trust { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .trust li:nth-child(2)::after { display: none; }
  .pilares { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .passos { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.2rem; }
  .ambiente-grid { grid-template-columns: 1fr; }
  .aval-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .zap-float { display: none; }
  body { padding-bottom: 76px; }
  .hero-badge { margin-top: 1.4rem; }
}
@media (max-width: 400px) {
  .btn-header span { display: none; }
  .btn-header { padding: 10px 12px; }
  .hero-sub { font-size: 1.05rem; }
  .trust-num { font-size: 1.35rem; }
  .passos { grid-template-columns: 1fr; }
}

/* ============================================================
   PREFERS-REDUCED-MOTION (regra dura)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-reveal].divisor, .divisor { transform: scaleX(1) !important; }
  .hero .assina { background-size: 100% 2px !important; animation: none !important; }
  .aval-estrelas .estrela { fill: var(--ouro) !important; }
}
