/* =========================================================
   FeeDB WiCore — Identidade visual
   Conceito: "Conexão que gera crescimento"
   ========================================================= */
:root {
  /* Cores da marca */
  --ink: #060A18;          /* Noite Profunda — fundo principal   */
  --ink-2: #0B1128;        /* Superfície                          */
  --ink-3: #121A3A;        /* Superfície elevada                  */
  --line: rgba(160, 190, 255, .12);
  --signal: #19E3FF;       /* Ciano Sinal — tecnologia, confiança */
  --growth: #8CFF6A;       /* Verde Crescimento — positivo, lucro */
  --sun: #FFC857;          /* Amarelo Otimismo — destaque         */
  --violet: #7B6CFF;       /* Violeta Insight — dados             */
  --text: #EAF0FF;
  --muted: #93A0C4;
  --grad: linear-gradient(120deg, var(--signal), var(--growth));
  --grad-warm: linear-gradient(120deg, var(--growth), var(--sun));

  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --max: 1200px;
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }

.container { width: min(var(--max), 100% - 2.5rem); margin-inline: auto; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--signal);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.section { padding: clamp(5rem, 11vw, 9rem) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 1rem 0 1.1rem; }
.section-head p { color: var(--muted); font-size: 1.12rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Botões ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn-primary { background: var(--grad); color: var(--ink); box-shadow: 0 10px 40px -10px rgba(25, 227, 255, .55); }
.btn-primary:hover { box-shadow: 0 16px 50px -8px rgba(140, 255, 106, .6); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(25, 227, 255, .5); }
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Cursor luminoso ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px; border-radius: 50%;
  pointer-events: none; z-index: 0; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(25, 227, 255, .09), transparent 65%);
  transition: opacity .4s;
}
@media (hover: none), (max-width: 860px) { .cursor-glow { display: none; } }

/* ---------- Barra de progresso ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 100;
  background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 90; padding: 1.1rem 0;
  transition: padding .4s var(--ease), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled { padding: .7rem 0; background: rgba(6, 10, 24, .72); backdrop-filter: blur(16px); border-color: var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.brand img { width: 38px; height: 38px; }
.brand small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; margin-top: -2px; }
.nav { display: flex; gap: 2rem; font-size: .93rem; color: var(--muted); }
.nav a { position: relative; transition: color .3s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--grad);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header .btn { padding: .7rem 1.2rem; font-size: .9rem; }
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); transition: transform .3s, opacity .3s; }
.menu-toggle span:nth-child(1) { top: 14px; } .menu-toggle span:nth-child(2) { top: 20px; } .menu-toggle span:nth-child(3) { top: 26px; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: grid; align-items: center; position: relative; overflow: hidden; padding: 8rem 0 5rem; }
#network { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 220px; background: linear-gradient(transparent, var(--ink)); z-index: 1; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: .6rem; padding: .45rem .9rem .45rem .5rem; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.04); font-size: .85rem; color: var(--muted); backdrop-filter: blur(6px);
}
.pill b { background: var(--grad); color: var(--ink); padding: .15rem .55rem; border-radius: 999px; font-size: .72rem; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5.3rem); margin: 1.5rem 0; font-weight: 700; }
/* Cada palavra carrega seu próprio .grad-text: com o background-clip no
   contêiner, o recorte usava os glifos de TODAS as palavras ao mesmo tempo
   e elas apareciam empilhadas, mesmo com opacity 0. */
.rotator { display: inline-grid; vertical-align: bottom; overflow: hidden; height: 1.12em; }
.rotator span { grid-area: 1/1; transform: translateY(110%); opacity: 0; visibility: hidden; transition: transform .8s var(--ease), opacity .8s var(--ease); }
.rotator span.active { transform: translateY(0); opacity: 1; visibility: visible; }
.rotator span.leaving { transform: translateY(-110%); opacity: 0; visibility: visible; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 3rem; color: var(--muted); font-size: .88rem; }
.hero-trust div { display: flex; align-items: center; gap: .5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--growth); }

