/* =========================================================
   AVANT — Design System
   Dark premium editorial. Um único acento dourado.
   ========================================================= */

:root {
  /* Base */
  --bg:            #0A0A0B;
  --bg-elev:       #101012;
  --surface:       #161619;
  --surface-2:     #1C1C20;
  --border:        rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.16);

  /* Texto */
  --text:      #FAFAF9;
  --text-body: #D4D4D8;
  --text-muted:#9A9AA3;

  /* Acento */
  --accent:      #E8B44C;
  --accent-dim:  #C99735;
  --accent-soft: rgba(232,180,76,.12);
  --accent-line: rgba(232,180,76,.35);

  /* Sinalização */
  --success:  #34D399;
  --whatsapp: #25D366;

  /* Tipografia */
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --fs-hero:  clamp(1.85rem, 4.05vw, 3.35rem);
  --fs-h2:    clamp(1.9rem, 4.2vw, 3.4rem);
  --fs-h3:    clamp(1.15rem, 1.8vw, 1.5rem);
  --fs-lead:  clamp(1.02rem, 1.5vw, 1.3rem);

  /* Espaço */
  --sec-pad:  clamp(80px, 12vh, 150px);
  --container:1200px;

  /* Raios */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;

  /* Camadas */
  --z-bar: 40;
  --z-header: 50;
  --z-menu: 60;
  --z-lightbox: 90;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  /* tira o retangulo azul que o Android desenha ao tocar */
  -webkit-tap-highlight-color: transparent;
  /* O fundo fica no html para a camada .fundo (z-index:-1) ficar visível */
  background: var(--bg);
  /* trava qualquer rolagem lateral criada por efeito 3D */
  overflow-x: clip;
}

body {
  background: transparent;
  overflow-x: clip;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #0A0A0B;
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 820px; }

.ico { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Barra de progresso ---------- */
.progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  z-index: 99;
  transition: width .1s linear;
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .975rem;
  line-height: 1;
  padding: 16px 28px;
  min-height: 48px;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .25s ease, filter .2s ease, color .2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #0A0A0B;
  box-shadow: 0 0 0 rgba(232,180,76,0);
}
.btn--primary:hover {
  filter: brightness(1.07);
  box-shadow: 0 8px 44px rgba(232,180,76,.28);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.3);
}

.btn--sm  { padding: 12px 20px; min-height: 42px; font-size: .9rem; }
.btn--lg  { padding: 18px 34px; min-height: 56px; }
.btn--xl  { padding: 24px 50px; min-height: 66px; font-size: 1.12rem; }
.btn--block { width: 100%; }




/* =========================================================
   BOTAO PRINCIPAL EM DESTAQUE

   Tres camadas: um anel de luz girando na borda, um brilho
   que respira por tras e a varredura que ja existia no hover.
   O angulo do giro e animado por variavel registrada, o que
   deixa o navegador interpolar sozinho, sem script.
   ========================================================= */
@property --giro {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn--pulse {
  position: relative;
  isolation: isolate;
}

/* anel de luz correndo pela borda */
.btn--pulse::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--giro),
    rgba(255,255,255,0) 0deg,
    rgba(255,240,207,.35) 40deg,
    #FFFFFF 70deg,
    #FFF0CF 90deg,
    rgba(255,240,207,.35) 120deg,
    rgba(255,255,255,0) 180deg,
    rgba(255,255,255,0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: giroLuz 2.8s linear infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes giroLuz { to { --giro: 360deg; } }

/* brilho que respira, feito com sombra para nao brigar com a
   varredura de luz que ja usa o ::after */
.btn--pulse { animation: respiroLuz 2.6s ease-in-out infinite; }
@keyframes respiroLuz {
  0%, 100% { box-shadow: 0 0 22px 2px rgba(232,180,76,.30); }
  50%      { box-shadow: 0 0 46px 8px rgba(232,180,76,.55); }
}

.btn--pulse:hover::before { animation-duration: 1.4s; }
.btn--pulse:hover { animation-play-state: paused; box-shadow: 0 0 56px 10px rgba(232,180,76,.6); }

/* =========================================================
   CABEÇALHO
   ========================================================= */
.header {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: var(--z-header);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(13,13,15,.94);
  transition: background-color .3s ease, padding .3s ease, border-color .3s ease;
}
.header.is-scrolled {
  background: rgba(10,10,11,.92);
  border-color: var(--border-strong);
}

.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Logo vertical (símbolo sobre o wordmark): precisa de mais
   altura que uma logo horizontal para o nome continuar legível */
.header__logo img { height: 46px; width: auto; }

/* coluna do meio da grade: fica centralizada sozinha */
.header__nav {
  display: flex; gap: 30px;
  justify-content: center;
  font-size: .92rem;
  font-weight: 500;
}
.header__nav a { color: var(--text-body); transition: color .2s ease; }
.header__nav a:hover { color: var(--text); }

.header__actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }

/* Hambúrguer */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform .3s ease, opacity .3s ease;
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* Menu mobile */
.menu-mobile {
  position: fixed; inset: 0;
  z-index: var(--z-menu);
  background: var(--bg);
  padding: 108px 24px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  animation: menuIn .3s ease;
}
.menu-mobile[hidden] { display: none; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.menu-mobile nav { display: flex; flex-direction: column; gap: 4px; }
.menu-mobile nav a {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.menu-mobile__cta { display: flex; flex-direction: column; gap: 12px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(120px, 16vh, 168px) 0 clamp(70px, 9vh, 104px);
  overflow: hidden;
}
/* O brilho e a malha do hero vêm da camada .fundo (global e estática) */

.hero__inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1080px;
}

/* =========================================================
   O PRESENTE
   A caixa abre sozinha de tempos em tempos (classe .abrindo
   posta pelo JS) e também no hover. A luz, os raios e o
   confete só existem enquanto está aberta.
   ========================================================= */
.gift {
  position: relative;
  width: 320px; height: 275px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  cursor: pointer;
  animation: giftIn 1s cubic-bezier(.34,1.45,.48,1) both;
}
@keyframes giftIn {
  from { opacity: 0; transform: translateY(24px) scale(.78); }
  to   { opacity: 1; transform: none; }
}

.gift__img {
  position: relative; z-index: 3;
  width: 100%; height: auto;
  max-width: 320px;
  animation: giftBreath 4.5s ease-in-out infinite;
  transform-origin: 50% 88%;
  pointer-events: none;
}
.gift:not(.sem-img) .gift__svg,
.gift:not(.sem-img) .gift__beam,
.gift:not(.sem-img) .gift__conf { display: none; }
.gift.sem-img .gift__img { display: none; }

.gift__svg {
  position: relative; z-index: 3;
  width: 164px; height: 164px;
  overflow: visible;
  animation: giftBreath 4.5s ease-in-out infinite;
  transform-origin: 50% 88%;
}
@keyframes giftBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-5px) scale(1.015); }
}

