/* =====================================================================
   PedeMais — Landing v2.0
   Design system autoral. Sem Tailwind, sem build, sem Font Awesome.
   Edite este arquivo direto e suba por FTP.
   --------------------------------------------------------------------
   Sumário:
   01. Tokens            08. Bento / Recursos
   02. Reset & base      09. Calculadora de comissão
   03. Utilitários       10. Passos
   04. Efeitos           11. Demo ao vivo / Showcase
   05. Navbar            12. Comparativo / Planos
   06. Hero              13. Depoimentos / FAQ / Cadastro
   07. Marquee / Stats   14. Rodapé / Flutuantes / Responsivo
   ===================================================================== */

/* ============================ 01. TOKENS ============================ */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* Marca */
  --laranja: #ff6b00;
  --laranja-fogo: #ff3d00;
  --laranja-claro: #ff9838;
  --magenta: #ff1b6b;
  --verde: #22c55e;
  --verde-neon: #00d68f;
  --violeta: #7c3aed;
  --ciano: #00d4ff;
  --amarelo: #ffc402;

  /* Neutros */
  --tinta: #0b1020;
  --tinta-2: #131a2e;
  --grafite: #1e293b;
  --ardosia: #475569;
  --cinza: #64748b;
  --cinza-claro: #94a3b8;
  --linha: #e8ecf4;
  --nevoa: #f6f8fc;
  --papel: #ffffff;

  /* Gradientes */
  --g-quente: linear-gradient(135deg, #ff9838 0%, #ff6b00 40%, #ff2e63 100%);
  --g-fogo: linear-gradient(135deg, #ffb347 0%, #ff3d00 100%);
  --g-verde: linear-gradient(135deg, #00d68f 0%, #22c55e 100%);
  --g-frio: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --g-noite: linear-gradient(165deg, #0b1020 0%, #151d38 55%, #0b1020 100%);
  --g-vidro: linear-gradient(150deg, rgb(255 255 255 / 82%), rgb(255 255 255 / 42%));

  /* Sombras */
  --s-xs: 0 1px 2px rgb(11 16 32 / 6%);
  --s-sm: 0 2px 8px rgb(11 16 32 / 6%), 0 1px 2px rgb(11 16 32 / 4%);
  --s-md: 0 12px 28px -8px rgb(11 16 32 / 12%), 0 4px 10px -4px rgb(11 16 32 / 8%);
  --s-lg: 0 28px 60px -18px rgb(11 16 32 / 20%), 0 10px 24px -12px rgb(11 16 32 / 12%);
  --s-xl: 0 48px 100px -30px rgb(11 16 32 / 30%), 0 18px 40px -20px rgb(11 16 32 / 16%);
  --s-fogo: 0 18px 40px -12px rgb(255 61 0 / 45%);
  --s-verde: 0 18px 40px -12px rgb(0 214 143 / 40%);

  /* Formas */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-full: 999px;

  /* Tipografia */
  --f-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --f-texto: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --largura: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  /* Curvas */
  --mola: cubic-bezier(.34, 1.56, .64, 1);
  --suave: cubic-bezier(.16, 1, .3, 1);
}

/* ========================= 02. RESET & BASE ========================= */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--f-texto);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grafite);
  background: var(--papel);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg,
video { display: block; max-width: 100%; height: auto; }

/* SVG inline não herda o [hidden] do HTML em todos os navegadores */
[hidden] { display: none !important; }

button,
input,
textarea,
select { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--tinta);
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.7rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

p { text-wrap: pretty; }

::selection { background: var(--laranja); color: #fff; }

:focus-visible {
  outline: 3px solid var(--laranja);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--nevoa); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--laranja), var(--laranja-fogo));
  border-radius: 99px;
  border: 3px solid var(--nevoa);
}
::-webkit-scrollbar-thumb:hover { background: var(--laranja-fogo); }

/* Pular para conteúdo (a11y) */
.pular {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 14px 22px;
  background: var(--tinta);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
}
.pular:focus { left: 0; }

/* ========================= 03. UTILITÁRIOS ========================= */
.wrap {
  width: 100%;
  max-width: var(--largura);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.secao { position: relative; padding: clamp(72px, 10vw, 132px) 0; }
.secao--nevoa { background: var(--nevoa); }
.secao--branco { background: var(--papel); }

.secao--noite {
  background: var(--g-noite);
  color: #cbd5e1;
  overflow: hidden;
}
.secao--noite h2,
.secao--noite h3 { color: #fff; }

/* Cabeçalho de seção */
.cab { max-width: 720px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.cab--esq { margin-inline: 0; text-align: left; }
.cab p {
  margin-top: 18px;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--cinza);
  line-height: 1.7;
}
.secao--noite .cab p { color: #94a3b8; }

/* Etiqueta */
.etiqueta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 22px;
  border-radius: var(--r-full);
  background: rgb(255 107 0 / 9%);
  border: 1px solid rgb(255 107 0 / 20%);
  color: #d94f00;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.etiqueta svg { width: 15px; height: 15px; flex: none; }
.etiqueta--verde {
  background: rgb(0 214 143 / 10%);
  border-color: rgb(0 214 143 / 25%);
  color: #059669;
}
.etiqueta--vidro {
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 14%);
  color: #fff;
  backdrop-filter: blur(10px);
}

/* Texto com gradiente */
.grad {
  background: var(--g-quente);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* fallback para navegadores sem background-clip */
  -webkit-text-fill-color: transparent;
}
.grad--verde { background-image: var(--g-verde); }
.grad--frio { background-image: var(--g-frio); }

/* Sublinhado desenhado à mão */
.rabisco { position: relative; display: inline-block; white-space: nowrap; }
.rabisco svg {
  position: absolute;
  left: -2%;
  bottom: -.22em;
  width: 104%;
  height: .38em;
  overflow: visible;
}
.rabisco path {
  fill: none;
  stroke: url(#gradRabisco);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.1s var(--suave) .35s;
}
.reveal.ver .rabisco path,
.ver .rabisco path { stroke-dashoffset: 0; }

/* Botões */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--mola), box-shadow .35s var(--suave), background-color .25s;
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: scale(.96); }

.btn--fogo {
  background: var(--g-quente);
  background-size: 180% 180%;
  color: #fff;
  box-shadow: var(--s-fogo);
  animation: gradAnda 7s ease infinite;
}
.btn--fogo:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 26px 56px -14px rgb(255 61 0 / 60%);
}