/* Cartão ao vivo do hero */
.live-card {
  position: relative; padding: 1.6rem; border-radius: 28px; border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(18, 26, 58, .82), rgba(11, 17, 40, .6)); backdrop-filter: blur(18px);
  box-shadow: 0 40px 120px -40px rgba(25, 227, 255, .35);
  transform-style: preserve-3d; transition: transform .2s linear;
}
.live-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(25,227,255,.6), transparent 40%, transparent 60%, rgba(140,255,106,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.live-top { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--muted); }
.live-dot { display: inline-flex; align-items: center; gap: .45rem; color: var(--growth); font-weight: 600; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--growth); box-shadow: 0 0 0 0 rgba(140,255,106,.7); animation: ping 1.8s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(140,255,106,0); } 100% { box-shadow: 0 0 0 0 rgba(140,255,106,0); } }
.live-big { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; margin: .8rem 0 0; }
.live-sub { color: var(--muted); font-size: .9rem; }
.spark { width: 100%; height: 90px; margin: 1.2rem 0; }
.spark path.line { fill: none; stroke: url(#sparkGrad); stroke-width: 2.5; stroke-linecap: round; }
.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.live-grid div { padding: .8rem; border-radius: 14px; background: rgba(255,255,255,.035); border: 1px solid var(--line); }
.live-grid b { display: block; font-family: var(--font-display); font-size: 1.15rem; }
.live-grid span { font-size: .72rem; color: var(--muted); }
.toast {
  position: absolute; left: -2.5rem; bottom: -1.6rem; display: flex; gap: .7rem; align-items: center;
  padding: .8rem 1rem; border-radius: 16px; background: var(--ink-3); border: 1px solid var(--line); font-size: .82rem;
  box-shadow: 0 20px 50px -20px #000; animation: float 6s ease-in-out infinite;
}
.toast i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(140,255,106,.14); color: var(--growth); font-style: normal; }
.toast small { display: block; color: var(--muted); }
@keyframes float { 50% { transform: translateY(-10px); } }

.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px;
  border: 2px solid var(--line); border-radius: 20px; }
.scroll-hint::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px;
  background: var(--signal); animation: wheel 1.8s infinite; }