/* Tampa: levanta, gira e afasta.
   fill-box faz o pivô ser o canto da própria tampa,
   não o canto do SVG inteiro. */
.gift__lid {
  transform-box: fill-box;
  transform-origin: 22% 100%;
  transition: transform .75s cubic-bezier(.34,1.5,.5,1);
}
.gift:hover .gift__svg,
.gift.abrindo .gift__svg { animation-play-state: paused; }
.gift:hover .gift__lid,
.gift.abrindo .gift__lid { transform: translate(-13px, -44px) rotate(-21deg); }

.gift__bow { transform-origin: 50% 100%; }

/* Luz de dentro */
.gift__light {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(.4);
  transition: opacity .5s ease .12s, transform .6s cubic-bezier(.34,1.3,.5,1) .12s;
}
.gift:hover .gift__light,
.gift.abrindo .gift__light { opacity: 1; transform: scaleY(1); }

/* Aura de fundo */
.gift__aura {
  position: absolute; inset: -6% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,180,76,.3), rgba(232,180,76,.06) 48%, transparent 68%);
  animation: auraPulsa 4.5s ease-in-out infinite;
  transition: transform .6s ease, opacity .6s ease;
}
@keyframes auraPulsa {
  0%,100% { transform: scale(1);    opacity: .8; }
  50%     { transform: scale(1.14); opacity: 1; }
}
.gift:hover .gift__aura,
.gift.abrindo .gift__aura { transform: scale(1.32); opacity: 1; }

/* Três anéis que saem em ondas */
.gift__ring {
  position: absolute;
  width: 100%; height: 100%;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  opacity: 0;
  animation: anel 4.2s cubic-bezier(.2,.6,.3,1) infinite;
}
.gift__ring--2 { animation-delay: 2.1s; }
.gift__ring--3 { display: none; }
@keyframes anel {
  0%   { transform: scale(.55); opacity: 0; }
  18%  { opacity: .62; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Varredura de brilho girando por trás */
.gift__sweep { display: none; }

/* Feixes de luz que disparam quando abre */
.gift__beam {
  position: absolute;
  left: 50%; bottom: 52%;
  width: 3px; height: 0;
  background: linear-gradient(to top, rgba(247,218,156,.85), transparent);
  transform-origin: 50% 100%;
  opacity: 0;
  transition: height .5s cubic-bezier(.2,.8,.3,1), opacity .4s ease;
}
.gift__beam--1 { transform: translateX(-50%) rotate(-26deg); }
.gift__beam--2 { transform: translateX(-50%) rotate(0deg); }
.gift__beam--3 { transform: translateX(-50%) rotate(26deg); }
.gift:hover .gift__beam,
.gift.abrindo .gift__beam { height: 74px; opacity: .75; }
.gift:hover .gift__beam--2,
.gift.abrindo .gift__beam--2 { height: 92px; }

/* Confete que sobe e cai */
.gift__conf {
  position: absolute;
  left: 50%; top: 46%;
  width: 7px; height: 10px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  z-index: 4;
}
.gift__conf:nth-child(even) { background: #F7DA9C; }
.gift__conf:nth-child(3n)   { background: var(--success); width: 6px; height: 6px; border-radius: 50%; }
.gift:hover .gift__conf,
.gift.abrindo .gift__conf { animation: confete 1.25s cubic-bezier(.24,.9,.4,1) var(--d, 0ms) forwards; }
@keyframes confete {
  0%   { opacity: 0; transform: translate(-50%, 0) rotate(0) scale(.5); }
  14%  { opacity: 1; }
  55%  { opacity: 1; transform: translate(calc(-50% + var(--x)), -74px) rotate(var(--r)) scale(1); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--x) * 1.35), 22px) rotate(calc(var(--r) * 2.4)) scale(.75); }
}

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -.045em;
  margin: 26px 0 22px;
}
/* Distribui as palavras entre as linhas em vez de deixar órfãs */
.hero__title .line > *,
.sec-head h2,
.final h2 { text-wrap: balance; }
/* Brilho que atravessa a linha dourada de tempos em tempos */
.hero__title em {
  color: var(--accent);
  font-style: normal;
  background: linear-gradient(100deg,
    var(--accent) 34%,
    #FFF4DA 46%,
    #FFFFFF 50%,
    #FFF4DA 54%,
    var(--accent) 66%);
  background-size: 280% 100%;
  background-position: 160% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brilhoTexto 7s cubic-bezier(.5,0,.5,1) 2.4s infinite;
}
@keyframes brilhoTexto {
  0%, 62%, 100% { background-position: 160% 0; }
  86%           { background-position: -60% 0; }
}

.hero__lead {
  font-size: var(--fs-lead);
  color: var(--text-body);
  max-width: 56ch;
  line-height: 1.6;
  margin-inline: auto;
}
.hero__lead strong { color: var(--text); font-weight: 600; }

.hero__cta { display: flex; justify-content: center; margin-top: 36px; }