.btn--verde {
  background: var(--g-verde);
  color: #04291d;
  box-shadow: var(--s-verde);
}
.btn--verde:hover { transform: translateY(-3px) scale(1.03); }

.btn--fantasma {
  background: rgb(255 255 255 / 70%);
  color: var(--tinta);
  border: 1.5px solid var(--linha);
  backdrop-filter: blur(10px);
  box-shadow: var(--s-sm);
}
.btn--fantasma:hover {
  border-color: rgb(255 107 0 / 45%);
  color: var(--laranja-fogo);
  transform: translateY(-3px);
  box-shadow: var(--s-md);
}

.btn--vidro {
  background: rgb(255 255 255 / 8%);
  border: 1.5px solid rgb(255 255 255 / 18%);
  color: #fff;
  backdrop-filter: blur(12px);
}
.btn--vidro:hover { background: rgb(255 255 255 / 15%); transform: translateY(-3px); }

.btn--bloco { width: 100%; }
.btn--gg { padding: 21px 40px; font-size: 1.1rem; }
.btn--pp { padding: 12px 22px; font-size: .9rem; }

/* Brilho que varre o botão */
.btn::after {
  content: '';
  position: absolute;
  inset-block: 0;
  left: -130%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgb(255 255 255 / 45%), transparent);
  transform: skewX(-22deg);
  z-index: -1;
}
.btn:hover::after { animation: varrer .85s var(--suave); }

@keyframes varrer { to { left: 145%; } }
@keyframes gradAnda {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ========================== 04. EFEITOS ========================== */

/* --- Aurora (manchas de cor desfocadas em movimento) --- */
.aurora {
  position: absolute;
  inset: -25%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  filter: blur(90px);
  opacity: .62;
}
.aurora i {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: flutuaAurora 26s ease-in-out infinite;
}
.aurora i:nth-child(1) {
  width: 46vw; height: 46vw; top: 2%; left: -6%;
  background: radial-gradient(circle, #ff8a00 0%, transparent 68%);
}
.aurora i:nth-child(2) {
  width: 40vw; height: 40vw; top: 28%; right: -8%;
  background: radial-gradient(circle, #ff1b6b 0%, transparent 68%);
  animation-delay: -9s;
}
.aurora i:nth-child(3) {
  width: 38vw; height: 38vw; bottom: -6%; left: 26%;
  background: radial-gradient(circle, #00d68f 0%, transparent 68%);
  animation-delay: -17s;
}
.aurora i:nth-child(4) {
  width: 30vw; height: 30vw; top: 46%; left: 42%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  animation-delay: -5s;
}
.aurora--noite { opacity: .38; }

@keyframes flutuaAurora {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(7%, -9%) scale(1.14); }
  66%      { transform: translate(-6%, 7%) scale(.9); }
}

/* --- Grão de filme --- */
.grao {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* --- Malha quadriculada --- */
.malha {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(11 16 32 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(11 16 32 / 4%) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 75% 62% at 50% 42%, #000 25%, transparent 78%);
}
.malha--noite {
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
}

/* --- Cartão de vidro --- */
.vidro {
  position: relative;
  background: var(--g-vidro);
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: var(--r-lg);
  box-shadow: var(--s-md);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.vidro--escuro {
  background: linear-gradient(150deg, rgb(255 255 255 / 9%), rgb(255 255 255 / 3%));
  border-color: rgb(255 255 255 / 12%);
  box-shadow: 0 24px 60px -24px rgb(0 0 0 / 60%);
}

/* --- Cartão base com borda gradiente rotativa --- */
.cartao {
  position: relative;
  padding: 34px;
  background: var(--papel);
  border: 1px solid var(--linha);
  border-radius: var(--r-lg);
  box-shadow: var(--s-sm);
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--suave), box-shadow .5s var(--suave), border-color .4s;
}
.cartao:hover {
  transform: translateY(-7px);
  box-shadow: var(--s-lg);
  border-color: transparent;
}

/* Borda animada — aparece no hover.
   z-index positivo porque o cartão tem fundo opaco: com -1 a borda
   ficaria escondida atrás dele. O anel tem 1.5px na sangria, então
   nunca encosta no conteúdo. */
.cartao::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    transparent 0deg 200deg,
    var(--c1, #ff6b00) 265deg,
    var(--c2, #ff1b6b) 310deg,
    transparent 360deg
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity .45s;
}
.cartao:hover::before { opacity: 1; animation: girar 4s linear infinite; }

@keyframes girar { to { --angle: 360deg; } }

/* --- Holofote que segue o cursor --- */
.holofote::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    460px circle at var(--mx, 50%) var(--my, 50%),
    rgb(255 107 0 / 11%),
    transparent 42%
  );
  opacity: 0;
  transition: opacity .4s;
}
.holofote:hover::after { opacity: 1; }

/* --- Inclinação 3D --- */
.tilt {
  transform-style: preserve-3d;
  transition: transform .5s var(--suave);
  will-change: transform;
}
.tilt-palco { perspective: 1400px; }

/* --- Flutuação --- */
.flutua { animation: flutua 6s ease-in-out infinite; }
.flutua--2 { animation: flutua 7.5s ease-in-out -2s infinite; }
.flutua--3 { animation: flutua 5.5s ease-in-out -4s infinite; }

@keyframes flutua {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(1.6deg); }
}

/* --- Pulso e anel --- */
.ponto-vivo {
  position: relative;
  width: 8px; height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--verde-neon);
}
.ponto-vivo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: anel 1.8s ease-out infinite;
}
@keyframes anel {
  0%   { transform: scale(1); opacity: .75; }
  100% { transform: scale(2.9); opacity: 0; }
}

/* --- Reveal ao rolar --- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--suave), transform .85s var(--suave);
}
.reveal.ver { opacity: 1; transform: none; }
.reveal--esq { transform: translateX(-40px); }
.reveal--dir { transform: translateX(40px); }
.reveal--zoom { transform: scale(.93); }

/* --- Barra de progresso do scroll --- */
.progresso {
  position: fixed;
  top: 0; left: 0;
  z-index: 3000;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--g-quente);
  box-shadow: 0 0 14px rgb(255 61 0 / 60%);
}