@keyframes wheel { to { transform: translateY(14px); opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 1.4rem 0; overflow: hidden; position: relative; background: var(--ink-2); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: flex; align-items: center; gap: 3.5rem; font-family: var(--font-display); font-size: 1.35rem; color: var(--muted); white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--growth); font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.split-line { display: block; overflow: hidden; }
.split-line > span { display: block; transform: translateY(105%); transition: transform 1.1s var(--ease); }
.in .split-line > span, .split-line.in > span { transform: none; }

/* ---------- Problema x Solução ---------- */
.switcher { display: inline-flex; padding: .35rem; border-radius: 999px; background: var(--ink-2); border: 1px solid var(--line); position: relative; margin-bottom: 3rem; }
.switcher button { position: relative; z-index: 1; padding: .8rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--muted); transition: color .4s; }
.switcher button.on { color: var(--ink); }
.switcher .knob { position: absolute; top: .35rem; bottom: .35rem; left: .35rem; border-radius: 999px; background: #FF7A7A; transition: all .55s var(--ease); }
.switcher.with .knob { background: var(--grad); }
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.compare-card { position: relative; padding: 2rem; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line); min-height: 260px; overflow: hidden; }
.compare-card .face { transition: opacity .5s var(--ease), transform .6s var(--ease); }
.compare-card .face.after { position: absolute; inset: 2rem; opacity: 0; transform: translateY(24px); }
.compare.with .face.before { opacity: 0; transform: translateY(-24px); }
.compare.with .face.after { opacity: 1; transform: none; }
.compare-card .tag { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.face.before .tag { color: #FF8F8F; }
.face.after .tag { color: var(--growth); }
.compare-card h3 { font-size: 1.35rem; margin: .9rem 0 .7rem; }
.compare-card p { color: var(--muted); font-size: .96rem; }
.compare-card .metric { margin-top: 1.4rem; font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.face.before .metric { color: #FF8F8F; }
.face.after .metric { color: var(--growth); }

/* ---------- Soluções (scroll horizontal fixo) ---------- */
.solutions { position: relative; }
.h-scroll { position: relative; }
.h-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.h-track { display: flex; gap: 1.5rem; padding-left: max(1.25rem, calc((100vw - var(--max)) / 2)); will-change: transform; }
.sol-card {
  flex: 0 0 min(420px, 82vw); min-height: 460px; padding: 2.3rem; border-radius: 28px; position: relative; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: border-color .4s, transform .5s var(--ease);
}
.sol-card:hover { border-color: rgba(25,227,255,.45); transform: translateY(-6px); }
.sol-card::after { content: ""; position: absolute; width: 300px; height: 300px; right: -120px; top: -120px; border-radius: 50%;
  background: radial-gradient(circle, var(--c, rgba(25,227,255,.25)), transparent 70%); transition: transform .8s var(--ease); }
.sol-card:hover::after { transform: scale(1.5); }
.sol-num { font-family: var(--font-display); font-size: .85rem; color: var(--muted); }
.sol-icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin: 1.6rem 0 1.4rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--signal); }
.sol-icon svg { width: 28px; height: 28px; }
.sol-card h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.sol-card > p { color: var(--muted); }
.sol-card ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .55rem; font-size: .93rem; }
.sol-card li { display: flex; gap: .6rem; align-items: flex-start; }
.sol-card li::before { content: ""; flex: 0 0 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: rgba(140,255,106,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238CFF6A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/11px no-repeat; }
.h-progress { width: min(var(--max), 100% - 2.5rem); margin: 2.5rem auto 0; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.h-progress i { display: block; height: 100%; width: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(0); }
.h-intro { width: min(var(--max), 100% - 2.5rem); margin: 0 auto 2.5rem; display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.h-intro h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-top: 1rem; max-width: 720px; }
.h-intro p { color: var(--muted); max-width: 320px; font-size: .95rem; }

/* ---------- Jornada ---------- */
.journey { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
/* A coluna fixa nunca passa da altura da janela: o celular encolhe para caber
   (o texto acima dele não encolhe) e o conteúdo da tela acompanha via cqw. */
/* O recuo do topo desta seção fica próximo do "top" da coluna fixa para que a
   altura disponível seja a mesma antes e depois de ela grudar. */
#como-funciona { padding-top: 6rem; }
.journey-sticky {
  position: sticky; top: 5.5rem; max-height: calc(100svh - 7.5rem);
  display: flex; flex-direction: column; align-items: flex-start;
}
.journey-sticky > :not(.phone) { flex: none; }
.journey-sticky h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 1rem 0 1.2rem; }
.journey-sticky p { color: var(--muted); font-size: 1.08rem; }
.phone {
  flex: 0 1 auto; min-height: 0;
  margin-top: clamp(1rem, 3vh, 2.5rem);
  height: 440px; max-height: 100%; aspect-ratio: 250 / 440; width: auto;
  border-radius: 15% / 8.6%; border: 1px solid var(--line); position: relative;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); box-shadow: 0 40px 100px -40px rgba(25,227,255,.4);
}
/* inset em % (e não padding) porque padding percentual resolve contra a
   coluna-pai, não contra o próprio aparelho. */
.phone-screen { position: absolute; inset: 2.74% 4.84%; border-radius: 12.4% / 6.7%; background: #0E1532; overflow: hidden; container-type: size; }
.phone-view { position: absolute; inset: 0; padding: 9.9% 7.8%; display: flex; flex-direction: column; gap: .875em; align-items: center; text-align: center;
  opacity: 0; transform: scale(.96); transition: opacity .6s var(--ease), transform .6s var(--ease); font-size: clamp(.55rem, 5.71cqw, .8rem); }
.phone-view.on { opacity: 1; transform: none; }
.phone-view .pv-logo { width: 25.4%; margin-top: 1.5em; }
.phone-view h4 { font-size: 1.31em; margin-top: .38em; }
.phone-view p { color: var(--muted); font-size: .9375em; }
.pv-btn { width: 100%; padding: .9em; border-radius: .96em; background: rgba(255,255,255,.06); border: 1px solid var(--line); font-weight: 600; font-size: .975em; }
.pv-btn.main { background: var(--grad); color: var(--ink); border: 0; }
.pv-coupon { width: 100%; border: 2px dashed var(--growth); border-radius: 1.25em; padding: 1.5em 1em; margin-top: .75em; }
.pv-coupon b { display: block; font-family: var(--font-display); font-size: 2.75em; color: var(--growth); }
.pv-bars { width: 100%; display: flex; align-items: end; gap: .47em; height: 32%; margin-top: .75em; }
.pv-bars i { flex: 1; border-radius: .5em .5em .16em .16em; background: var(--grad); opacity: .85; }
.pv-stars { color: var(--sun); font-size: 2em; letter-spacing: .2em; }

.steps { position: relative; padding-left: 3.5rem; }
.steps-line { position: absolute; left: 1.05rem; top: 0; bottom: 0; width: 2px; background: var(--line); }
.steps-line i { position: absolute; inset: 0; background: var(--grad); transform-origin: 0 0; transform: scaleY(0); }
.step { position: relative; padding: 2rem 0 5.5rem; opacity: .35; transition: opacity .6s var(--ease); }
.step.on { opacity: 1; }
.step-dot { position: absolute; left: -3.5rem; top: 2rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); border: 2px solid var(--line); font-family: var(--font-display); font-size: .85rem; font-weight: 700; transition: all .5s var(--ease); }
.step.on .step-dot { border-color: var(--growth); background: var(--growth); color: var(--ink); box-shadow: 0 0 0 8px rgba(140,255,106,.12); }
.step h3 { font-size: 1.7rem; margin-bottom: .8rem; }
.step p { color: var(--muted); font-size: 1.05rem; }
.step .chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.chip { font-size: .78rem; padding: .35rem .75rem; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); }

/* ---------- Números ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: var(--ink-2); }
.stat { padding: 2.6rem 2rem; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: 0; }
.stat b { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; display: block; line-height: 1; }
.stat > span { color: var(--muted); font-size: .92rem; display: block; margin-top: .8rem; }

/* ---------- Dashboard ---------- */
.dash-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: center; }
.dash-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; }
.dash-list li { display: flex; gap: 1rem; padding: 1.1rem; border-radius: 18px; border: 1px solid transparent; transition: all .4s var(--ease); cursor: default; }
.dash-list li:hover { border-color: var(--line); background: var(--ink-2); }
.dash-list i { flex: 0 0 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(123,108,255,.14); color: var(--violet); font-style: normal; }
.dash-list i svg { width: 20px; height: 20px; }
.dash-list b { display: block; font-family: var(--font-display); margin-bottom: .2rem; }
.dash-list span { color: var(--muted); font-size: .92rem; }
.dash { border-radius: 26px; border: 1px solid var(--line); background: var(--ink-2); padding: 1.4rem; box-shadow: 0 50px 120px -50px rgba(123,108,255,.45); }
.dash-bar { display: flex; align-items: center; gap: .45rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); margin-bottom: 1.2rem; }
.dash-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--ink-3); }
.dash-bar span { margin-left: auto; font-size: .78rem; color: var(--muted); }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.kpi { padding: 1rem; border-radius: 16px; background: var(--ink); border: 1px solid var(--line); }
.kpi > span { font-size: .72rem; color: var(--muted); }
.kpi b { display: block; font-family: var(--font-display); font-size: 1.5rem; margin-top: .2rem; }
.kpi em { font-style: normal; font-size: .72rem; color: var(--growth); }
.dash-main { display: grid; grid-template-columns: 1.6fr 1fr; gap: .8rem; margin-top: .8rem; }
.panel { padding: 1.1rem; border-radius: 16px; background: var(--ink); border: 1px solid var(--line); }
.panel h5 { margin: 0 0 .8rem; font-size: .8rem; font-weight: 600; color: var(--muted); }
.chart { display: flex; align-items: end; gap: 7px; height: 150px; }
.chart i { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--signal), rgba(25,227,255,.15)); height: 4%; transition: height 1.2s var(--ease); }
.chart i:nth-child(odd) { background: linear-gradient(180deg, var(--growth), rgba(140,255,106,.12)); }
.donut { width: 130px; height: 130px; margin: .2rem auto 0; }
.donut circle { fill: none; stroke-width: 14; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset 1.6s var(--ease); }
.legend { display: grid; gap: .3rem; font-size: .72rem; color: var(--muted); margin-top: .8rem; }
.legend span::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: .4rem; background: var(--c); }