/* A linha que conta o custo real. Não esconder, não diminuir. */
.hero__honest {
  margin-top: 22px;
  max-width: 52ch;
  margin-inline: auto;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.hero__honest strong { color: var(--text-body); font-weight: 600; }

.hero__trust {
  margin-top: 44px; padding-top: 26px;
  border-top: 1px solid var(--border);
  width: 100%; max-width: 640px;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
}
.hero__wa {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .92rem; font-weight: 500;
  color: var(--text-body);
  transition: color .2s ease;
}
.hero__wa:hover { color: var(--whatsapp); }
.hero__wa .ico { width: 18px; height: 18px; color: var(--whatsapp); }

.hero__sep { display: none; }

.hero__stars { display: flex; align-items: center; gap: 10px; }
.hero__stars--empilhado {
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.hero__stars--empilhado .stars svg { width: 18px; height: 18px; }
.stars { display: flex; gap: 3px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.hero__stars p { font-size: .88rem; color: var(--text-muted); }

/* =========================================================
   FAIXA MARQUEE
   ========================================================= */
.marquee-bar {
  background: rgba(255,255,255,.028);
  border-block: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-bar__track { display: flex; width: max-content; animation: scrollX 38s linear infinite; }
.marquee-bar__track > span { padding-right: 0; }
.marquee-bar span {
  display: inline-flex; align-items: center;
  padding-right: 0;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-bar i { color: var(--accent); font-style: normal; margin: 0 22px; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* =========================================================
   SEÇÕES GENÉRICAS
   ========================================================= */
.section { padding-block: var(--sec-pad); }
/* Translúcida de propósito: deixa o fundo vivo aparecer por baixo */
.section--alt { background: rgba(255,255,255,.024); border-block: 1px solid var(--border); }

.sec-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.eyebrow {
  display: inline-block;
  font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.sec-head h2 { font-size: var(--fs-h2); font-weight: 700; }
.sec-head p { margin-top: 18px; font-size: var(--fs-lead); color: var(--text-muted); }

.sec-cta { margin-top: clamp(40px, 5vw, 64px); text-align: center; }
.sec-cta__line {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 600; color: var(--text);
  margin-bottom: 26px;
}
.sec-cta__line em { color: var(--accent); font-style: normal; }

/* =========================================================
   FLUXO DE 5 PASSOS
   Trilha vertical com marcadores numerados.
   ========================================================= */
.fluxo {
  position: relative;
  max-width: 780px;
  display: flex; flex-direction: column;
  gap: 4px;
}
/* Trilho apagado */
.fluxo::before {
  content: '';
  position: absolute;
  left: 25px; top: 28px; bottom: 46px;
  width: 1px;
  background: var(--border);
}
/* Trilho aceso: cresce conforme a pessoa desce a página */
.fluxo::after {
  content: '';
  position: absolute;
  left: 25px; top: 28px; bottom: 46px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(232,180,76,.5));
  transform-origin: 50% 0;
  transform: scaleY(var(--trilha, 0));
  box-shadow: 0 0 10px rgba(232,180,76,.55);
}

.fluxo__num {
  transition: background-color .4s ease, border-color .4s ease, color .4s ease, box-shadow .4s ease;
}
/* Marcador acende quando o trilho chega nele */
.fluxo__item.aceso .fluxo__num {
  border-color: var(--accent);
  color: #0A0A0B;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft), 0 0 22px rgba(232,180,76,.35);
}
.fluxo__item.aceso.fluxo__item--final .fluxo__num {
  background: var(--success);
  border-color: var(--success);
  box-shadow: 0 0 0 5px rgba(52,211,153,.14), 0 0 22px rgba(52,211,153,.35);
}

.fluxo__item {
  position: relative;
  display: flex; gap: 24px;
  padding: 12px 0 30px;
}

.fluxo__num {
  position: relative; z-index: 1;
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
}

.fluxo__txt { padding-top: 9px; }
.fluxo__item h3 { font-size: var(--fs-h3); margin-bottom: 10px; }
.fluxo__item h3 em { color: var(--accent); font-style: normal; }
.fluxo__item p { color: var(--text-muted); font-size: .97rem; max-width: 58ch; }
.fluxo__item p + p { margin-top: 14px; }
.fluxo__item strong { color: var(--text); font-weight: 600; }

/* Passo 3 — o que mais gera erro, então ganha peso visual */
.fluxo__item--alerta .fluxo__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A0A0B;
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.fluxo__aviso {
  display: flex; align-items: flex-start; gap: 11px;
  margin-top: 16px !important;
  padding: 14px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-sm);
  color: var(--text-body) !important;
  font-size: .9rem !important;
}
.fluxo__aviso .ico { width: 19px; height: 19px; color: var(--accent); margin-top: 1px; }

/* O botão fica no passo 1, onde a pessoa acabou de ler o que fazer */
.fluxo__btn { margin-top: 22px; }

.fluxo__item--final .fluxo__num {
  background: rgba(52,211,153,.12);
  border-color: rgba(52,211,153,.4);
  color: var(--success);
}
.fluxo__item--final { padding-bottom: 0; }

/* =========================================================
   PROVAS — citações
   ========================================================= */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px 26px;
  transition: border-color .25s ease, transform .25s ease;
}
.quote:hover { border-color: var(--accent-line); }
.quote__mark { width: 26px; height: 26px; color: var(--accent); opacity: .55; margin-bottom: 16px; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.14rem; font-weight: 600;
  color: var(--text); line-height: 1.42;
  letter-spacing: -.015em;
}
.quote figcaption { margin-top: 18px; font-size: .85rem; color: var(--text-muted); }
.quote figcaption strong { color: var(--text-body); font-weight: 600; }
.quote figcaption i { font-style: normal; color: var(--accent); margin: 0 5px; }

/* =========================================================
   PROVAS — galeria de conversas
   ========================================================= */
.gallery {
  margin-top: clamp(44px, 6vw, 72px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.gallery__track {
  display: flex; width: max-content;
  animation: scrollX 42s linear infinite;
}
/* margem no item, nao gap no container: e isso que faz o loop
   fechar sem deixar buraco no meio da passagem */
.gallery__track > * { margin-right: 20px; }
.gallery:hover .gallery__track { animation-play-state: paused; }

.conv {
  flex: 0 0 auto;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.conv:hover {
  border-color: var(--accent-line);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
}

.conv__top {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 16px;
  background: #1F2C33;
  border-bottom: 1px solid rgba(0,0,0,.3);
}
.conv__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-dim));
  color: #0A0A0B;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.conv__who { min-width: 0; }
.conv__name {
  font-size: .88rem; font-weight: 600; color: #E9EDEF;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.conv__status { font-size: .7rem; color: #8696A0; }
.conv__seal {
  margin-left: auto; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  background: rgba(52,211,153,.12);
  border: 1px solid rgba(52,211,153,.3);
  border-radius: 999px;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--success);
  white-space: nowrap;
}
.conv__seal::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--success);
}

/* Print real x conversa desenhada: um ou outro, nunca os dois */
.conv:not(.sem-print) .conv__body--desenho { display: none; }
.conv.sem-print .conv__body--print { display: none; }

/* O print já traz o cabeçalho do WhatsApp — o nosso sairia duplicado */
.conv:not(.sem-print) .conv__top { display: none; }

.conv__body--print {
  position: relative;
  background: #0B141A;
  height: 470px;
  overflow: hidden;
  padding: 0 !important;
}
.conv__seal--sobre {
  position: absolute;
  top: 12px; right: 12px;
  margin: 0;
  background: rgba(10,10,11,.86);
}
.conv__body--print img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.conv__body {
  position: relative;
  background: #0B141A;
  padding: 16px 14px 18px;
  height: 430px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  overflow: hidden;
}
.conv__body--desenho::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.conv__body--desenho::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 56px;
  background: linear-gradient(180deg, #0B141A, transparent);
  pointer-events: none;
}

.msg {
  position: relative;
  max-width: 86%;
  padding: 8px 11px 6px;
  border-radius: 8px;
  font-size: .8rem;
  line-height: 1.45;
  color: #E9EDEF;
}
.msg--in  { align-self: flex-start; background: #1F2C33; border-top-left-radius: 2px; }
.msg--out { align-self: flex-end;  background: #005C4B; border-top-right-radius: 2px; }
.msg__time {
  display: block;
  margin-top: 2px;
  text-align: right;
  font-size: .62rem;
  color: rgba(233,237,239,.5);
}
.msg--out .msg__time::after {
  content: ' ✓✓';
  color: #53BDEB;
  letter-spacing: -2px;
}

.conv__foot {
  padding: 11px 16px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.conv__foot strong { color: var(--text-body); font-weight: 600; }
.conv__foot span { font-size: .74rem; }

.gallery__hint {
  text-align: center;
  margin-top: 22px;
  font-size: .84rem;
  color: var(--text-muted);
}

/* ---------- Números ---------- */
.stats {
  margin-top: clamp(52px, 7vw, 84px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat { padding: 34px 26px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
}
.stat__label { display: block; margin-top: 10px; font-size: .88rem; color: var(--text-muted); }

/* =========================================================
   POR QUE É DE GRAÇA
   ========================================================= */
.motivo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.motivo__destaque {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.motivo__texto p { color: var(--text-body); font-size: 1.02rem; margin-bottom: 16px; }

.motivo__troca {
  display: flex; align-items: flex-start; gap: 13px;
  margin-top: 26px !important;
  padding: 18px 20px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-sm);
  color: var(--text-body) !important;
  font-size: .96rem !important;
}
.motivo__troca .ico { width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }

.motivo__cards { display: flex; flex-direction: column; gap: 16px; }
.motivo__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 26px;
  transition: border-color .25s ease, background-color .25s ease;
}
.motivo__card:hover { border-color: var(--accent-line); background: var(--surface-2); }
.motivo__ico { width: 24px; height: 24px; color: var(--accent); margin-bottom: 14px; }
.motivo__card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.motivo__card p { color: var(--text-muted); font-size: .93rem; }

/* =========================================================
   VITRINE DE SITES
   ========================================================= */
.vitrine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  perspective: 1600px;
}

.site-card { margin: 0; }

.navegador {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #0F0F12;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transition: transform .35s cubic-bezier(.2,.9,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.site-card:hover .navegador {
  transform: translateY(-8px);
  border-color: var(--accent-line);
  box-shadow: 0 32px 74px rgba(0,0,0,.62);
}

.navegador__barra {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  background: #17171B;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navegador__barra i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.navegador__barra span {
  flex: 1;
  height: 14px;
  margin-left: 8px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
}

.navegador__tela { aspect-ratio: 5 / 4; overflow: hidden; }
.navegador__tela img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ---------------------------------------------------------
   TELAS DE EXEMPLO

   Cada nicho tem estrutura propria: a barbearia e escura e
   centralizada, a loja e uma vitrine com faixa de promocao,
   a assistencia e uma pagina de orcamento com formulario.
   Tudo em cqw (porcentagem da largura do navegador falso),
   para as proporcoes ficarem de site real.
   --------------------------------------------------------- */
.navegador__tela { container-type: inline-size; }

.tela {
  height: 100%;
  display: flex; flex-direction: column;
  font-family: var(--font-body);
  font-size: 2.9cqw;
  line-height: 1.35;
}
.tela__wa {
  width: 4cqw; height: 4cqw;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}

/* ===================== 1. BARBEARIA =====================
   Tela dividida: foto ocupando a esquerda inteira e o
   conteudo empilhado na direita. Nada a ver com a loja
   nem com a pagina de orcamento. */
.tela--barbearia {
  background: #0E0B08;
  color: #EFE2CF;
  display: grid;
  grid-template-columns: 44% 1fr;
}

.tb__foto {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 45% 32%, rgba(255,214,150,.30), transparent 66%),
    linear-gradient(155deg, #3A2A1A 0%, #241812 45%, #120C08 100%);
}
.tb__foto-luz {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 34% at 52% 30%, rgba(255,232,190,.34), transparent 70%),
    radial-gradient(30% 26% at 38% 68%, rgba(217,164,65,.20), transparent 72%);
}
.tb__selo {
  position: absolute;
  left: 8%; bottom: 8%;
  display: flex; flex-direction: column; gap: .5cqw;
  background: rgba(14,11,8,.82);
  border: 1px solid rgba(217,164,65,.34);
  border-radius: 1.2cqw;
  padding: 1.8cqw 2.2cqw;
}
.tb__selo b { font-size: 1.15em; font-weight: 700; color: #F3E4CB; line-height: 1; }
.tb__selo i { font-style: normal; font-size: .56em; color: #D9A441; letter-spacing: .12em; }
.tb__selo u { text-decoration: none; font-size: .5em; opacity: .6; }

.tb__lado {
  display: flex; flex-direction: column;
  padding: 3cqw 3.4cqw;
}
.tb__topo {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 3cqw;
  border-bottom: 1px solid rgba(239,226,207,.12);
}
.tb__topo b {
  font-family: var(--font-display);
  font-size: .74em; font-weight: 700; letter-spacing: .16em;
  color: #D9A441; white-space: nowrap;
}
.tb__hamb { display: flex; flex-direction: column; gap: .7cqw; }
.tb__hamb i { display: block; width: 3.4cqw; height: 1px; background: rgba(239,226,207,.5); }

.tb__meio { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 3cqw 0; }
.tb__eyebrow {
  font-size: .54em; letter-spacing: .26em;
  color: rgba(217,164,65,.9);
  margin-bottom: 1.8cqw;
}
.tb__meio h4 {
  font-family: var(--font-display);
  font-size: 1.9em; font-weight: 700;
  line-height: 1.04; letter-spacing: -.03em;
  color: #FBF3E6;
  margin-bottom: 1.8cqw;
}
.tb__meio p { font-size: .66em; opacity: .6; margin-bottom: 3cqw; max-width: 22em; }
.tb__acoes { display: flex; align-items: center; gap: 3cqw; }
.tb__btn {
  font-size: .66em; font-weight: 600;
  padding: 1.6cqw 3.4cqw;
  background: #D9A441; color: #17120C;
  border-radius: .6cqw;
  white-space: nowrap;
}
.tb__link {
  font-size: .62em;
  border-bottom: 1px solid rgba(217,164,65,.5);
  padding-bottom: .3cqw;
  color: #D9A441;
  white-space: nowrap;
}

.tb__horario {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2cqw;
  padding-top: 3cqw;
  border-top: 1px solid rgba(239,226,207,.12);
}
.tb__hr { display: flex; flex-direction: column; gap: .5cqw; }
.tb__hr b { font-size: .52em; letter-spacing: .16em; opacity: .5; text-transform: uppercase; }
.tb__hr i { font-style: normal; font-size: .64em; }
.tb__vaga { color: #6FD79B; }

/* ===================== 2. MODA =====================
   Loja clara, faixa de promocao, vitrine de 4 produtos */
.tela--moda { background: #FFFDFB; color: #2A211C; }

.tm__faixa {
  background: #2A211C; color: #FBF7F4;
  text-align: center;
  font-size: .58em; letter-spacing: .18em; font-weight: 600;
  padding: 1.4cqw;
  flex-shrink: 0;
}
.tm__nav {
  display: flex; align-items: center; gap: 2.4cqw;
  padding: 2.6cqw 3cqw;
  border-bottom: 1px solid rgba(42,33,28,.1);
  flex-shrink: 0;
}
.tm__nav b {
  font-family: var(--font-display);
  font-size: .82em; font-weight: 700; letter-spacing: .14em;
  color: #A8604F; white-space: nowrap;
}
.tm__nav nav { display: flex; gap: 2.2cqw; margin-left: auto; }
.tm__nav nav span { font-size: .66em; opacity: .62; white-space: nowrap; }
.tm__icones { display: flex; gap: 1.4cqw; }
.tm__icones i { width: 2.2cqw; height: 2.2cqw; border: 1px solid rgba(42,33,28,.35); border-radius: 50%; display: block; }

.tm__hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
  flex-shrink: 0;
  min-height: 26cqw;
}
.tm__hero-txt {
  padding: 5cqw 3cqw;
  display: flex; flex-direction: column; justify-content: center;
  background: #F6EDE7;
}
.tm__hero-txt h4 {
  font-family: var(--font-display);
  font-size: 1.75em; font-weight: 700;
  line-height: 1.06; letter-spacing: -.03em;
  color: #2A211C;
  margin-bottom: 2.6cqw;
}
.tm__btn {
  align-self: flex-start;
  font-size: .68em; font-weight: 600;
  padding: 1.5cqw 3.4cqw;
  background: #A8604F; color: #fff;
  border-radius: .5cqw;
}
.tm__hero-foto {
  display: block;
  background:
    radial-gradient(70% 80% at 40% 30%, rgba(255,255,255,.55), transparent 62%),
    linear-gradient(150deg, #E3C6B6 0%, #C99C88 55%, #A87766 100%);
}

.tm__vitrine {
  flex: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2cqw;
  padding: 3.4cqw 3cqw;
  align-content: start;
}
.tm__prod { display: flex; flex-direction: column; gap: .9cqw; }
.tm__foto {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: .8cqw;
}
.tm__tag {
  position: absolute; top: 1cqw; left: 1cqw;
  font-size: .42em; font-style: normal; font-weight: 700;
  letter-spacing: .1em;
  background: #2A211C; color: #fff;
  padding: .5cqw 1cqw;
  border-radius: .3cqw;
}
.tm__prod:nth-child(n+3) .tm__tag { display: none; }
.tm__prod b { font-size: .62em; font-weight: 500; }
.tm__prod i { font-size: .62em; font-style: normal; font-weight: 600; color: #A8604F; }
.tm__foto--1 { background: linear-gradient(150deg, #EBD6C9, #C9A492); }
.tm__foto--2 { background: linear-gradient(150deg, #DED2CE, #B49E98); }
.tm__foto--3 { background: linear-gradient(150deg, #F0E0D2, #CDAE99); }
.tm__foto--4 { background: linear-gradient(150deg, #E2D5CC, #BFA391); }

/* ===================== 3. CELULAR =====================
   Pagina de orcamento: texto de um lado, formulario do outro */
.tela--cell { background: #0B1119; color: #DCE7F5; }

.tc__nav {
  display: flex; align-items: center; gap: 2.4cqw;
  padding: 2.6cqw 3cqw;
  background: #0F1826;
  border-bottom: 1px solid rgba(63,169,245,.16);
  flex-shrink: 0;
}
.tc__nav b {
  font-family: var(--font-display);
  font-size: .82em; font-weight: 700; letter-spacing: .1em;
  color: #3FA9F5; white-space: nowrap;
}
.tc__nav nav { display: flex; gap: 2.2cqw; margin-left: auto; }
.tc__nav nav span { font-size: .66em; opacity: .68; white-space: nowrap; }
.tc__fone {
  font-size: .64em; font-weight: 600;
  color: #3FA9F5; white-space: nowrap;
}

.tc__hero {
  flex: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 3cqw;
  padding: 5cqw 3cqw;
  background:
    radial-gradient(60% 90% at 78% 30%, rgba(63,169,245,.20), transparent 66%),
    linear-gradient(155deg, #101B2B 0%, #0A1119 70%);
  align-items: center;
}
.tc__selo {
  display: inline-block;
  font-size: .56em; font-weight: 700; letter-spacing: .16em;
  color: #3FA9F5;
  border: 1px solid rgba(63,169,245,.45);
  border-radius: 3cqw;
  padding: .8cqw 2cqw;
  margin-bottom: 2.4cqw;
}
.tc__txt h4 {
  font-family: var(--font-display);
  font-size: 1.55em; font-weight: 700;
  line-height: 1.08; letter-spacing: -.025em;
  color: #EAF3FD;
  margin-bottom: 1.6cqw;
}
.tc__txt p { font-size: .7em; opacity: .66; margin-bottom: 2.6cqw; }
.tc__marcas { display: flex; gap: 1.4cqw; }
.tc__marcas i {
  display: block;
  width: 5.5cqw; height: 2.2cqw;
  border-radius: .4cqw;
  background: rgba(220,231,245,.14);
}

.tc__form {
  background: #13203150;
  border: 1px solid rgba(63,169,245,.24);
  border-radius: 1.4cqw;
  padding: 3cqw 2.6cqw;
  display: flex; flex-direction: column; gap: 1.6cqw;
}
.tc__form b { font-size: .74em; font-weight: 600; color: #EAF3FD; }
.tc__campo {
  display: block; height: 4cqw;
  background: rgba(220,231,245,.08);
  border: 1px solid rgba(220,231,245,.12);
  border-radius: .6cqw;
}
.tc__campo--curto { width: 60%; }
.tc__enviar {
  text-align: center;
  font-size: .68em; font-weight: 600;
  padding: 1.6cqw;
  background: #3FA9F5; color: #06121F;
  border-radius: .6cqw;
  margin-top: .6cqw;
}

.tc__barra {
  display: flex; align-items: center; gap: 3cqw;
  padding: 2.4cqw 3cqw;
  background: #0F1826;
  border-top: 1px solid rgba(63,169,245,.16);
  font-size: .62em; opacity: .8;
  flex-shrink: 0;
}
.tc__barra span { display: flex; align-items: center; gap: 1cqw; white-space: nowrap; }
.tc__barra i {
  width: 1.6cqw; height: 1.6cqw;
  border-radius: 50%;
  background: #3FA9F5;
  display: block;
}
.tc__barra .tela__wa { margin-left: auto; }

.site-card figcaption {
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 4px 0;
}
.site-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; color: var(--text);
}
.site-card figcaption span { font-size: .85rem; color: var(--text-muted); }

/* =========================================================
   BENTO
   ========================================================= */
/* Grid de 6 colunas: 4+2 / 2+2+2 / 6 — fecha sem buraco */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento > * { grid-column: span 2; }
.bento__item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px 28px;
  overflow: hidden;
  transition: border-color .25s ease, background-color .25s ease;
}
.bento__item:hover { border-color: var(--border-strong); background: var(--surface-2); }
.bento__item--hero {
  grid-column: span 4;
  padding: 40px 36px;
}

/* Último card ocupa a linha inteira, em formato horizontal */
.bento__item--wide {
  grid-column: span 6;
  display: flex; align-items: center; gap: 28px;
  padding: 28px 32px;
}
.bento__item--wide .bento__ico { margin-bottom: 0; }
.bento__item--wide h3 { margin-bottom: 0; white-space: nowrap; }
.bento__item--wide p { margin-left: auto; text-align: right; max-width: 42ch; }
.bento__item--hero:hover { border-color: rgba(37,211,102,.35); }
.bento__glow {
  position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(37,211,102,.14), transparent 65%);
  pointer-events: none;
}
.bento__ico { width: 26px; height: 26px; color: var(--accent); margin-bottom: 20px; }
.bento__ico--wa { width: 34px; height: 34px; color: var(--whatsapp); }
.bento__item h3 { font-size: var(--fs-h3); margin-bottom: 10px; }
.bento__item--hero h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.bento__item p { color: var(--text-muted); font-size: .95rem; max-width: 46ch; }

/* =========================================================
   COMPARAÇÃO
   ========================================================= */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.compare__col { padding: 34px 30px; border-radius: var(--r-md); }
.compare__col h3 {
  font-size: var(--fs-h3);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.compare__col ul { display: flex; flex-direction: column; gap: 18px; }
.compare__col li { display: flex; gap: 13px; font-size: .97rem; line-height: 1.55; }
.compare__col svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; }

.compare__col--bad { border: 1px solid var(--border); }
.compare__col--bad h3 { color: var(--text-muted); }
.compare__col--bad li { color: var(--text-muted); }
.ico-x { color: #6B6B74; }

.compare__col--good {
  background: var(--surface);
  border: 1px solid var(--accent-line);
}
.compare__col--good li { color: var(--text-body); }
.ico-check { color: var(--success); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.015em;
  transition: color .2s ease;
}
.faq__q:hover { color: var(--accent); }

.faq__sign {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__sign::before, .faq__sign::after {
  content: '';
  position: absolute; top: 50%; left: 0;
  width: 18px; height: 1.5px;
  background: var(--accent);
  transition: transform .3s ease;
}
.faq__sign::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__sign::after { transform: rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  padding-bottom: 26px;
  color: var(--text-body);
  font-size: .98rem;
  max-width: 62ch;
}
.faq__a a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final {
  position: relative;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  padding-block: clamp(90px, 14vh, 170px);
  overflow: hidden;
}
.final__glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  max-width: 130vw;
  background: radial-gradient(ellipse, rgba(232,180,76,.11), transparent 62%);
  pointer-events: none;
}
.final__inner { position: relative; z-index: 1; text-align: center; }
.final__gift {
  width: 46px; height: 46px;
  margin: 0 auto 26px;
  color: var(--accent);
  animation: halo 3.4s ease-in-out infinite;
}
.final h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.04em; }
.final h2 em { color: var(--accent); font-style: normal; }
.final > .container > p {
  margin: 24px auto 38px;
  max-width: 56ch;
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   RODAPÉ
   ========================================================= */
.footer { border-top: 1px solid var(--border); padding-top: 64px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer__brand img { height: 78px; width: auto; margin-bottom: 22px; }
.footer__brand p { color: var(--text-muted); font-size: .95rem; max-width: 34ch; margin-bottom: 20px; }
.footer__wa {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--text-body); font-weight: 500; font-size: .95rem;
  transition: color .2s ease;
}
.footer__wa:hover { color: var(--whatsapp); }
.footer__wa .ico { color: var(--whatsapp); }

.footer h4 {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__nav { display: flex; flex-direction: column; gap: 13px; align-items: flex-start; }
.footer__nav a { color: var(--text-body); font-size: .95rem; transition: color .2s ease; }
.footer__nav a:hover { color: var(--accent); }
.footer__cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.footer__cta h4 { margin-bottom: 8px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  padding-block: 26px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-muted);
}
.footer__legal { color: #6B6B74; }

/* =========================================================
   FLUTUANTES
   ========================================================= */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: var(--z-bar);
  display: inline-flex; align-items: center; gap: 0;
  height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37,211,102,.34);
  overflow: hidden;
  transition: gap .3s ease, box-shadow .25s ease;
}
.wa-float .ico { width: 26px; height: 26px; }
.wa-float span {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 600; font-size: .93rem;
  transition: max-width .35s ease, opacity .25s ease;
}
.wa-float:hover { gap: 10px; box-shadow: 0 10px 40px rgba(37,211,102,.5); }
.wa-float:hover span { max-width: 170px; opacity: 1; }

.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-bar);
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(13,13,15,.96);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform .32s ease;
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar .btn { flex: 1; }
.mobile-bar__wa {
  display: grid; place-items: center;
  width: 52px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--whatsapp);
  color: #fff;
  flex-shrink: 0;
}
.mobile-bar__wa .ico { width: 24px; height: 24px; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 24px;
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__stage {
  max-width: 400px; width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: thin;
}
.lightbox__stage .conv { width: 100%; cursor: default; }
.lightbox__stage .conv:hover { transform: none; box-shadow: none; border-color: var(--border); }
.lightbox__stage .conv__body { height: auto; }
.lightbox__stage .conv__body::after { display: none; }
/* Ampliado, o print aparece inteiro em vez de cortado */
.lightbox__stage .conv__body--print { height: auto; }
.lightbox__stage .conv__body--print img { height: auto; object-fit: contain; }
.lightbox__stage img { width: 100%; border-radius: var(--r-md); }

.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  transition: background-color .2s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,.1); }
.lightbox__close svg { width: 20px; height: 20px; }

.lightbox__nav {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  flex-shrink: 0;
  transition: background-color .2s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,.1); }
.lightbox__nav svg { width: 22px; height: 22px; }

body.is-locked { overflow: hidden; }

/* =========================================================
   FUNDO

   Estatico de proposito. Camadas animadas de fundo (manchas
   se movendo, poeira, ondas) sao pintadas a cada quadro na
   tela inteira e sao a coisa mais cara de uma pagina longa.
   Aqui e um gradiente fixo: custo zero durante a rolagem.
   ========================================================= */
.fundo {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(46% 34% at 14% 6%,  rgba(232,180,76,.16), transparent 62%),
    radial-gradient(40% 30% at 88% 24%, rgba(214,150,60,.10), transparent 62%),
    radial-gradient(44% 32% at 76% 72%, rgba(37,211,102,.08), transparent 64%),
    radial-gradient(50% 36% at 26% 88%, rgba(232,180,76,.11), transparent 64%);
}
/* Halo que segue o cursor. É o único elemento que se move no
   fundo: um só, movido por transform, e o laço para assim que
   ele alcança o ponteiro. */
.fundo__halo {
  position: absolute;
  top: 0; left: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,180,76,.14), rgba(232,180,76,.045) 45%, transparent 70%);
  opacity: 0;
  transition: opacity .7s ease;
  will-change: transform;
}
.tem-cursor .fundo__halo { opacity: 1; }

/* malha fina, tambem estatica */
.fundo::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 74% 60% at 50% 42%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 74% 60% at 50% 42%, #000 20%, transparent 78%);
}

/* =========================================================
   ANIMAÇÃO DE ENTRADA
   ========================================================= */
/* Entradas: só transform e opacity.
   Nada de filter/blur aqui — desfoque anima em CPU e é o que
   faz a rolagem engasgar. */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 54px, 0);
  transition:
    opacity .85s cubic-bezier(.22,1,.32,1),
    transform 1.05s cubic-bezier(.22,1,.32,1);
  transition-delay: var(--d, 0ms);
}
.js .reveal.is-in { opacity: 1; transform: translate3d(0,0,0); }

.js .reveal--left  { transform: translate3d(-64px, 0, 0); }
.js .reveal--right { transform: translate3d(64px, 0, 0); }
.js .reveal--left.is-in,
.js .reveal--right.is-in { transform: translate3d(0,0,0); }

.js .reveal--scale { transform: translate3d(0, 28px, 0) scale(.94); }
.js .reveal--scale.is-in { transform: translate3d(0,0,0) scale(1); }

/* ---------------------------------------------------------
   FLIP CARD

   O card entra girado de lado, como uma carta sendo virada
   na mesa. O pai carrega a perspectiva para todos girarem
   em torno do mesmo ponto de fuga.
   --------------------------------------------------------- */
[data-flip] { perspective: 1400px; }

.js .reveal--flip {
  contain: paint;
  opacity: 0;
  transform: rotateY(-68deg) translate3d(0, 20px, 0);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  transition:
    opacity .6s ease,
    transform 1.15s cubic-bezier(.2,.9,.25,1);
  transition-delay: var(--d, 0ms);
}
.js .reveal--flip.is-in {
  opacity: 1;
  transform: rotateY(0) translate3d(0,0,0);
}

/* Alterna o lado do giro para não virarem todos iguais */
.js [data-flip] > *:nth-child(even).reveal--flip {
  transform: rotateY(68deg) translate3d(0, 20px, 0);
}
.js [data-flip] > *:nth-child(even).reveal--flip.is-in {
  transform: rotateY(0) translate3d(0,0,0);
}

/* Tomba para trás, como se levantasse do chão */
.js .reveal--tomba {
  opacity: 0;
  transform: perspective(1200px) rotateX(-52deg) translate3d(0, 38px, 0);
  transform-origin: 50% 100%;
  transition:
    opacity .62s ease,
    transform 1.05s cubic-bezier(.2,.9,.25,1);
  transition-delay: var(--d, 0ms);
}
.js .reveal--tomba.is-in {
  opacity: 1;
  transform: perspective(1200px) rotateX(0) translate3d(0,0,0);
}

/* Título do hero: cada linha sobe por trás de uma máscara */
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
}
.js .hero__title .line > * {
  display: block;
  transform: translate3d(0, 105%, 0);
  transition: transform 1s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0ms);
}
.hero__title.is-in .line > * { transform: translate3d(0,0,0); }

/* Elementos com parallax controlado pelo scroll */
[data-parallax] { will-change: transform; }

/* Brilho que segue o mouse dentro dos grupos de cards */
[data-spotlight] > * { position: relative; }
[data-spotlight] > *::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 50%),
    rgba(232,180,76,.09),
    transparent 62%
  );
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}
[data-spotlight]:hover > *::before { opacity: 1; }
[data-spotlight] > * > * { position: relative; z-index: 1; }

/* Varredura de luz no botão principal */
.btn--primary { position: relative; overflow: hidden; }
.btn--pulse { overflow: visible; }
.btn--primary::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.btn--primary:hover::after { animation: sweep .75s ease; }
@keyframes sweep {
  0%   { left: -60%; opacity: 0; }
  18%  { opacity: 1; }
  100% { left: 115%; opacity: 0; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .quotes { grid-template-columns: 1fr 1fr; }
  .vitrine { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__item--hero, .bento__item--wide { grid-column: span 4; }
  .bento__item--wide { flex-direction: row; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .header__inner { grid-template-columns: auto 1fr; }
  .header__inner { padding: 9px 12px 9px 16px; }
  .header__logo img { height: 38px; }
}

@media (max-width: 720px) {
  :root { --sec-pad: 72px; }
  .container { padding-inline: 20px; }

  /* Sem entradas laterais no celular: elas criam rolagem
     horizontal e jogam a pagina para o lado. */
  .js .reveal--left,
  .js .reveal--right,
  .js .reveal--tomba { transform: translate3d(0, 44px, 0); }
  .js .reveal--left.is-in,
  .js .reveal--right.is-in,
  .js .reveal--tomba.is-in { transform: translate3d(0, 0, 0); }

  /* o giro do flip tambem estoura a largura em tela pequena */
  .js .reveal--flip { transform: rotateY(-42deg) translate3d(0, 16px, 0); }
  .js [data-flip] > *:nth-child(even).reveal--flip { transform: rotateY(42deg) translate3d(0, 16px, 0); }

  .hero { padding-top: 112px; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { width: 100%; padding-inline: 20px; }
  .hero__trust { flex-direction: column; gap: 18px; }
  .hero__sep { display: none; }
  .gift { width: 240px; height: 208px; margin-bottom: 6px; }
  .gift__svg { width: 122px; height: 122px; }
  .gift__img { max-width: 240px; }

  /* Fluxo em coluna, com o número acima do texto */
  .fluxo::before { left: 20px; }
  .fluxo__item { gap: 16px; padding-bottom: 26px; }
  .fluxo__num { width: 40px; height: 40px; font-size: .98rem; }
  .fluxo__txt { padding-top: 6px; }
  .fluxo__item--alerta .fluxo__num { box-shadow: 0 0 0 4px var(--accent-soft); }

  .quotes, .compare, .bento, .vitrine, .motivo { grid-template-columns: 1fr; }
  .motivo { gap: 34px; }
  .vitrine { gap: 30px; }
  .bento > *, .bento__item--hero, .bento__item--wide { grid-column: span 1; }
  .bento__item--hero { padding: 32px 26px; }
  .bento__item--wide {
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 30px 28px;
  }
  .bento__item--wide .bento__ico { margin-bottom: 20px; }
  .bento__item--wide h3 { margin-bottom: 10px; white-space: normal; }
  .bento__item--wide p { margin-left: 0; text-align: left; }

  .mock-phone { width: 108px; right: 0; bottom: -26px; }

  /* Galeria vira carrossel com swipe */
  .gallery {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__track {
    animation: none;
    width: max-content;
    padding-inline: 20px;
  }
  .gallery__track > * { margin-right: 14px; }
  .conv { width: 78vw; max-width: 320px; scroll-snap-align: center; }
  .conv:hover { transform: none; }

  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--border); }

  .compare__col { padding: 28px 24px; }

  .final__cta { flex-direction: column; }
  .final__cta .btn { width: 100%; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }

  /* No celular a barra fixa já carrega o botão de WhatsApp —
     o flutuante sairia por cima do CTA do topo. */
  .mobile-bar { display: flex; }
  .wa-float { display: none; }
  .footer { padding-bottom: 92px; }

  :root { --fs-hero: clamp(1.95rem, 8.6vw, 2.6rem); }
  .badge { font-size: .68rem; padding: 7px 13px 7px 10px; letter-spacing: .07em; }

  /* No celular a navegação é fechar e deslizar a galeria */
  .lightbox { padding: 64px 14px 20px; }
  .lightbox__nav { display: none; }
  .lightbox__stage { max-width: 100%; }
  .lightbox__stage .conv__seal { display: none; }
  .lightbox__close { top: 14px; right: 14px; }
}

/* =========================================================
   MOVIMENTO REDUZIDO
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__title .line > * { transform: none !important; }
  .hero__title em {
    -webkit-text-fill-color: var(--accent);
    background: none;
  }
    [data-spotlight] > *::before { display: none; }
  .gift__lid, .gift__light, .gift__beam, .gift__conf { transform: none !important; }
  .gift__light { opacity: 1; }
  .fluxo::after { transform: scaleY(1); }
}