/* ========================== 05. NAVBAR ========================== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height .35s var(--suave), background-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.grudou {
  height: 64px;
  background: rgb(255 255 255 / 82%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgb(11 16 32 / 6%), 0 10px 34px -18px rgb(11 16 32 / 22%);
}
.nav__int {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.nav__logo img { height: 38px; width: auto; transition: height .35s var(--suave); }
.nav.grudou .nav__logo img { height: 32px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  padding: 9px 15px;
  border-radius: var(--r-full);
  font-size: .93rem;
  font-weight: 600;
  color: var(--ardosia);
  transition: color .25s, background-color .25s;
}
.nav__link:hover { color: var(--tinta); background: rgb(11 16 32 / 4%); }
.nav__link--parceiro {
  color: #b44700;
  background: rgb(255 107 0 / 8%);
  box-shadow: inset 0 0 0 1px rgb(255 107 0 / 16%);
  font-weight: 800;
}
.nav__link--parceiro:hover {
  color: #9a3500;
  background: rgb(255 107 0 / 14%);
}
.nav__link--vivo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d94f00;
  font-weight: 800;
}

.nav__acoes { display: flex; align-items: center; gap: 12px; }
.nav__entrar {
  padding: 9px 15px;
  font-size: .93rem;
  font-weight: 700;
  color: var(--ardosia);
  border-radius: var(--r-full);
  transition: color .25s;
}
.nav__entrar:hover { color: var(--laranja-fogo); }

/* Hambúrguer */
.hamb {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--linha);
  background: rgb(255 255 255 / 80%);
  backdrop-filter: blur(8px);
}
.hamb span {
  position: relative;
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--tinta);
  transition: transform .35s var(--mola), opacity .2s;
}
.hamb span::before,
.hamb span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: inherit;
  transition: transform .35s var(--mola);
}
.hamb span::before { top: -7px; }
.hamb span::after  { top: 7px; }
.hamb[aria-expanded='true'] span { background: transparent; }
.hamb[aria-expanded='true'] span::before { transform: translateY(7px) rotate(45deg); background: var(--tinta); }
.hamb[aria-expanded='true'] span::after  { transform: translateY(-7px) rotate(-45deg); background: var(--tinta); }

/* Menu mobile */
.menu-mob {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: calc(var(--nav-h) + 26px) var(--gutter) 40px;
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(26px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .35s, transform .35s var(--suave), visibility .35s;
  overflow-y: auto;
}
.menu-mob.aberto { opacity: 1; visibility: visible; transform: none; }
.menu-mob a {
  padding: 17px 4px;
  border-bottom: 1px solid var(--linha);
  font-family: var(--f-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--tinta);
}
.menu-mob .btn { margin-top: 22px; }
.menu-mob .menu-mob__parceiro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-inline: 18px;
  border: 1px solid rgb(255 107 0 / 22%);
  border-radius: var(--r-md);
  background: rgb(255 107 0 / 8%);
  color: #b44700;
}
.menu-mob__parceiro svg { width: 21px; height: 21px; }

/* =========================== 06. HERO =========================== */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 92px)) 0 clamp(64px, 9vw, 110px);
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f3 42%, var(--nevoa) 100%);
}
.hero__grade {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.hero h1 { margin-bottom: 26px; }
.hero__sub {
  max-width: 33rem;
  margin-bottom: 34px;
  font-size: clamp(1.04rem, 1.9vw, 1.2rem);
  line-height: 1.72;
  color: var(--ardosia);
}
.hero__sub b { color: var(--tinta); font-weight: 700; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero__garantias {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--cinza);
}
.hero__garantias li { display: flex; align-items: center; gap: 8px; }
.hero__garantias svg { width: 17px; height: 17px; flex: none; color: var(--verde); }

/* Prova social */
.prova {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--linha);
}
.prova__pilha { display: flex; }
.prova__pilha span {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-left: -11px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  font-family: var(--f-display);
  font-size: .74rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--s-sm);
}
.prova__pilha span:first-child { margin-left: 0; }
.prova__txt { font-size: .87rem; line-height: 1.5; color: var(--cinza); }
.prova__txt b { color: var(--tinta); }
.prova__estrelas { display: flex; gap: 2px; margin-bottom: 3px; color: var(--amarelo); }
.prova__estrelas svg { width: 15px; height: 15px; }

/* Palco do celular — position:relative é obrigatório: o halo, as bolhas
   e o mascote são absolutos e precisam ancorar aqui, não na section. */