/* ---------- Cases ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filters button { padding: .6rem 1.2rem; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-size: .9rem; transition: all .3s; }
.filters button:hover { color: var(--text); }
.filters button.on { background: var(--text); color: var(--ink); border-color: var(--text); }
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.case {
  position: relative; border-radius: 26px; overflow: hidden; background: var(--ink-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .5s var(--ease), opacity .4s, border-color .4s;
  transform-style: preserve-3d;
}
.case.hide { display: none; }
.case:hover { border-color: rgba(140,255,106,.4); }
.case-cover { height: 170px; position: relative; overflow: hidden; }
.case-cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.case-cover .seg { position: absolute; left: 1.2rem; top: 1.2rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px; background: rgba(6,10,24,.6); backdrop-filter: blur(6px); }
.case-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.case-body h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.case-body > p { color: var(--muted); font-size: .94rem; }
.case-results { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: auto; padding-top: 1.4rem; }
.case-results div { padding: .8rem; border-radius: 14px; background: var(--ink); border: 1px solid var(--line); }
.case-results b { display: block; font-family: var(--font-display); font-size: 1.5rem; }
.case-results span { font-size: .75rem; color: var(--muted); line-height: 1.3; display: block; }
.case blockquote { margin: 1.2rem 0 0; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: .9rem; font-style: italic; color: var(--text); }
.case blockquote cite { display: block; font-style: normal; color: var(--muted); font-size: .78rem; margin-top: .5rem; }

/* ---------- Calculadora ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; border-radius: 30px; overflow: hidden; border: 1px solid var(--line); }
.calc-inputs { padding: clamp(2rem, 4vw, 3.2rem); background: var(--ink-2); }
.calc-inputs h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 1rem 0 .8rem; }
.calc-inputs > p { color: var(--muted); margin-bottom: 2rem; }
.field { margin-bottom: 1.6rem; }
.field label { display: flex; justify-content: space-between; font-size: .92rem; margin-bottom: .7rem; }
.field label output { font-family: var(--font-display); font-weight: 700; color: var(--signal); }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; outline: none;
  background: linear-gradient(90deg, var(--signal) var(--p, 50%), var(--ink-3) var(--p, 50%)); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--text);
  border: 5px solid var(--signal); cursor: pointer; transition: transform .2s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type=range]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--text); border: 5px solid var(--signal); cursor: pointer; }
input[type=range]:focus-visible { box-shadow: 0 0 0 3px rgba(25,227,255,.35); }
.calc-result { padding: clamp(2rem, 4vw, 3.2rem); background: var(--grad); color: var(--ink); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.calc-result::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; border: 60px solid rgba(255,255,255,.14); right: -160px; bottom: -160px; }
.calc-result small { font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; opacity: .75; }
.calc-result .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; margin: .8rem 0 .4rem; }
.calc-result p { opacity: .8; max-width: 380px; }
.calc-mini { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 2rem 0; position: relative; }
.calc-mini div { padding: 1rem; border-radius: 16px; background: rgba(6,10,24,.1); }
.calc-mini b { display: block; font-family: var(--font-display); font-size: clamp(1.1rem, 4.2vw, 1.5rem); white-space: nowrap; }
.calc-mini span { font-size: .8rem; opacity: .8; }
.calc-result .btn { background: var(--ink); color: var(--text); align-self: flex-start; position: relative; }
.calc-note { font-size: .74rem; opacity: .65; margin-top: 1.2rem; position: relative; }

/* ---------- Integrações ---------- */
.orbit-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.orbit { position: relative; aspect-ratio: 1; max-width: 480px; margin-inline: auto; width: 100%; }
.orbit .ring { position: absolute; inset: var(--i); border-radius: 50%; border: 1px dashed var(--line); animation: spin var(--d) linear infinite; }
.orbit .ring.rev { animation-direction: reverse; }
.orbit .node { position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center; background: var(--ink-2); border: 1px solid var(--line); font-size: .66rem; font-weight: 600; text-align: center; line-height: 1.15; color: var(--muted);
  animation: counter var(--d) linear infinite; }
.orbit .ring.rev .node { animation-name: counterRev; }
@keyframes counter { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes counterRev { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit .node.b { top: 100%; }
.orbit .node.l { left: 0; top: 50%; }
.orbit .node.r { left: 100%; top: 50%; }
/* posições para o anel de 3 nós: 120° entre eles, sem buraco na órbita */
.orbit .node.bl { left: 6.7%; top: 75%; }
.orbit .node.br { left: 93.3%; top: 75%; }
.orbit-core { position: absolute; inset: 36%; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, var(--ink-3), var(--ink)); border: 1px solid var(--line);
  box-shadow: 0 0 80px rgba(25,227,255,.35), inset 0 0 40px rgba(140,255,106,.12); }
.orbit-core img { width: 48%; }
@keyframes spin { to { transform: rotate(360deg); } }
.features-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.features-mini div { padding: 1.2rem; border-radius: 18px; border: 1px solid var(--line); background: var(--ink-2); }
.features-mini b { display: block; font-family: var(--font-display); margin-bottom: .3rem; }
.features-mini span { color: var(--muted); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.6rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: 0 0 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); position: relative; transition: transform .4s var(--ease), background .3s; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--text); transform: translate(-50%, -50%); }
.faq summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary i { transform: rotate(45deg); background: var(--growth); border-color: var(--growth); }
.faq details[open] summary i::before, .faq details[open] summary i::after { background: var(--ink); }
.faq .answer { color: var(--muted); padding: 0 3rem 1.6rem 0; }