.hero__palco {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.hero__halo {
  position: absolute;
  width: 108%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ff8a00, #ff1b6b, #7c3aed, #00d68f, #ff8a00);
  filter: blur(74px);
  opacity: .3;
  animation: girarHalo 22s linear infinite;
}
@keyframes girarHalo { to { transform: rotate(360deg); } }

.fone {
  position: relative;
  z-index: 3;
  width: min(300px, 82%);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}
.fone img {
  width: 100%;
  border-radius: 34px;
  filter: drop-shadow(0 40px 70px rgb(11 16 32 / 28%));
}

/* Cartõezinhos flutuantes */
.bolha {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border-radius: 17px;
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(255 255 255 / 90%);
  box-shadow: var(--s-lg);
  backdrop-filter: blur(16px);
  white-space: nowrap;
}
.bolha__ico {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 12px;
  color: #fff;
}
.bolha__ico svg { width: 20px; height: 20px; }
.bolha__t { font-size: .78rem; font-weight: 800; color: var(--tinta); line-height: 1.25; }
.bolha__d { font-size: .68rem; color: var(--cinza); }

.bolha--1 { top: 7%;  left: -6%; }
.bolha--2 { top: 42%; right: -12%; }
.bolha--3 { bottom: 11%; left: -12%; }

.mascote-hero {
  position: absolute;
  z-index: 5;
  bottom: -4%;
  right: -2%;
  width: 152px;
  filter: drop-shadow(0 18px 26px rgb(11 16 32 / 22%));
}

/* ===================== 07. MARQUEE / STATS ===================== */
.marquee {
  position: relative;
  padding: 26px 0;
  background: var(--papel);
  border-block: 1px solid var(--linha);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__trilho { display: flex; width: max-content; animation: correr 34s linear infinite; }
.marquee:hover .marquee__trilho { animation-play-state: paused; }
.marquee__grupo { display: flex; align-items: center; gap: 46px; padding-right: 46px; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--cinza-claro);
  transition: color .3s;
}
.marquee__item:hover { color: var(--laranja); }
.marquee__item svg { width: 23px; height: 23px; }

/* Atalho para o programa de parceiros */
.parceiro-cta {
  position: relative;
  z-index: 2;
  padding: 26px 0 8px;
  background: var(--papel);
}
.parceiro-cta__cartao {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border: 1px solid rgb(255 107 0 / 18%);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 88% 10%, rgb(255 196 2 / 18%), transparent 30%),
    linear-gradient(135deg, #fff8f1 0%, #fff 56%, #fff4e9 100%);
  box-shadow: var(--s-md);
  transition: transform .3s var(--suave), box-shadow .3s, border-color .3s;
}
.parceiro-cta__cartao:hover {
  transform: translateY(-3px);
  border-color: rgb(255 107 0 / 36%);
  box-shadow: var(--s-lg);
}
.parceiro-cta__icone {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  background: var(--g-quente);
  box-shadow: var(--s-fogo);
}
.parceiro-cta__icone svg { width: 29px; height: 29px; }
.parceiro-cta__texto { display: grid; line-height: 1.35; }
.parceiro-cta__texto small {
  margin-bottom: 3px;
  color: #c24a00;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.parceiro-cta__texto strong {
  color: var(--tinta);
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  letter-spacing: -.02em;
}
.parceiro-cta__texto span { color: var(--cinza); font-size: .9rem; }
.parceiro-cta__acao {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: var(--r-full);
  color: #fff;
  background: var(--tinta);
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
}
.parceiro-cta__acao svg { width: 18px; height: 18px; transition: transform .25s; }
.parceiro-cta__cartao:hover .parceiro-cta__acao svg { transform: translateX(4px); }
@keyframes correr { to { transform: translateX(-50%); } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  position: relative;
  padding: 34px 22px;
  text-align: center;
  border-radius: var(--r-lg);
  background: var(--papel);
  border: 1px solid var(--linha);
  overflow: hidden;
  transition: transform .45s var(--suave), box-shadow .45s;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--s-md); }
.stat::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--g-quente);
  transform: scaleX(0);
  transition: transform .5s var(--suave);
}
.stat:hover::before { transform: scaleX(1); }
.stat__n {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
  background: var(--g-quente);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat__l {
  display: block;
  margin-top: 11px;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--cinza);
}

/* ======================= 08. BENTO RECURSOS ======================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.bento > * { grid-column: span 2; }
.bento__g { grid-column: span 3; }
.bento__gg { grid-column: span 6; }

.recurso { display: flex; flex-direction: column; }
.recurso h3 { margin-bottom: 11px; }
.recurso p { font-size: .94rem; line-height: 1.68; color: var(--cinza); }

.ico3d {
  width: 64px; height: 64px;
  margin-bottom: 22px;
  filter: drop-shadow(0 10px 16px rgb(11 16 32 / 16%));
  transition: transform .55s var(--mola);
}
.cartao:hover .ico3d { transform: translateY(-5px) scale(1.09) rotate(-5deg); }
.ico3d--gg { width: 82px; height: 82px; }

/* Lista de mini-features */
.mini-lista { display: grid; gap: 11px; margin-top: 20px; }
.mini-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ardosia);
}
.mini-lista svg { width: 17px; height: 17px; flex: none; color: var(--verde); }

/* Cartão destaque do bento */
.recurso--brilho {
  background: linear-gradient(140deg, #14002e 0%, #2d0a4e 45%, #0b1020 100%);
  border-color: transparent;
  color: #cbd5e1;
  overflow: hidden;
}
.recurso--brilho h3 { color: #fff; }
.recurso--brilho p { color: #a5b4cc; }
.recurso--brilho .mini-lista li { color: #cbd5e1; }
.recurso--brilho .mini-lista svg { color: var(--verde-neon); }
.recurso--brilho::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: -55%; right: -30%;
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(124 58 237 / 55%), transparent 66%);
  filter: blur(46px);
  animation: flutua 9s ease-in-out infinite;
}

/* ==================== 09. CALCULADORA DE COMISSÃO ==================== */
.calc {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.calc__painel { padding: clamp(28px, 4vw, 44px); border-radius: var(--r-xl); }

.calc__rotulo {
  display: block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.calc__valor {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4.4vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.1;
}
.calc__valor small { font-size: .42em; font-weight: 700; color: #94a3b8; letter-spacing: 0; }

/* Slider */
.calc__campo { margin: 30px 0 34px; }
.faixa {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--laranja) 0%, var(--magenta) var(--pct, 30%), rgb(255 255 255 / 12%) var(--pct, 30%));
  cursor: pointer;
  outline-offset: 6px;
}
.faixa::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--laranja-fogo);
  box-shadow: 0 6px 18px rgb(255 61 0 / 55%);
  cursor: grab;
  transition: transform .22s var(--mola);
}
.faixa::-webkit-slider-thumb:hover { transform: scale(1.18); }
.faixa::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.faixa::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--laranja-fogo);
  box-shadow: 0 6px 18px rgb(255 61 0 / 55%);
  cursor: grab;
}
.faixa::-moz-range-track { height: 8px; border-radius: 99px; background: rgb(255 255 255 / 12%); }

.calc__legenda {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: .74rem;
  font-weight: 700;
  color: #64748b;
}