/* ---------- CTA ---------- */
.cta { position: relative; border-radius: 36px; overflow: hidden; padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem); text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, rgba(25,227,255,.28), transparent 55%), radial-gradient(90% 120% at 50% 100%, rgba(140,255,106,.22), transparent 60%), var(--ink-2);
  border: 1px solid var(--line); }
.cta canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .6; }
.cta > * { position: relative; }
.cta h2 { font-size: clamp(2.2rem, 5.6vw, 4.4rem); max-width: 900px; margin: 1.2rem auto; }
.cta p { color: var(--muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.5rem; }
.cta .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.footer { padding: 5rem 0 2rem; border-top: 1px solid var(--line); margin-top: 6rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer p { color: var(--muted); font-size: .92rem; margin-top: 1.2rem; max-width: 320px; }
.footer h6 { font-family: var(--font-display); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 1.2rem; color: var(--muted); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-size: .94rem; }
.footer ul a:hover { color: var(--signal); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.giant { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 18vw, 15rem); line-height: .8; letter-spacing: -.05em; text-align: center; margin-top: 3rem;
  background: linear-gradient(180deg, rgba(234,240,255,.1), transparent 90%); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; }

/* ---------- WhatsApp flutuante ---------- */
.wa { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 14px 40px -10px rgba(37,211,102,.7); transition: transform .3s var(--ease); }
.wa:hover { transform: scale(1.08) rotate(-6deg); }
.wa svg { width: 30px; height: 30px; }
.wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: waPulse 2.4s infinite; }
@keyframes waPulse { to { transform: scale(1.6); opacity: 0; } }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .hero .container, .dash-wrap, .orbit-wrap, .journey { grid-template-columns: 1fr; }
  .live-card { max-width: 480px; }
  .toast { left: 1rem; }
  .compare, .cases { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .journey-sticky { position: relative; top: 0; max-height: none; display: block; }
  .phone { display: none; }
}
@media (max-width: 860px) {
  .nav, .header .btn { display: none; }
  .menu-toggle { display: block; }
  .menu-open .nav { display: flex; position: fixed; inset: 70px 1rem auto; flex-direction: column; gap: 1.2rem; padding: 1.8rem;
    background: var(--ink-2); border: 1px solid var(--line); border-radius: 20px; font-size: 1.1rem; }
  .h-sticky { position: relative; height: auto; padding: 5rem 0; }
  .h-track { transform: none !important; overflow-x: auto; scroll-snap-type: x mandatory; padding-right: 1.25rem; padding-bottom: 1rem; scrollbar-width: none; }
  .h-track::-webkit-scrollbar { display: none; }
  .sol-card { scroll-snap-align: start; }
  .h-progress { display: none; }
  .h-intro { flex-direction: column; align-items: start; }
  .calc { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-main { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .compare, .cases, .stats, .footer-grid, .features-mini { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .live-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero { padding-top: 7rem; }
  .scroll-hint { display: none; }
  .compare-card { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .split-line > span { transform: none; }
}