/* Comparação de resultados */
.calc__linhas { display: grid; gap: 13px; }
.calc__linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 21px;
  border-radius: var(--r-md);
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 9%);
}
.calc__linha--ruim { border-color: rgb(255 61 0 / 32%); background: rgb(255 61 0 / 9%); }
.calc__linha--bom  { border-color: rgb(0 214 143 / 34%); background: rgb(0 214 143 / 9%); }
.calc__nome { display: flex; align-items: center; gap: 11px; font-size: .93rem; font-weight: 700; color: #e2e8f0; }
.calc__nome svg { width: 20px; height: 20px; flex: none; }
.calc__cifra { font-family: var(--f-display); font-size: 1.32rem; font-weight: 900; letter-spacing: -.03em; white-space: nowrap; }
.calc__cifra--ruim { color: #ff6b47; }
.calc__cifra--bom  { color: var(--verde-neon); }

.calc__eco {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--r-md);
  text-align: center;
  background: linear-gradient(135deg, rgb(0 214 143 / 16%), rgb(34 197 94 / 6%));
  border: 1px dashed rgb(0 214 143 / 42%);
}
.calc__eco span {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6ee7b7;
}
.calc__eco strong {
  display: block;
  margin-top: 6px;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -.045em;
  color: var(--verde-neon);
  line-height: 1.1;
}
.calc__eco em { display: block; margin-top: 5px; font-size: .82rem; font-style: normal; color: #94a3b8; }

.calc__nota { margin-top: 16px; font-size: .73rem; line-height: 1.6; color: #64748b; text-align: center; }

/* ========================== 10. PASSOS ========================== */
.passos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 40px);
}
.passos::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 16%;
  width: 68%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--linha) 0 9px, transparent 9px 19px);
}
.passo { position: relative; z-index: 1; text-align: center; }
.passo__n {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  border-radius: 26px;
  background: var(--g-quente);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 900;
  box-shadow: var(--s-fogo);
  transition: transform .5s var(--mola);
}
.passo:hover .passo__n { transform: translateY(-6px) rotate(-8deg) scale(1.07); }
.passo__n::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 32px;
  border: 2px dashed rgb(255 107 0 / 32%);
  animation: girarHalo 16s linear infinite;
}
.passo h3 { margin-bottom: 10px; }
.passo p { font-size: .93rem; color: var(--cinza); line-height: 1.68; }

/* ================== 11. DEMO AO VIVO / SHOWCASE ================== */
.demos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.demo { display: flex; flex-direction: column; align-items: center; text-align: center; }
.demo__vivo {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--r-full);
  background: rgb(0 214 143 / 12%);
  border: 1px solid rgb(0 214 143 / 30%);
  color: #059669;
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.demo__ico {
  display: grid;
  place-items: center;
  width: 78px; height: 78px;
  margin-bottom: 20px;
  border-radius: 24px;
  transition: transform .5s var(--mola);
}
.demo__ico svg { width: 36px; height: 36px; }
.cartao:hover .demo__ico { transform: scale(1.09) rotate(-6deg); }
.demo__tag {
  display: inline-block;
  margin: 7px 0 15px;
  padding: 4px 13px;
  border-radius: var(--r-full);
  background: var(--nevoa);
  border: 1px solid var(--linha);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cinza);
}
.demo p { flex: 1; margin-bottom: 22px; font-size: .9rem; color: var(--cinza); line-height: 1.66; }
.demo__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: .93rem;
  font-weight: 800;
  color: var(--laranja-fogo);
}
.demo__cta svg { width: 17px; height: 17px; transition: transform .35s var(--mola); }
.cartao:hover .demo__cta svg { transform: translateX(5px); }

/* Showcase */
.abas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 38px;
}
.aba {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--r-full);
  background: var(--papel);
  border: 1.5px solid var(--linha);
  font-size: .89rem;
  font-weight: 700;
  color: var(--ardosia);
  transition: all .3s var(--suave);
}
.aba svg { width: 18px; height: 18px; }
.aba:hover { border-color: rgb(255 107 0 / 45%); color: var(--laranja-fogo); transform: translateY(-2px); }
.aba[aria-selected='true'] {
  background: var(--g-quente);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--s-fogo);
}

.moldura {
  position: relative;
  max-width: 990px;
  margin-inline: auto;
  padding: 13px;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, rgb(255 255 255 / 92%), rgb(255 255 255 / 55%));
  border: 1px solid rgb(255 255 255 / 85%);
  box-shadow: var(--s-xl);
  backdrop-filter: blur(16px);
}
.moldura__barra { display: flex; gap: 7px; padding: 4px 6px 13px; }
.moldura__barra i { width: 11px; height: 11px; border-radius: 50%; }
.moldura__barra i:nth-child(1) { background: #ff5f57; }
.moldura__barra i:nth-child(2) { background: #febc2e; }
.moldura__barra i:nth-child(3) { background: #28c840; }
.moldura img { width: 100%; border-radius: var(--r-md); box-shadow: var(--s-md); }
.moldura img[hidden] { display: none; }

/* ================== 12. COMPARATIVO / PLANOS ================== */
.versus {
  max-width: 880px;
  margin-inline: auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  background: rgb(255 255 255 / 4%);
  backdrop-filter: blur(12px);
}
.versus table { width: 100%; border-collapse: collapse; }
.versus th,
.versus td { padding: 19px clamp(14px, 2.4vw, 28px); text-align: left; }
.versus thead th {
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgb(255 255 255 / 4%);
}
.versus thead th:nth-child(2) { color: var(--laranja-claro); }
.versus tbody tr { border-top: 1px solid rgb(255 255 255 / 7%); }
.versus tbody tr:hover { background: rgb(255 255 255 / 3%); }
.versus td:first-child { font-size: .93rem; font-weight: 600; color: #cbd5e1; }
.versus__sim,
.versus__nao { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 800; }
.versus__sim { color: var(--verde-neon); }
.versus__nao { color: #f87171; }
.versus__sim svg,
.versus__nao svg { width: 18px; height: 18px; flex: none; }
.versus__destaque { font-family: var(--f-display); font-size: 1.15rem; font-weight: 900; color: var(--laranja-claro); }

/* Planos */
.toggle-preco {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 8px 10px;
  border-radius: var(--r-full);
  background: var(--papel);
  border: 1px solid var(--linha);
  box-shadow: var(--s-sm);
}
.toggle-preco__t { font-size: .87rem; font-weight: 700; color: var(--cinza); transition: color .25s; }
.toggle-preco__t.on { color: var(--tinta); }
.chave {
  position: relative;
  width: 54px; height: 30px;
  flex: none;
  border-radius: var(--r-full);
  background: var(--linha);
  transition: background-color .35s;
}
.chave.on { background: var(--g-verde); }
.chave i {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--s-sm);
  transition: transform .38s var(--mola);
}
.chave.on i { transform: translateX(24px); }
.selo-off {
  padding: 4px 11px;
  border-radius: var(--r-full);
  background: rgb(0 214 143 / 13%);
  color: #059669;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin-inline: auto;
  align-items: stretch;
}
.plano { display: flex; flex-direction: column; padding: 36px 32px; }
.plano--top {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--g-quente) border-box;
  box-shadow: 0 30px 70px -26px rgb(255 61 0 / 42%);
}
.plano--top:hover { transform: translateY(-10px); }
/* O cartão tem overflow:hidden, então o selo fica DENTRO dele
   (nada de translate negativo — seria cortado). */
.plano--top { padding-top: 58px; }
.plano__selo {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  padding: 7px 20px;
  border-radius: var(--r-full);
  background: var(--g-quente);
  color: #fff;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--s-fogo);
}
.plano__ponto {
  width: 42px; height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.plano__ponto svg { width: 22px; height: 22px; color: #fff; }
.plano h3 { margin-bottom: 7px; }
.plano__desc { min-height: 44px; margin-bottom: 22px; font-size: .87rem; color: var(--cinza); line-height: 1.6; }
.plano__preco { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--linha); }
.plano__preco[hidden] { display: none; }
.plano__cifra {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--tinta);
  line-height: 1;
}
.plano__cifra sup { font-size: .4em; font-weight: 800; vertical-align: super; margin-right: 3px; }
.plano__ciclo { font-size: .88rem; font-weight: 700; color: var(--cinza); }
.plano__anual-nota { margin-top: 8px; font-size: .74rem; font-weight: 700; color: #059669; }
.plano__lista { display: grid; gap: 13px; margin-bottom: 30px; flex: 1; }
.plano__lista li { display: flex; align-items: flex-start; gap: 11px; font-size: .89rem; color: var(--ardosia); line-height: 1.55; }
.plano__lista svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--verde); }

/* ============= 13. DEPOIMENTOS / FAQ / CADASTRO ============= */
.depos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.depo__aspas { width: 34px; height: 34px; margin-bottom: 16px; color: rgb(255 107 0 / 24%); }
.depo__estrelas { display: flex; gap: 3px; margin-bottom: 16px; color: var(--amarelo); }
.depo__estrelas svg { width: 17px; height: 17px; }
.depo p { margin-bottom: 26px; font-size: .96rem; line-height: 1.75; color: var(--ardosia); }
.depo__quem { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--linha); }
.depo__foto {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: 900;
  color: #fff;
}
.depo__nome { font-family: var(--f-display); font-size: .93rem; font-weight: 800; color: var(--tinta); }
.depo__local { font-size: .78rem; color: var(--cinza); }

/* FAQ */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  border-radius: var(--r-md);
  background: var(--papel);
  border: 1px solid var(--linha);
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.faq__item[open] { border-color: rgb(255 107 0 / 38%); box-shadow: var(--s-md); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 24px;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--tinta);
  list-style: none;
  transition: color .25s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--laranja-fogo); }
.faq__mais {
  position: relative;
  width: 28px; height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--nevoa);
  transition: background-color .3s, transform .4s var(--mola);
}
.faq__mais::before,
.faq__mais::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  border-radius: 2px;
  background: var(--ardosia);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--mola), background-color .3s;
}
.faq__mais::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__mais { background: var(--g-quente); transform: rotate(180deg); }
.faq__item[open] .faq__mais::before,
.faq__item[open] .faq__mais::after { background: #fff; }
.faq__item[open] .faq__mais::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__r { padding: 0 24px 23px; font-size: .94rem; line-height: 1.75; color: var(--cinza); }
.faq__r a { color: var(--laranja-fogo); font-weight: 700; text-decoration: underline; }

/* Cadastro */
.cadastro__grade {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}
.cadastro__beneficios { display: grid; gap: 18px; margin-top: 32px; }
.cadastro__beneficios li { display: flex; gap: 14px; }
.cadastro__beneficios .ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 13px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 12%);
}
.cadastro__beneficios .ico svg { width: 21px; height: 21px; }
.cadastro__beneficios b { display: block; font-family: var(--f-display); font-size: .99rem; color: #fff; }
.cadastro__beneficios span { font-size: .87rem; color: #94a3b8; line-height: 1.6; }

.form {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--r-xl);
  background: var(--papel);
  box-shadow: var(--s-xl);
}
.form__topo { margin-bottom: 26px; text-align: center; }
.form__topo h3 { font-size: 1.5rem; margin-bottom: 7px; }
.form__topo p { font-size: .89rem; color: var(--cinza); }

.campo { margin-bottom: 17px; }
.campo label {
  display: block;
  margin-bottom: 7px;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--cinza);
}
.campo__cx { position: relative; display: flex; align-items: center; }
.campo__cx > svg {
  position: absolute;
  left: 16px;
  width: 19px; height: 19px;
  color: var(--cinza-claro);
  pointer-events: none;
  transition: color .25s;
}
.campo input {
  width: 100%;
  padding: 15px 16px 15px 46px;
  border-radius: 14px;
  background: var(--nevoa);
  border: 1.5px solid var(--linha);
  font-size: .97rem;
  color: var(--tinta);
  transition: border-color .25s, background-color .25s, box-shadow .25s;
}
.campo input::placeholder { color: var(--cinza-claro); }
.campo input:focus {
  outline: none;
  background: #fff;
  border-color: var(--laranja);
  box-shadow: 0 0 0 4px rgb(255 107 0 / 12%);
}
.campo__cx:focus-within > svg { color: var(--laranja); }

.olho {
  position: absolute;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  color: var(--cinza-claro);
  transition: color .25s, background-color .25s;
}
.olho:hover { color: var(--tinta); background: var(--nevoa); }
.olho svg { width: 19px; height: 19px; }

/* Preview do link da loja */
.slug-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  padding: 10px 14px;
  border-radius: 11px;
  background: rgb(0 214 143 / 8%);
  border: 1px dashed rgb(0 214 143 / 34%);
  font-size: .81rem;
  font-weight: 700;
  color: #047857;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .3s, transform .3s;
}
.slug-preview.ver { opacity: 1; transform: none; }
.slug-preview svg { width: 16px; height: 16px; flex: none; }
.slug-preview b { color: var(--tinta); font-weight: 800; }

/* Força da senha */
.forca { display: flex; gap: 5px; margin-top: 9px; }
.forca i {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--linha);
  transition: background-color .35s;
}
.forca__txt { margin-top: 7px; font-size: .74rem; font-weight: 700; color: var(--cinza); }

/* Aceite LGPD */
.aceite {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  margin: 20px 0;
  border-radius: 14px;
  background: var(--nevoa);
  border: 1.5px solid var(--linha);
  cursor: pointer;
  transition: border-color .25s;
}
.aceite:hover { border-color: rgb(255 107 0 / 40%); }
.aceite input {
  width: 19px; height: 19px;
  flex: none;
  margin-top: 1px;
  accent-color: var(--laranja);
  cursor: pointer;
}
.aceite span { font-size: .79rem; line-height: 1.6; color: var(--ardosia); }
.aceite a { color: var(--laranja-fogo); font-weight: 700; text-decoration: underline; }

.form__nota {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  font-size: .74rem;
  color: var(--cinza);
}
.form__nota svg { width: 15px; height: 15px; color: var(--verde); }

/* Mensagens de retorno */
.aviso {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px 17px;
  margin-bottom: 20px;
  border-radius: 14px;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.55;
  animation: entraAviso .45s var(--mola);
}
.aviso svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.aviso--erro { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.aviso--ok   { background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857; }
@keyframes entraAviso {
  from { opacity: 0; transform: translateY(-9px) scale(.97); }
}

/* Girador do botão */
.girando { animation: gira 1s linear infinite; }
@keyframes gira { to { transform: rotate(360deg); } }

/* ============ 14. RODAPÉ / FLUTUANTES / RESPONSIVO ============ */
.rodape {
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0 34px;
  background: var(--tinta);
  color: #94a3b8;
  overflow: hidden;
}
.rodape::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 120%; aspect-ratio: 2.6;
  background: radial-gradient(ellipse, rgb(255 107 0 / 17%), transparent 62%);
  pointer-events: none;
}
.rodape__grade {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(28px, 4vw, 54px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}
.rodape img { height: 40px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.rodape p { max-width: 30ch; font-size: .89rem; line-height: 1.72; }
.rodape h4 {
  margin-bottom: 18px;
  font-family: var(--f-display);
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
}
.rodape__links { display: grid; gap: 12px; }
.rodape__links a { font-size: .89rem; transition: color .25s, transform .25s; display: inline-block; }
.rodape__links a:hover { color: #fff; transform: translateX(4px); }

.social { display: flex; gap: 10px; margin-top: 24px; }
.social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 9%);
  transition: all .3s var(--suave);
}
.social a:hover { background: var(--g-quente); border-color: transparent; transform: translateY(-4px); color: #fff; }
.social svg { width: 19px; height: 19px; }

.news { display: flex; gap: 9px; margin-top: 14px; }
.news input {
  flex: 1;
  min-width: 0;
  padding: 12px 15px;
  border-radius: 12px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 11%);
  color: #fff;
  font-size: .86rem;
}
.news input::placeholder { color: #64748b; }
.news input:focus { outline: none; border-color: var(--laranja); }
.news button {
  display: grid;
  place-items: center;
  width: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--g-quente);
  color: #fff;
  transition: transform .3s var(--mola);
}
.news button:hover { transform: scale(1.08); }
.news svg { width: 18px; height: 18px; }

.rodape__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-size: .81rem;
}
.rodape__base nav { display: flex; gap: 22px; }
.rodape__base a:hover { color: #fff; }

/* Mascote flutuante */
.amigo {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  opacity: 0;
  transform: translateY(24px) scale(.85);
  transition: opacity .5s var(--suave), transform .5s var(--mola);
  pointer-events: none;
}
.amigo.ver { opacity: 1; transform: none; pointer-events: auto; }
.amigo__btn { position: relative; display: block; cursor: pointer; }
.amigo img { width: 86px; filter: drop-shadow(0 14px 22px rgb(11 16 32 / 28%)); transition: transform .4s var(--mola); }
.amigo__btn:hover img { transform: scale(1.12) rotate(-6deg); }
.amigo__balao {
  position: absolute;
  right: 76px;
  bottom: 54px;
  padding: 11px 16px;
  border-radius: 16px 16px 3px 16px;
  background: #fff;
  box-shadow: var(--s-lg);
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 800;
  color: var(--tinta);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px) scale(.92);
  transform-origin: bottom right;
  transition: all .35s var(--mola);
}
.amigo__btn:hover .amigo__balao { opacity: 1; transform: none; }

/* Ícone solto em nota de rodapé de seção */
.ico-nota { width: 16px; height: 16px; flex: none; }

/* Diálogo "Acessar meu painel" */
dialog { margin: auto; color: var(--grafite); }
dialog::backdrop {
  background: rgb(11 16 32 / 55%);
  backdrop-filter: blur(6px);
}
dialog[open] { animation: entraDlg .35s var(--mola); }
@keyframes entraDlg {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
}

/* Barra fixa mobile */
.barra-mob {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 950;
  display: none;
  gap: 10px;
  padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / 94%);
  border-top: 1px solid var(--linha);
  backdrop-filter: blur(18px);
  transform: translateY(110%);
  transition: transform .45s var(--suave);
}
.barra-mob.ver { transform: none; }
.barra-mob .btn { flex: 1; padding: 14px 18px; font-size: .93rem; }
.barra-mob .btn--fantasma { flex: 0 0 auto; }

/* ===================== 15. PÁGINAS LEGAIS ===================== */
.legal-topo {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 52px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f3 55%, var(--nevoa) 100%);
  border-bottom: 1px solid var(--linha);
}
.legal-topo__int { position: relative; z-index: 2; max-width: 760px; }
.legal-topo h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 16px; }
.legal-topo p { font-size: 1.02rem; color: var(--ardosia); line-height: 1.7; }

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 15px;
  border-radius: var(--r-full);
  background: var(--papel);
  border: 1px solid var(--linha);
  box-shadow: var(--s-xs);
  font-size: .8rem;
  font-weight: 600;
  color: var(--cinza);
}
.legal-meta svg { width: 16px; height: 16px; flex: none; color: var(--laranja); }

.legal-corpo {
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  /* padding-block, não padding: o atalho zeraria o padding-inline
     que o .wrap aplica e o texto encostaria na borda da tela. */
  padding-block: clamp(44px, 6vw, 76px) clamp(60px, 8vw, 100px);
}

/* Índice fixo */
.indice { position: sticky; top: calc(var(--nav-h) + 24px); }
.indice h2 {
  margin-bottom: 15px;
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cinza);
}
.indice ol { display: grid; gap: 2px; counter-reset: idx; }
.indice a {
  display: block;
  padding: 9px 14px;
  border-left: 2px solid var(--linha);
  font-size: .87rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--cinza);
  transition: color .25s, border-color .25s, background-color .25s, padding-left .25s;
}
.indice a:hover { color: var(--tinta); background: var(--nevoa); padding-left: 18px; }
.indice a.aqui {
  color: var(--laranja-fogo);
  border-left-color: var(--laranja);
  background: rgb(255 107 0 / 6%);
  font-weight: 700;
}

/* Blocos de texto */
.legal-secao {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--linha);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.legal-secao:last-child { border-bottom: 0; margin-bottom: 0; }
.legal-secao h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}
.legal-secao h2 span {
  flex: none;
  font-size: .72em;
  font-weight: 900;
  background: var(--g-quente);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.legal-secao p { margin-bottom: 15px; color: var(--ardosia); line-height: 1.78; }
.legal-secao p:last-child { margin-bottom: 0; }
.legal-secao a { color: var(--laranja-fogo); font-weight: 700; text-decoration: underline; }
.legal-secao ul { display: grid; gap: 11px; margin: 4px 0 16px; }
.legal-secao ul li {
  display: flex;
  gap: 11px;
  color: var(--ardosia);
  line-height: 1.72;
}
.legal-secao ul li::before {
  content: '';
  flex: none;
  width: 7px; height: 7px;
  margin-top: .62em;
  border-radius: 50%;
  background: var(--g-quente);
}
.legal-secao strong { color: var(--tinta); font-weight: 700; }

/* Caixa de destaque */
.legal-nota {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  margin: 22px 0;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgb(0 214 143 / 9%), rgb(34 197 94 / 4%));
  border: 1px solid rgb(0 214 143 / 28%);
}
.legal-nota svg { width: 21px; height: 21px; flex: none; margin-top: 2px; color: #059669; }
.legal-nota p { margin: 0; font-size: .92rem; color: var(--ardosia); }

/* Chamada final */
.legal-cta {
  margin-top: 44px;
  padding: 34px;
  border-radius: var(--r-lg);
  text-align: center;
  background: var(--g-noite);
  color: #94a3b8;
}
.legal-cta h3 { color: #fff; margin-bottom: 9px; }
.legal-cta p { margin-bottom: 22px; font-size: .93rem; }

/* --------------------------- RESPONSIVO --------------------------- */
@media (max-width: 1080px) {
  .bento__g { grid-column: span 6; }
  .hero__grade { grid-template-columns: 1fr; }
  .hero__palco { order: -1; min-height: 420px; }
  .fone { width: min(258px, 62%); }
  .mascote-hero { width: 116px; }
  .bolha--1 { left: 0; }
  .bolha--2 { right: 0; }
  .bolha--3 { left: 0; }
  .cadastro__grade { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .rodape__grade { grid-template-columns: 1fr 1fr; }
  /* índice vira uma faixa rolável acima do texto */
  .legal-corpo { grid-template-columns: 1fr; }
  .indice { position: static; padding-bottom: 8px; overflow-x: auto; }
  .indice ol { grid-auto-flow: column; grid-auto-columns: max-content; gap: 8px; }
  .indice a {
    border-left: 0;
    border: 1px solid var(--linha);
    border-radius: var(--r-full);
    white-space: nowrap;
    padding: 9px 16px;
  }
  .indice a:hover { padding-left: 16px; }
  .indice a.aqui { border-color: rgb(255 107 0 / 45%); }
}

@media (max-width: 900px) {
  .nav__links,
  .nav__entrar { display: none; }
  .hamb { display: flex; }
  .nav__acoes .btn { display: none; }
  .demos { grid-template-columns: 1fr; }
  .depos { grid-template-columns: 1fr; }
  .passos { grid-template-columns: 1fr; gap: 34px; }
  .passos::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bento > *,
  .bento__g { grid-column: span 6; }
  .barra-mob { display: flex; }
  .amigo { bottom: 86px; right: 16px; }
  .amigo img { width: 66px; }
  .amigo__balao { display: none; }
  /* espaço para a barra fixa não cobrir o rodapé */
  .rodape { padding-bottom: 96px; }
}

@media (max-width: 620px) {
  :root { --nav-h: 68px; }
  .hero__palco { min-height: 350px; }
  .bolha { padding: 10px 13px; transform: scale(.88); }
  .bolha__d { display: none; }
  .mascote-hero { width: 92px; right: 2%; }
  .cartao { padding: 26px 22px; }
  .versus th,
  .versus td { padding: 14px 12px; font-size: .84rem; }
  .rodape__grade { grid-template-columns: 1fr; }
  .rodape__base { flex-direction: column; text-align: center; }
  .prova { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; }
  .parceiro-cta { padding-top: 20px; }
  .parceiro-cta__cartao {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }
  .parceiro-cta__icone { width: 50px; height: 50px; border-radius: 15px; }
  .parceiro-cta__texto span { display: none; }
  .parceiro-cta__acao { grid-column: 1 / -1; justify-content: center; }
}

/* --------------------- MOVIMENTO REDUZIDO --------------------- */
@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;
  }

  .reveal { opacity: 1; transform: none; }
  .marquee__trilho { animation: none; }
  .aurora i { animation: none; }
}

/* Sem hover em telas de toque: desliga efeitos que dependem do cursor */
@media (hover: none) {
  .holofote::after { display: none; }
  .cartao:hover { transform: none; }
}
