/* ================================================================
   SmartFlux Neo — Redesign 2026
   Dark premium · verde-lima neon · glass sutil · Inter/JetBrains
   Um único stylesheet: tokens, base, nav, hero, seções, footer,
   overrides do chat Flux e responsivo.
   ================================================================ */

/* ============ TOKENS ============ */
:root {
  /* Fundo quase-preto com leve tom verde (evita #000 puro) */
  --bg-0: #060806;
  --bg-1: #080b08;
  --bg-2: #0b0f0b;
  --panel: #0c110d;

  /* Superfícies de vidro */
  --card: rgba(255, 255, 255, .03);
  --card-2: rgba(255, 255, 255, .055);
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .14);

  /* Acento — verde-lima neon */
  --lime: #8fe93c;
  --lime-2: #c2f76d;
  --lime-3: #5fce1f;
  --mint: #3ddc84;
  --lime-ink: #0a2404;
  --glow: rgba(143, 233, 60, .32);
  --glow-soft: rgba(143, 233, 60, .12);

  /* Aliases herdados (flux-chat.css e engine usam --a1/--a2/--a3) */
  --a1: #8fe93c;
  --a2: #3ddc84;
  --a3: #c2f76d;
  --accent-ink: #0a2404;

  /* Texto */
  --ink: #f2f5ef;
  --ink-2: #b2bcaf;
  --ink-3: #7e897e;
  --ink-4: #727d73;

  /* Semânticos */
  --ok: #4ade80;
  --warn: #fbbf24;
  --alert: #f87171;
  --info: #38bdf8;

  /* Tipos */
  --f-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Geometria */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --container: 1200px;

  /* Movimento */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Decorações absolutas (orb, glows) nunca geram scroll lateral.
   SÓ `clip`, nunca `hidden`: hidden transforma o body num contêiner de
   rolagem e todo position:sticky da página (o pino do Cinematic Hero)
   passa a grudar no body — que se move junto com a rolagem — em vez da
   tela. Foi exatamente esse o sintoma: o pino não grudava. `clip` corta
   o transbordo sem criar contêiner de rolagem. */
/* A 1ª declaração é só o fallback para navegadores sem `clip` (Safari
   ≤ 15): nos atuais a 2ª vence dentro da MESMA regra. O que não pode
   voltar é um `overflow-x: hidden` em OUTRA regra de body, que venceria
   a cascata — foi assim que o bug do sticky nasceu. */
html, body { overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--f-sans);
  background: var(--bg-0);
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* sem overflow-x aqui: ver a regra `html, body` acima — hidden neste
     bloco tornava o body contêiner de rolagem e quebrava o sticky */
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--lime); color: var(--lime-ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #1c241c; border-radius: 99px; border: 2px solid var(--bg-0); }
::-webkit-scrollbar-thumb:hover { background: #2a352a; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--lime); color: var(--lime-ink);
  padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* ============ FUNDO AMBIENTE ============ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--lime-3), var(--lime), var(--lime-2));
  z-index: 260; box-shadow: 0 0 12px var(--glow);
}
.bg-aura {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 600px at 82% -5%, rgba(143, 233, 60, .07), transparent 60%),
    radial-gradient(700px 520px at -8% 32%, rgba(61, 220, 132, .05), transparent 60%),
    radial-gradient(800px 640px at 55% 108%, rgba(143, 233, 60, .05), transparent 60%);
}
/* Constellation Grid (fundo do site inteiro) — o renderizador vive em
   assets/js/constellation-grid.js; a opacidade fica aqui para o efeito
   sentar atrás do conteúdo sem competir com ele */
#constellation { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .55; }
.cursor-glow {
  position: fixed; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 233, 60, .05), transparent 65%);
  transform: translate(-50%, -50%); pointer-events: none; z-index: 0;
  opacity: 0; transition: opacity .5s;
}
.cursor-glow.active { opacity: 1; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 14px 0;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 8, 6, .82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo-full { height: 64px; width: auto; display: block; margin: -10px 0; }
footer .brand-logo-full { height: 76px; margin: -12px 0; }

/* Logo do topo — "logo-flux sem fundo.png", usada como veio.
   No arquivo (1536×1024) a arte ocupa só o miolo: sobra vazio de 42.2% à
   esquerda, 39.3% à direita, 20.8% em cima e 23.3% embaixo. As margens
   negativas descontam exatamente essas sobras, senão o logo flutuaria longe
   da borda do menu e pareceria minúsculo dentro de uma caixa enorme.
   Tudo sai de --logo-h: para mudar o tamanho, mexa só nela. */
.brand-logo-topo {
  --logo-h: 124px;
  height: var(--logo-h); width: auto; display: block;
  /* Duas travas, senão a largura é espremida e o logo achata: `.brand` é
     inline-flex e trataria a imagem como item flexível; e o `img{max-width:100%}`
     global limita a largura ao pai, que aqui encolhe junto com as margens
     negativas — o resultado eram 186px virando 85px. */
  flex: none; max-width: none;
  margin: calc(var(--logo-h) * -.208) calc(var(--logo-h) * -.393)
          calc(var(--logo-h) * -.233) calc(var(--logo-h) * -.422);
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; position: relative; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lime-2), var(--lime) 45%, var(--lime-3));
  display: grid; place-items: center;
  box-shadow: 0 4px 18px var(--glow), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b {
  color: var(--ink); font-size: 17px; font-weight: 800; letter-spacing: .01em;
}
.brand-text b i { font-style: normal; color: var(--lime); }
.brand-text span {
  font-family: var(--f-mono); font-size: 9px; font-weight: 500;
  letter-spacing: .22em; color: var(--ink-3); text-transform: uppercase;
}

.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  position: relative; padding: 8px 13px; font-size: 14px; font-weight: 500;
  color: var(--ink-2); border-radius: 8px; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--lime); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(143, 233, 60, .45);
  color: var(--lime); font-size: 14px; font-weight: 700;
  background: rgba(143, 233, 60, .06);
  transition: background .25s, box-shadow .25s, transform .25s;
  white-space: nowrap;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover {
  background: rgba(143, 233, 60, .14);
  box-shadow: 0 0 24px var(--glow-soft);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; margin-right: -10px;
}
.nav-hamburger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; top: 64px; left: 12px; right: 12px; z-index: 190;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(9, 12, 9, .96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 14px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .25s, transform .25s var(--ease-out), visibility .25s;
}
.nav-mobile.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile a {
  padding: 12px 14px; border-radius: 10px; color: var(--ink-2);
  font-size: 15px; font-weight: 600;
}
.nav-mobile a:hover { background: var(--card-2); color: var(--ink); }
.nav-mobile .btn { margin-top: 8px; justify-content: center; }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 14px; border: 0;
  font-size: 15px; font-weight: 700; letter-spacing: .01em;
  cursor: pointer; transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, border-color .25s;
  white-space: nowrap;
}
.btn .arrow, .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary {
  background: linear-gradient(160deg, var(--lime-2) -20%, var(--lime) 45%, var(--lime-3) 120%);
  color: var(--lime-ink);
  box-shadow: 0 10px 32px -6px var(--glow), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -6px var(--glow), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn--primary:active { transform: translateY(0) scale(.98); }
.btn--ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: rgba(143, 233, 60, .5); color: var(--lime-2);
  background: rgba(143, 233, 60, .05);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: 13.5px; border-radius: 11px; }

/* ============ SEÇÕES / CABEÇALHOS ============ */
main { position: relative; z-index: 1; }
section { padding: 110px 0; position: relative; }
.section-wash { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .012) 50%, transparent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--lime);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent);
}
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow::after {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(270deg, var(--lime), transparent);
}
.section-head h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.12;
  color: var(--ink); text-wrap: balance;
}
.section-head p {
  margin: 18px auto 0; max-width: 58ch;
  font-size: clamp(15px, 1.2vw, 16.5px); line-height: 1.65; color: var(--ink-3);
  text-wrap: pretty;
}
.txt-lime {
  background: linear-gradient(100deg, var(--lime-2), var(--lime) 55%, var(--mint));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============ HERO ============ */
.hero { padding: 168px 0 60px; overflow: visible; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}

.hero-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 14px; border-radius: 999px;
  border: 1px solid rgba(143, 233, 60, .28);
  background: rgba(143, 233, 60, .05);
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--lime-2);
}
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 10px var(--lime); animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143, 233, 60, .5); }
  50% { box-shadow: 0 0 0 7px rgba(143, 233, 60, 0); }
}

.hero h1 {
  margin: 26px 0 0;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800; letter-spacing: -.045em; line-height: 1.07;
  color: var(--ink);
  max-width: 15ch;
}
.hero-copy {
  margin: 24px 0 0; max-width: 50ch;
  font-size: clamp(16px, 1.35vw, 18px); line-height: 1.65; color: var(--ink-2);
  text-wrap: pretty;
}
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cta-reassure {
  margin-top: 16px; font-size: 13px; color: var(--ink-3);
}
.hero-partner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 26px;
}
.hero-partner .kommo-partner-badge { height: 40px; width: auto; opacity: .92; }
.hero-partner .sep { width: 1px; height: 26px; background: var(--line-2); }
.hero-partner span { font-size: 13px; color: var(--ink-3); }
.hero-partner b { color: var(--ink); font-weight: 700; }

/* Stack de ferramentas */
.stack-label {
  margin-top: 44px;
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ink-4);
}
.stack-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; max-width: 620px; }
.stack-label { text-align: center; max-width: 620px; }
.stack-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  width: 76px; padding: 13px 6px 11px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  transition: transform .25s var(--ease-out), border-color .25s, background .25s;
}
.stack-item svg { width: 24px; height: 24px; color: var(--lime); }
.stack-item span {
  font-size: 10px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-3); text-align: center; line-height: 1.25;
}
.stack-item:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 233, 60, .38); background: rgba(143, 233, 60, .05);
}
.stack-item:hover span { color: var(--ink-2); }

/* Hero — composição orbital (direita) */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.orb { position: relative; width: min(460px, 100%); aspect-ratio: 1; }
.orb::before {
  content: ""; position: absolute; inset: -12%;
  background: radial-gradient(circle, rgba(143, 233, 60, .13), rgba(143, 233, 60, .04) 45%, transparent 68%);
  border-radius: 50%;
}
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(143, 233, 60, .16); }
.orb-ring.r1 { inset: 0; }
.orb-ring.r2 { inset: 13%; border-color: rgba(255, 255, 255, .06); }
.orb-ring.r3 { inset: 27%; border-color: rgba(143, 233, 60, .1); }
.orb-arc {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 78%, var(--lime) 92%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  animation: orb-spin 9s linear infinite;
  filter: drop-shadow(0 0 6px var(--glow));
}
.orb-arc.a2 {
  inset: 13%; animation-duration: 14s; animation-direction: reverse; opacity: .55;
  background: conic-gradient(from 180deg, transparent 0 82%, var(--mint) 93%, transparent 100%);
}
@keyframes orb-spin { to { transform: rotate(360deg); } }

.orb-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; z-index: 3;
}
.orb-hub-mark {
  width: 92px; height: 92px; border-radius: 26px; overflow: hidden;
  box-shadow: 0 18px 54px -10px rgba(0, 0, 0, .8), 0 0 44px -8px var(--glow-soft);
  animation: hub-float 5.5s ease-in-out infinite;
}
.orb-hub-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes hub-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.orb-hub b { color: var(--ink); font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.orb-hub small {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-3);
}

.orb-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(10, 14, 10, .82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  font-size: 12px; font-weight: 600; color: var(--ink-2); white-space: nowrap;
  animation: chip-float 6s ease-in-out infinite;
}
.orb-chip svg { width: 14px; height: 14px; color: var(--lime); flex-shrink: 0; }
.orb-chip.c1 { top: 4%; left: 14%; animation-delay: -.6s; }
.orb-chip.c2 { top: 24%; left: -8%; animation-delay: -1.8s; }
.orb-chip.c3 { top: 33%; right: -6%; animation-delay: -3s; }
.orb-chip.c4 { bottom: -3%; left: 44%; animation-delay: -4.2s; }
.orb-chip.c5 { top: 49%; left: -9%; animation-delay: -5.4s; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.float-card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 13px;
  padding: 16px 20px; border-radius: 18px;
  background: rgba(12, 17, 12, .78);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .7);
  animation: chip-float 7s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: rgba(143, 233, 60, .12); border: 1px solid rgba(143, 233, 60, .25);
  display: grid; place-items: center;
}
.float-card .fc-icon svg { width: 19px; height: 19px; color: var(--lime); }
.float-card b {
  display: block; font-size: 21px; font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); line-height: 1.1;
}
.float-card b i { font-style: normal; color: var(--lime); }
.float-card span { display: block; font-size: 12px; color: var(--ink-3); line-height: 1.35; }
.float-card.f1 { top: 7%; right: -3%; animation-delay: -1s; }
.float-card.f2 { top: 62%; right: -9%; animation-delay: -3.4s; }
.float-card.f3 { bottom: 4%; left: -5%; animation-delay: -5.2s; }

/* ============ FAIXA SOBRE / MÉTRICAS ============ */
.about-band { padding: 40px 0 90px; }
.about-panel {
  display: grid; grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 36px; align-items: center;
  padding: 44px 48px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  border: 1px solid var(--line); border-radius: var(--r-xl);
  position: relative; overflow: hidden;
}
.about-panel::before {
  content: ""; position: absolute; top: -60%; left: -10%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 233, 60, .08), transparent 65%);
  pointer-events: none;
}
.about-intro .eyebrow { margin-bottom: 14px; }
.about-intro p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); max-width: 34ch; }
.about-sig {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lime);
}
.about-sig svg { width: 15px; height: 15px; }
.about-stat { text-align: center; position: relative; }
.about-stat + .about-stat::before,
.about-stat:first-of-type::before {
  content: ""; position: absolute; left: -18px; top: 12%; bottom: 12%;
  width: 1px; background: var(--line);
}
.about-stat svg { width: 26px; height: 26px; color: var(--lime); margin: 0 auto 12px; display: block; }
.about-stat .num {
  font-size: clamp(28px, 2.6vw, 38px); font-weight: 800; letter-spacing: -.03em;
  color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.about-stat .num i { font-style: normal; color: var(--lime); }
.about-stat b { display: block; margin-top: 9px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.about-stat span { display: block; margin-top: 3px; font-size: 11.5px; color: var(--ink-4); line-height: 1.4; }

/* ============ MARQUEE ============ */
.logos { padding: 0 0 40px; }
.logos-row { display: flex; align-items: center; gap: 26px; }
.logos .label {
  flex-shrink: 0; font-family: var(--f-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-4);
}
.marquee { overflow: hidden; flex: 1; position: relative; min-width: 0; contain: paint;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 44px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  font-size: 14px; font-weight: 600; color: var(--ink-4);
  display: inline-flex; align-items: center; gap: 44px; white-space: nowrap;
}
.marquee-item::after { content: "·"; color: rgba(143, 233, 60, .4); }

/* ============ STAGE — DIAGNÓSTICO AO VIVO ============ */
.demo { padding-top: 40px; }
.stage { position: relative; perspective: 1400px; }
.stage-shell {
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .2s ease-out;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(143, 233, 60, .16), rgba(255, 255, 255, .05) 32%, rgba(61, 220, 132, .1));
  padding: 1px;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, .8), 0 0 80px -30px var(--glow-soft);
}
.stage-inner {
  border-radius: calc(var(--r-xl) - 1px);
  background: rgba(8, 11, 8, .92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  overflow: hidden;
}
.stage-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-bottom: 1px solid var(--line);
}
.stage-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.stage-bar .dot.r { background: #ff5f57; }
.stage-bar .dot.y { background: #febc2e; }
.stage-bar .dot.g { background: #28c840; }
.stage-bar .url {
  flex: 1; display: flex; justify-content: center;
}
.stage-bar .url span {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-3);
  background: var(--card); border: 1px solid var(--line);
  padding: 4px 16px; border-radius: 7px;
}
.stage-bar .live {
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--lime);
  display: inline-flex; align-items: center; gap: 6px;
}
.stage-bar .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 2s infinite;
}
.stage-body {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 0;
}
.stage-pane { padding: 22px; min-width: 0; }
.stage-pane + .stage-pane { border-left: 1px solid var(--line); }
.pane-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
}
.pane-head .badge {
  font-family: var(--f-mono); font-size: 9px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--lime); background: rgba(143, 233, 60, .08);
  border: 1px solid rgba(143, 233, 60, .3);
  padding: 4px 9px; border-radius: 999px;
}

.prompt {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px;
}
.prompt-label {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 7px;
}
.typing { font-size: 13px; color: var(--ink); min-height: 40px; line-height: 1.5; }
.caret {
  display: inline-block; width: 2px; height: 14px; background: var(--lime);
  vertical-align: text-bottom; margin-left: 2px;
  animation: caret-blink 1s steps(2) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.chip {
  font-size: 11px; font-weight: 600; color: var(--ink-3);
  background: var(--card); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 999px;
}

.analysis { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.a-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 11px;
  background: var(--card); border: 1px solid var(--line);
  transition: border-color .3s, background .3s;
}
.a-item.a-active { border-color: rgba(143, 233, 60, .4); background: rgba(143, 233, 60, .05); }
.a-icon {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(143, 233, 60, .1); color: var(--lime);
  font-size: 13px; font-weight: 700;
}
.a-item > div { flex: 1; min-width: 0; }
.a-item b { display: block; font-size: 12px; color: var(--ink); }
.a-item small { font-size: 10.5px; color: var(--ink-4); }
.a-tag {
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; flex-shrink: 0;
  color: var(--info); background: rgba(56, 189, 248, .09); border: 1px solid rgba(56, 189, 248, .25);
}
.a-tag.ok { color: var(--ok); background: rgba(74, 222, 128, .09); border-color: rgba(74, 222, 128, .3); }
.a-tag.warn { color: var(--warn); background: rgba(251, 191, 36, .09); border-color: rgba(251, 191, 36, .3); }

/* Flow central */
.flow { position: relative; min-height: 400px; overflow: hidden; }
.flow .lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.conn-line { fill: none; stroke: rgba(255, 255, 255, .08); stroke-width: 1.2; }
.conn-active {
  fill: none; stroke: url(#flowGrad); stroke-width: 1.6;
  stroke-dasharray: 60 400; stroke-dashoffset: 460; opacity: 0;
}
.conn-active.fire { animation: conn-fire 2.4s ease-out; }
@keyframes conn-fire {
  0% { stroke-dashoffset: 460; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.packet { fill: var(--lime); filter: drop-shadow(0 0 5px var(--lime)); }
.packet.p2 { fill: var(--mint); filter: drop-shadow(0 0 5px var(--mint)); }
.packet.p3 { fill: var(--lime-2); filter: drop-shadow(0 0 5px var(--lime-2)); }

.hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 108px; height: 108px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(143, 233, 60, .2), rgba(10, 14, 10, .95) 70%);
  border: 1px solid rgba(143, 233, 60, .45);
  box-shadow: 0 0 44px -6px var(--glow), inset 0 0 24px rgba(143, 233, 60, .08);
  color: var(--ink); font-weight: 800; font-size: 16px; letter-spacing: -.01em;
  text-align: center; z-index: 3;
}
.hub small {
  font-family: var(--f-mono); font-size: 8.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--lime); margin-top: 3px;
}
.hub-orbit {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px dashed rgba(143, 233, 60, .12);
}
.hub-orbit.r1 { width: 160px; height: 160px; animation: orb-spin 24s linear infinite; }
.hub-orbit.r2 { width: 230px; height: 230px; animation: orb-spin 38s linear infinite reverse; }
.hub-orbit.r3 { width: 300px; height: 300px; animation: orb-spin 52s linear infinite; }

.node {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(10, 14, 10, .88); border: 1px solid var(--line-2);
  font-size: 11px; font-weight: 600; color: var(--ink-2);
  transition: border-color .4s, color .4s, box-shadow .4s;
  white-space: nowrap;
}
.node .ico {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-4); transition: background .4s, box-shadow .4s;
}
.node.active {
  border-color: rgba(143, 233, 60, .55); color: var(--ink);
  box-shadow: 0 0 22px -4px var(--glow);
}
.node.active .ico { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.node.n1 { top: 9%; left: 5%; }
.node.n2 { top: 5%; right: 6%; }
.node.n3 { bottom: 9%; left: 6%; }
.node.n4 { bottom: 6%; right: 5%; }
.node.n5 { top: 46%; left: 1%; }
.node.n6 { top: 46%; right: 1%; }

.toast-area {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 6px; z-index: 4;
  width: max-content; max-width: 92%;
}
.toast {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600; color: var(--ink-2);
  background: rgba(10, 14, 10, .92); border: 1px solid var(--line-2);
  padding: 7px 12px; border-radius: 9px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--ease-out);
}
.toast.show { opacity: 1; transform: translateY(0); }
.t-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 6px var(--lime); flex-shrink: 0; }
.t-dot.t-blue { background: var(--info); box-shadow: 0 0 6px var(--info); }
.t-dot.t-warn { background: var(--warn); box-shadow: 0 0 6px var(--warn); }
.t-time { font-family: var(--f-mono); font-size: 8.5px; color: var(--ink-4); margin-left: 4px; }

/* KPI pane */
.seal {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px; border-radius: 12px; margin-bottom: 14px;
  background: rgba(143, 233, 60, .05); border: 1px solid rgba(143, 233, 60, .22);
}
.seal-mark {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  overflow: hidden;
}
.seal-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.seal b { display: block; font-size: 12.5px; color: var(--ink); }
.seal span { font-size: 10.5px; color: var(--ink-3); }

.kpi-grid { display: flex; flex-direction: column; gap: 10px; }
.kpi {
  background: var(--card); border: 1px solid var(--line); border-radius: 13px;
  padding: 13px 15px;
}
.kpi > b { font-size: 11px; font-weight: 700; color: var(--ink-2); }
.kpi .num {
  font-size: 27px; font-weight: 800; letter-spacing: -.02em; color: var(--ink);
  line-height: 1.2; font-variant-numeric: tabular-nums;
}
.kpi .num .unit { font-size: 15px; color: var(--lime); }
.kpi .sub { font-size: 10px; color: var(--ink-4); }
.kpi .bar {
  height: 4px; border-radius: 99px; background: rgba(255, 255, 255, .06);
  margin-top: 9px; overflow: hidden;
}
.kpi .bar i {
  display: block; height: 100%; width: 86%; border-radius: 99px;
  background: linear-gradient(90deg, var(--lime-3), var(--lime));
  box-shadow: 0 0 8px var(--glow);
  animation: bar-in 1.6s var(--ease-out);
}
.kpi .bar.warn i { width: 72%; background: linear-gradient(90deg, #b45309, var(--warn)); box-shadow: 0 0 8px rgba(251, 191, 36, .3); }
@keyframes bar-in { from { width: 0; } }

.pipeline-head { font-size: 11px; font-weight: 700; color: var(--ink-2); margin-bottom: 9px; }
.pipeline-stages { display: flex; gap: 4px; margin-bottom: 10px; }
.pipeline-stage {
  flex: 1; text-align: center; font-family: var(--f-mono);
  font-size: 8.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-4); padding: 4px 2px; border-radius: 6px;
  border: 1px solid transparent; transition: all .4s;
}
.pipeline-stage.active {
  color: var(--lime); border-color: rgba(143, 233, 60, .35);
  background: rgba(143, 233, 60, .07);
}
.pipeline-track { position: relative; height: 124px; }
.lead-card {
  position: absolute; left: 0; right: 0;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
  border-radius: 10px; padding: 7px 10px;
  opacity: 0; transform: translateX(12px);
  transition: opacity .5s, transform .5s var(--ease-out);
}
.lead-card.visible { opacity: 1; transform: translateX(0); }
.avatar {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(143, 233, 60, .13); color: var(--lime);
  font-size: 8.5px; font-weight: 800;
}
.lead-info { flex: 1; min-width: 0; }
.lead-name { font-size: 11px; font-weight: 700; color: var(--ink); }
.lead-stage { font-size: 9px; color: var(--ink-4); }
.lead-status {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
}

/* ============ PROBLEMA ============ */
.pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.pain {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.pain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(143, 233, 60, .07), transparent 55%);
  opacity: var(--glow-opacity, 0); transition: opacity .3s;
}
.pain:hover { border-color: rgba(143, 233, 60, .3); }
.pain-icon {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(143, 233, 60, .09); border: 1px solid rgba(143, 233, 60, .22);
  color: var(--lime);
}
.pain-num {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-4);
}
.pain h3 { margin: 8px 0 10px; font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.pain p { font-size: 13.5px; line-height: 1.6; color: var(--ink-3); }

/* ============ MÉTODO ============ */
.method-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.method-wrap > * { min-width: 0; }
.method-card, .table-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px;
}
.method-card h3 { margin-top: 14px; font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.method-card > p { color: var(--ink-3); font-size: 14px; line-height: 1.6; margin-top: 10px; }
.steps { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 15px 16px; border-radius: 13px;
  background: rgba(255, 255, 255, .02); border: 1px solid transparent;
  transition: border-color .25s, background .25s, transform .25s var(--ease-out);
}
.step:hover {
  border-color: rgba(143, 233, 60, .25); background: rgba(143, 233, 60, .04);
  transform: translateX(4px);
}
.step-num {
  font-family: var(--f-mono); font-size: 12px; font-weight: 700; color: var(--lime);
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(143, 233, 60, .08); border: 1px solid rgba(143, 233, 60, .25);
}
.step b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.step p { font-size: 12.5px; line-height: 1.55; color: var(--ink-3); margin-top: 3px; }

.filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.filter {
  font-size: 12px; font-weight: 600; color: var(--ink-3);
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 15px; transition: all .2s;
}
.filter:hover { color: var(--ink); border-color: var(--line-2); }
.filter.on {
  color: var(--lime-ink); background: var(--lime); border-color: var(--lime);
  font-weight: 700; box-shadow: 0 4px 16px -4px var(--glow);
}
.table-wrap { overflow-x: auto; }
.table-wrap table, .user-matrix table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table-wrap th, .user-matrix th {
  text-align: left; font-family: var(--f-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4);
  padding: 10px 12px; border-bottom: 1px solid var(--line-2);
  white-space: nowrap;
}
.table-wrap td, .user-matrix td {
  padding: 12px; border-bottom: 1px solid var(--line);
  color: var(--ink-3); vertical-align: middle;
}
.table-wrap td b, .user-matrix td b { color: var(--ink); font-weight: 700; }
.table-wrap tbody tr, .user-matrix tbody tr { transition: background .2s; }
.table-wrap tbody tr:hover, .user-matrix tbody tr:hover { background: rgba(143, 233, 60, .03); }

.tag {
  display: inline-block; font-family: var(--f-mono); font-size: 9px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.tag.ok { color: var(--ok); background: rgba(74, 222, 128, .08); border: 1px solid rgba(74, 222, 128, .3); }
.tag.warn { color: var(--warn); background: rgba(251, 191, 36, .08); border: 1px solid rgba(251, 191, 36, .3); }
.tag.info { color: var(--info); background: rgba(56, 189, 248, .08); border: 1px solid rgba(56, 189, 248, .3); }
.tag.alert { color: var(--alert); background: rgba(248, 113, 113, .08); border: 1px solid rgba(248, 113, 113, .3); }

/* ============ CREDENCIAIS ============ */
.cred-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 440px)); gap: 22px;
  justify-content: center;
}
.cred-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .3s var(--ease-out), border-color .3s;
}
.cred-card:hover { border-color: rgba(143, 233, 60, .35); }
.cred-img { width: 100%; height: auto; }
.cred-meta { padding: 16px 20px; display: flex; align-items: center; gap: 9px; }
.cred-meta::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
}
.cred-label { font-size: 13.5px; font-weight: 700; color: var(--ink); }

/* ============ PLANOS ============ */
.cost-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 44px; }
.cost-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px;
}
.cost-box.accent {
  background: linear-gradient(160deg, rgba(143, 233, 60, .08), rgba(143, 233, 60, .02));
  border-color: rgba(143, 233, 60, .3);
}
.cost-tag {
  display: inline-block; font-family: var(--f-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); background: var(--card-2); border: 1px solid var(--line);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 13px;
}
.cost-box.accent .cost-tag { color: var(--lime); background: rgba(143, 233, 60, .08); border-color: rgba(143, 233, 60, .3); }
.cost-box b { display: block; font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.cost-box p { margin-top: 9px; font-size: 13.5px; line-height: 1.6; color: var(--ink-3); }

.pricing-controls {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 26px; margin-bottom: 26px; flex-wrap: wrap;
}
.pc-copy b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.pc-copy span { font-size: 12.5px; color: var(--ink-3); max-width: 52ch; display: block; margin-top: 3px; }
.user-switch { display: flex; gap: 6px; }
.user-switch button {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--card-2); border: 1px solid var(--line);
  color: var(--ink-2); font-size: 14.5px; font-weight: 700;
  transition: all .2s;
}
.user-switch button:hover { border-color: var(--line-2); color: var(--ink); }
.user-switch button.on {
  background: var(--lime); border-color: var(--lime); color: var(--lime-ink);
  box-shadow: 0 6px 20px -6px var(--glow);
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.price:hover { transform: translateY(-6px); border-color: var(--line-2); }
.price.featured {
  background: linear-gradient(170deg, rgba(143, 233, 60, .1), rgba(255, 255, 255, .02) 55%);
  border-color: rgba(143, 233, 60, .45);
  box-shadow: 0 24px 70px -30px var(--glow);
}
.price.featured:hover { border-color: rgba(143, 233, 60, .7); }
.price-tag {
  position: absolute; top: -13px; left: 26px;
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--lime); color: var(--lime-ink);
  padding: 5px 13px; border-radius: 999px;
  box-shadow: 0 5px 16px -4px var(--glow);
}
.price-tag.subtle {
  background: var(--panel); color: var(--ink-3);
  border: 1px solid var(--line-2); box-shadow: none;
}
.price h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-top: 8px; }
.price-desc { font-size: 13px; line-height: 1.55; color: var(--ink-3); margin-top: 8px; min-height: 3.2em; }
.price-amt { margin-top: 18px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-amt .v {
  font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.price.featured .price-amt .v { color: var(--lime); }
.price-amt .u { font-size: 12px; color: var(--ink-4); }
.price-from {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .06em;
  color: var(--ink-4); margin-top: 4px;
}
/* deixa claro que o valor acima é só a licença: a implantação (o nosso
   serviço) é cobrada à parte, conforme o tamanho da operação */
.price-plus {
  display: inline-block;
  margin-top: 9px;
  padding: 5px 9px;
  border: 1px solid rgba(143, 233, 60, .22);
  border-radius: 999px;
  background: rgba(143, 233, 60, .06);
  color: var(--lime-2);
  /* sempre numa linha só: a fonte encolhe junto com o card para a frase
     nunca quebrar ("de usuários" vazando para baixo ficava feio) */
  white-space: nowrap;
  max-width: 100%;
  font-size: 10px;
  letter-spacing: 0;
}
@media (min-width: 981px) and (max-width: 1219px) {
  .price-plus { font-size: 9.5px; padding: 4px 7px; }
}
.price ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.price li svg { width: 15px; height: 15px; color: var(--lime); flex-shrink: 0; }
.price .btn { width: 100%; }

.price-note { margin-top: 34px; display: flex; justify-content: center; }
.price-note-card {
  max-width: 680px; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 30px;
}
.price-note-card b { color: var(--ink); font-size: 15px; }
.price-note-card p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--ink-3); }

.price-disclaimer {
  max-width: 760px; margin: 22px auto 0; text-align: center;
  font-size: 12.5px; line-height: 1.6; color: var(--ink-4);
}
.price-disclaimer strong { color: var(--ink-3); }

.kommo-head, .partner-head { margin-top: 90px; }
.user-matrix {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 10px 18px; overflow-x: auto;
}
.user-matrix td { font-variant-numeric: tabular-nums; }
.user-matrix tbody tr:last-child td { border-bottom: 0; }

/* ============ PRO-GRID (Quando Pro / Diferenciais) ============ */
/* Flex em vez de grid: fileiras incompletas (ex.: 5 cards em 3 colunas)
   ficam centralizadas em vez de sobrar um vão à direita. */
.pro-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.pro-grid .pro-card { width: calc((100% - 32px) / 3); }
.pro-card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 24px;
  transition: transform .3s var(--ease-out), border-color .3s;
}
.pro-card:hover { transform: translateY(-4px); border-color: rgba(143, 233, 60, .3); }
.pro-card .num {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  color: var(--lime); display: block; margin-bottom: 12px;
}
.pro-card b { display: block; font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.pro-card p { margin-top: 7px; font-size: 13px; line-height: 1.6; color: var(--ink-3); }

/* ============ SITES / LANDING PAGES ============ */
.lp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-card {
  display: block; border-radius: var(--r-lg); overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.lp-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--lp, #8fe93c) 55%, transparent);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .8);
}
.lp-shot {
  display: block; position: relative; height: 210px; padding: 18px;
  background: var(--lp-bg, var(--panel));
}
.lp-dots { display: flex; gap: 4px; margin-bottom: 16px; }
.lp-dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lp-dot, rgba(255, 255, 255, .25));
}
.lp-head {
  display: block; font-size: 16.5px; font-weight: 800; letter-spacing: -.01em;
  line-height: 1.25; color: var(--lp-ink, #fff); max-width: 90%;
}
.lp-btn {
  display: inline-block; margin-top: 14px;
  font-size: 10.5px; font-weight: 800;
  background: var(--lp, var(--lime)); color: var(--lp-btn-ink, #04170b);
  padding: 7px 14px; border-radius: 8px;
}
.lp-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px;
}
.lp-meta b { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.lp-meta span { font-size: 11.5px; color: var(--ink-4); }
.lp-foot { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* Grade de screenshots reais do portfólio */
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.shot-card {
  display: block; border-radius: var(--r-lg); overflow: hidden;
  background: var(--card); border: 1px solid var(--line);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.shot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 233, 60, .45);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .8);
}
.shot-img { display: block; height: 200px; overflow: hidden; background: var(--panel); }
.shot-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .5s var(--ease-out);
}
.shot-card:hover .shot-img img { transform: scale(1.04); }
.shot-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 18px;
}
.shot-meta b { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.shot-tag {
  font-family: var(--f-mono); font-size: 9px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
  color: var(--lime); background: rgba(143, 233, 60, .07);
  border: 1px solid rgba(143, 233, 60, .25);
  padding: 4px 10px; border-radius: 999px;
}

/* ============ GLOSSÁRIO ============ */
.gloss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gloss-card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform .3s var(--ease-out), border-color .3s;
}
.gloss-card:hover { transform: translateY(-4px); border-color: rgba(143, 233, 60, .32); }
.gloss-card::before {
  content: ""; position: absolute; top: 0; left: 26px; right: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 233, 60, .5), transparent);
  opacity: 0; transition: opacity .3s;
}
.gloss-card:hover::before { opacity: 1; }
.g-num {
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--lime);
}
.gloss-card h3 { margin: 10px 0 10px; font-size: 19px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.gloss-card > p { font-size: 13.5px; line-height: 1.62; color: var(--ink-3); }
.g-quote {
  margin-top: 14px; padding: 12px 15px; border-radius: 11px;
  background: rgba(143, 233, 60, .05); border-left: 2px solid var(--lime);
  font-size: 12.5px; line-height: 1.55; color: var(--ink-2); font-style: italic;
}
.g-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.g-pill {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .06em;
  color: var(--ink-4); background: var(--card-2); border: 1px solid var(--line);
  padding: 3px 10px; border-radius: 999px;
}

/* ============ DEPOIMENTOS ============ */
#depoimentos { overflow: hidden; }
.t-marquee {
  display: flex; flex-direction: column; gap: 16px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.t-row {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 46s linear infinite;
}
.t-row.reverse { animation-direction: reverse; animation-duration: 54s; }
.t-marquee:hover .t-row { animation-play-state: paused; }
.t-card {
  width: 400px; flex-shrink: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 26px;
  transition: border-color .3s;
}
.t-card:hover { border-color: rgba(143, 233, 60, .3); }
.t-stars {
  color: #fbbf24; font-size: 13px; letter-spacing: 3px; margin-bottom: 10px;
}
.t-quote { font-size: 14px; line-height: 1.65; color: var(--ink-2); }
.t-meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(143, 233, 60, .25), rgba(61, 220, 132, .15));
  border: 1px solid rgba(143, 233, 60, .35);
  color: var(--lime-2); font-size: 12px; font-weight: 800;
}
.t-avatar-img {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; border: 1px solid rgba(143, 233, 60, .35);
}
.t-name b { display: block; font-size: 13.5px; color: var(--ink); }
.t-name span { font-size: 11.5px; color: var(--ink-4); }
@media (max-width: 640px) {
  .t-card { width: 320px; padding: 20px; }
}
/* O carrossel dos depoimentos leva 46s para dar uma volta — é deslocamento
   lento e contínuo, não o movimento brusco que a preferência de sistema quer
   evitar. Ele continua rodando; quem quiser ler parado passa o mouse por cima
   (`animation-play-state: paused`). */

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; transition: border-color .25s;
}
.faq:hover, .faq[open] { border-color: rgba(143, 233, 60, .3); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-size: 15.5px; font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(143, 233, 60, .08); border: 1px solid rgba(143, 233, 60, .28);
  color: var(--lime); transition: transform .3s var(--ease-out), background .3s;
}
.faq[open] .plus { transform: rotate(45deg); background: var(--lime); color: var(--lime-ink); }
.faq-body {
  padding: 0 24px 22px; font-size: 14px; line-height: 1.65; color: var(--ink-3);
  max-width: 65ch;
}
.faq-body strong { color: var(--ink-2); }

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(700px 340px at 50% -12%, rgba(143, 233, 60, .16), transparent 65%),
    linear-gradient(170deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  border: 1px solid rgba(143, 233, 60, .22); border-radius: var(--r-xl);
  padding: 76px 40px;
}
.cta-final h2 {
  margin-top: 20px; font-size: clamp(28px, 3.8vw, 44px); font-weight: 800;
  letter-spacing: -.035em; line-height: 1.12; color: var(--ink);
  max-width: 24ch; margin-inline: auto; text-wrap: balance;
}
.cta-final > p {
  margin: 18px auto 0; max-width: 58ch;
  font-size: 15.5px; line-height: 1.65; color: var(--ink-3);
}
.cta-trust {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 12px 26px; margin-top: 30px;
}
.cta-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3);
}
.cta-trust-item b { color: var(--lime); font-weight: 800; }
.cta-trust-badge { height: 30px; width: auto; }
.cta-final .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.cta-particle {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime); opacity: .35; pointer-events: none;
  animation: particle-rise 9s linear infinite;
}
.cta-particle:nth-child(1) { left: 12%; animation-delay: 0s; }
.cta-particle:nth-child(2) { left: 32%; animation-delay: -2.2s; width: 3px; height: 3px; }
.cta-particle:nth-child(3) { left: 54%; animation-delay: -4.6s; }
.cta-particle:nth-child(4) { left: 72%; animation-delay: -1.4s; width: 3px; height: 3px; }
.cta-particle:nth-child(5) { left: 89%; animation-delay: -6.8s; }
@keyframes particle-rise {
  from { transform: translateY(110%); opacity: 0; }
  12% { opacity: .35; }
  88% { opacity: .35; }
  to { transform: translateY(-560px); opacity: 0; }
}

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--line); padding: 70px 0 34px; background: var(--bg-1); }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.foot-grid > div > p { margin-top: 16px; font-size: 13.5px; line-height: 1.65; color: var(--ink-3); max-width: 30ch; }
.foot-badge { margin-top: 20px; }
.foot-kommo-badge { height: 44px; width: auto; opacity: .92; }
footer h3 {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-4);
  margin-bottom: 16px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul li { font-size: 13.5px; color: var(--ink-3); }
footer ul a { transition: color .2s; }
footer ul a:hover { color: var(--lime-2); }
.foot-social { display: flex; gap: 10px; }
.foot-social-btn {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--card-2); border: 1px solid var(--line);
  transition: transform .25s var(--ease-out), border-color .25s;
}
.foot-social-btn:hover { transform: translateY(-3px); border-color: rgba(143, 233, 60, .4); }
.foot-ico { width: 21px; height: 21px; }
.foot-legal { margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); }
.foot-legal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  font-style: normal; margin-top: 6px;
}
.foot-legal-item { display: flex; flex-direction: column; gap: 3px; }
.foot-legal-k {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-4);
}
.foot-legal-v { font-size: 13px; color: var(--ink-2); }
.foot-legal-v a:hover { color: var(--lime-2); }
.foot-base {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-4);
}
.foot-legal-links a { transition: color .2s; }
.foot-legal-links a:hover { color: var(--lime-2); }

/* ============ MOBILE CTA ============ */
.mobile-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 180;
  display: none;
  transform: translateY(120%); transition: transform .4s var(--ease-out);
}
.mobile-cta.revealed { transform: translateY(0); }

/* ============ REVEAL ============ */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--rd, 0ms);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ============ FLUX CHAT — overrides (ciano → lima) ============ */
.flux-btn { background: linear-gradient(135deg, var(--lime) 0%, var(--mint) 100%) !important; }
.flux-panel { border-color: rgba(143, 233, 60, .25) !important; background: #0a0e0a !important; }
.flux-header { background: linear-gradient(180deg, rgba(143, 233, 60, .06), transparent) !important; }
.flux-avatar, .flux-msg-av {
  background: url('../../sofia-avatar.jpg') center/cover no-repeat, linear-gradient(135deg, var(--lime-2), var(--lime-3)) !important;
  color: transparent !important;
}
.flux-messages::-webkit-scrollbar-thumb { background: rgba(143, 233, 60, .18) !important; }
.flux-msg.bot .flux-bubble { background: rgba(255, 255, 255, .05) !important; }
.flux-msg.user .flux-bubble { background: linear-gradient(135deg, rgba(143, 233, 60, .16), rgba(61, 220, 132, .12)) !important; }
.flux-cta-inline {
  background: rgba(143, 233, 60, .09) !important; border-color: rgba(143, 233, 60, .3) !important;
  color: var(--lime-2) !important;
}
.flux-cta-inline:hover { background: rgba(143, 233, 60, .16) !important; border-color: rgba(143, 233, 60, .45) !important; }
.flux-textarea:focus { border-color: rgba(143, 233, 60, .35) !important; background: rgba(143, 233, 60, .04) !important; }
.flux-send-btn { background: linear-gradient(135deg, var(--lime), var(--mint)) !important; color: var(--lime-ink) !important; }
.flux-online-dot { background: var(--lime) !important; box-shadow: 0 0 8px var(--lime) !important; }
.flux-callout { border-color: rgba(143, 233, 60, .3) !important; background: rgba(10, 14, 10, .95) !important; }
.flux-callout .cl-cta { color: var(--lime) !important; }

/* Botão flutuante = rosto da Sofia (anel lima + selo de online).
   Fechado mostra a foto; aberto volta ao "X" sobre o gradiente. */
.flux-btn {
  background:
    url('../../sofia-avatar.jpg') center/cover no-repeat !important;
  border: 2px solid var(--lime) !important;
  overflow: visible !important;
}
.flux-btn .ico-chat { display: none !important; }
.flux-btn::after {
  content: ""; position: absolute; right: 1px; bottom: 1px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--lime); border: 2px solid #0a0e0a;
  box-shadow: 0 0 8px var(--lime);
}
.flux-btn.open {
  background: linear-gradient(135deg, var(--lime), var(--mint)) !important;
  border-color: transparent !important;
}
.flux-btn.open::after { display: none; }
.flux-btn.open .ico-close { stroke: var(--lime-ink) !important; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1180px) {
  .float-card.f2 { right: -2%; }
  .stage-body { grid-template-columns: 1fr 1fr; }
  .stage-pane.flow { display: none; }
}

@media (max-width: 1080px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
  .about-panel { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; padding: 36px; }
  .about-intro { grid-column: 1 / -1; text-align: center; }
  .about-intro p { margin: 0 auto; }
  .about-stat::before, .about-stat + .about-stat::before { display: none; }
}

@media (max-width: 980px) {
  section { padding: 84px 0; }
  /* No celular a barra ja NASCE no estado compacto (fundo + padding do
     .scrolled): sem isto, ao abrir o site o logo ficava solto num vao
     escuro — status bar + barra de URL + nav transparente viravam um
     bloco preto so — e "subia" ao comecar a rolar. Agora a posicao e a
     mesma do primeiro pixel ao ultimo. */
  .nav {
    padding: 10px 0;
    background: rgba(6, 8, 6, .82);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--line);
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: 0; }
  /* Logo centralizada na barra do celular. O espaçador tem exatamente a
     largura do botão do menu (44px — a "toggle bubble" do bubble-menu.css);
     sem ele as margens automáticas centralizariam o logo só no espaço que
     sobra e ele ficaria deslocado para a esquerda. */
  .nav-inner::before { content: ''; flex: none; width: 44px; }
  .nav-inner .brand { margin-inline: auto; }
  .hero { padding: 130px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 0; margin-top: 20px; }
  .orb { width: min(400px, 88vw); }
  .method-wrap { grid-template-columns: 1fr; }
  .pro-grid .pro-card { width: calc((100% - 16px) / 2); }
  .gloss-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price.featured { order: -1; }
  .cost-split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-legal-grid { grid-template-columns: 1fr 1fr; }
  .stage-body { grid-template-columns: 1fr; }
  .stage-pane + .stage-pane { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  section { padding: 68px 0; }
  .hero { padding: 118px 0 30px; }
  .hero .actions .btn { width: 100%; }
  .float-card { padding: 12px 15px; gap: 10px; }
  .float-card b { font-size: 17px; }
  .float-card .fc-icon { width: 32px; height: 32px; border-radius: 10px; }
  .float-card.f1 { right: 0; top: 2%; }
  .float-card.f2 { right: -2%; top: auto; bottom: 26%; }
  .float-card.f3 { left: -2%; bottom: -2%; }
  .orb-chip.c3 { right: 0; }
  .orb-chip.c2, .orb-chip.c5 { left: 0; }
  .orb-chip.c4 { display: none; }
  .orb-hub-mark { width: 68px; height: 68px; border-radius: 19px; }
  .orb-hub b { font-size: 13px; }
  .float-card.f2 { bottom: 14%; }
  .pain-grid { grid-template-columns: 1fr; }
  .pro-grid .pro-card { width: 100%; }
  .gloss-grid { grid-template-columns: 1fr; }
  .lp-grid { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
  .brand-logo-full { height: 40px; }
  .brand-logo-topo { --logo-h: 96px; }
  .lp-foot .btn { width: 100%; }
  .about-panel { grid-template-columns: 1fr 1fr; padding: 28px 22px; gap: 26px 14px; }
  .method-card, .table-card { padding: 24px 20px; }
  .cta-final { padding: 56px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  /* bloco da marca centralizado e mais estreito no celular — o tamanho da
     logo em si nao muda, so o alinhamento e a largura do texto */
  .foot-grid > div:first-child { text-align: center; }
  .foot-grid > div:first-child .brand { justify-content: center; }
  .foot-grid > div:first-child > p { margin-inline: auto; max-width: 24ch; }
  .foot-grid > div:first-child .foot-badge { display: flex; justify-content: center; }
  .foot-legal-grid { grid-template-columns: 1fr; gap: 12px; }
  .foot-base { flex-direction: column; text-align: center; }
  .mobile-cta { display: inline-flex; }
  .pricing-controls { flex-direction: column; align-items: flex-start; }
  .stack-item { width: calc(25% - 8px); }
}

@media (max-width: 420px) {
  .about-panel { grid-template-columns: 1fr; text-align: center; }
  .stack-item { width: calc(33.33% - 7px); }
}

/* ============ MOVIMENTO REDUZIDO ============ */
/* "Reduzir movimento" do sistema (no Windows: Configurações > Acessibilidade >
   Efeitos visuais > Efeitos de animação; no macOS: Reduzir movimento).
   Antes esta preferência aplicava `animation-duration: .01ms` em TUDO — o site
   inteiro ficava estático em qualquer máquina com a opção ligada, enquanto o
   celular, que raramente tem, mostrava a página viva. Era a diferença que se
   via entre desktop e mobile.
   O que a WCAG 2.3.3 pede é suprimir movimento de grande amplitude — parallax,
   deslocamento atrelado ao cursor ou à rolagem. Brilho, pulso, digitação e giro
   no próprio eixo não deslocam nada e continuam valendo. Só o primeiro grupo
   fica desligado aqui. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Reveal mantém o fade e perde o deslocamento vertical: o conteúdo aparece,
     sem subir 26px na frente de quem pediu menos movimento. */
  [data-reveal] { transform: none; }
  [data-reveal].in { transform: none; }
  /* Tilt do palco: o JS não escreve mais estas variáveis, mas quem já tem a
     página em cache com o valor aplicado inline volta ao neutro. */
  .stage { --tilt-x: 0deg; --tilt-y: 0deg; }
}


/* ============ SIGNAL DNA — PROVA VISUAL VIVA DO SITE ============ */
.signal-hero { min-height: 530px; }
.signal-stage {
  position: relative; width: min(600px, 100%); min-height: 530px;
  isolation: isolate;
}
.signal-stage::before {
  content: ""; position: absolute; inset: 2% 3% 5%; z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 233, 60, .13), rgba(61, 220, 132, .05) 38%, transparent 70%);
  filter: blur(2px);
  animation: signal-breathe 6s ease-in-out infinite;
}
.signal-stage::after {
  content: ""; position: absolute; inset: 10% 12% 16%; z-index: -1;
  border-radius: 50%; border: 1px solid rgba(143, 233, 60, .08);
  box-shadow: 0 0 100px rgba(143, 233, 60, .06), inset 0 0 80px rgba(61, 220, 132, .04);
  animation: signal-rotate 24s linear infinite;
}
@keyframes signal-breathe {
  0%, 100% { transform: scale(.97); opacity: .78; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes signal-rotate { to { transform: rotate(360deg); } }
.signal-orbit {
  position: absolute; left: 50%; top: 49%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(143, 233, 60, .12);
  pointer-events: none;
}
.signal-orbit--outer { width: 90%; height: 82%; animation: signal-orbit-a 20s linear infinite; }
.signal-orbit--middle { width: 67%; height: 62%; border-color: rgba(61, 220, 132, .14); animation: signal-orbit-b 16s linear infinite reverse; }
.signal-orbit--inner { width: 43%; height: 40%; border-style: dashed; border-color: rgba(194, 247, 109, .13); animation: signal-orbit-a 11s linear infinite; }
@keyframes signal-orbit-a { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes signal-orbit-b { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.signal-label {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 8px 13px; border: 1px solid rgba(143, 233, 60, .24); border-radius: 999px;
  background: rgba(8, 12, 8, .72); color: var(--lime-2);
  font-family: var(--f-mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}
.signal-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: pulse-dot 2.2s infinite; }
.signal-lines { position: absolute; inset: 6% 0 5%; width: 100%; height: 86%; overflow: visible; }
.signal-line { fill: none; stroke: url(#signalGrad); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: .7; filter: drop-shadow(0 0 6px rgba(143, 233, 60, .28)); }
.signal-line--cross { opacity: .26; stroke-dasharray: 5 8; }
.signal-packet { fill: var(--lime-2); filter: drop-shadow(0 0 7px var(--lime)); }
.signal-packet--mint { fill: var(--mint); filter: drop-shadow(0 0 7px var(--mint)); }
.signal-center {
  position: absolute; left: 50%; top: 48%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 3;
  animation: signal-center-float 5.8s ease-in-out infinite;
}
@keyframes signal-center-float { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 8px)); } }
.signal-avatar {
  display: grid; place-items: center; width: 94px; height: 94px; border-radius: 50%; padding: 4px;
  background: linear-gradient(140deg, var(--lime-2), var(--mint) 52%, rgba(143, 233, 60, .08));
  box-shadow: 0 0 0 1px rgba(143, 233, 60, .38), 0 0 34px rgba(143, 233, 60, .22), 0 20px 46px rgba(0, 0, 0, .52);
}
.signal-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 2px solid rgba(5, 10, 6, .86); }
.signal-brand-mark {
  position: absolute; right: -5px; bottom: 25px; display: grid; place-items: center;
  width: 31px; height: 31px; border-radius: 9px; background: rgba(10, 16, 10, .9);
  border: 1px solid rgba(143, 233, 60, .35); box-shadow: 0 0 18px rgba(143, 233, 60, .22);
}
.signal-brand-mark img { width: 25px; height: 25px; object-fit: cover; border-radius: 6px; }
.signal-center b { margin-top: 14px; color: var(--ink); font-size: 17px; letter-spacing: -.02em; }
.signal-center small { margin-top: 3px; color: var(--ink-4); font-family: var(--f-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.signal-node {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 168px;
  padding: 11px 13px; border-radius: 15px; border: 1px solid var(--line-2);
  background: rgba(9, 14, 9, .82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 20px 46px -24px rgba(0, 0, 0, .9); transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
  animation: signal-node-float 6.4s ease-in-out infinite;
}
.signal-node.active { transform: translateY(-5px); border-color: rgba(143, 233, 60, .58); box-shadow: 0 0 28px -8px var(--glow), 0 20px 46px -24px rgba(0, 0, 0, .9); }
@keyframes signal-node-float { 0%, 100% { margin-top: 0; } 50% { margin-top: -7px; } }
.signal-node-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; border: 1px solid rgba(143, 233, 60, .26); background: rgba(143, 233, 60, .08); color: var(--lime); flex-shrink: 0; }
.signal-node-icon svg { width: 18px; height: 18px; }
.signal-node b { display: block; color: var(--ink); font-size: 12px; }
.signal-node small { display: block; margin-top: 2px; color: var(--ink-4); font-size: 10px; line-height: 1.25; }
.signal-node--capture { top: 13%; left: 50%; transform: translateX(-50%); animation-delay: -.8s; }
.signal-node--capture.active { transform: translate(-50%, -5px); }
.signal-node--service { left: 0; bottom: 23%; animation-delay: -2.2s; }
.signal-node--conversion { right: 0; bottom: 23%; animation-delay: -3.7s; }
.signal-node--conversion .signal-node-icon { color: #ff9a62; border-color: rgba(255, 154, 98, .32); background: rgba(255, 154, 98, .08); }
.signal-card {
  position: absolute; z-index: 5; left: 50%; bottom: 0; transform: translateX(-50%); width: min(430px, 84%);
  padding: 15px 17px; border: 1px solid rgba(143, 233, 60, .23); border-radius: 16px;
  background: rgba(10, 15, 10, .82); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px -26px rgba(0, 0, 0, .88); animation: signal-card-float 7s ease-in-out infinite;
}
@keyframes signal-card-float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } }
.signal-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.signal-card-head b { color: var(--ink); font-size: 12px; }
.signal-card-head span { padding: 3px 8px; border: 1px solid rgba(143, 233, 60, .25); border-radius: 999px; color: var(--lime); font-family: var(--f-mono); font-size: 8px; letter-spacing: .12em; }
.signal-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.signal-tags span { padding: 5px 9px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-3); background: rgba(255, 255, 255, .025); font-size: 10px; }
.signal-card p { margin-top: 10px; color: var(--ink-4); font-size: 11px; line-height: 1.4; transition: opacity .2s, transform .2s; }
.signal-card p.is-changing { opacity: 0; transform: translateY(4px); }
.signal-float { position: absolute; z-index: 6; display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid var(--line-2); border-radius: 13px; background: rgba(9, 14, 9, .75); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 18px 38px -24px rgba(0, 0, 0, .9); animation: signal-float-card 6.8s ease-in-out infinite; }
.signal-float b { color: var(--lime); font-size: 19px; line-height: 1; }
.signal-float span { color: var(--ink-4); font-size: 10px; line-height: 1.2; }
.signal-float--one { top: 28%; right: -3%; animation-delay: -1.6s; }
.signal-float--two { left: -3%; top: 40%; animation-delay: -4.2s; }
@keyframes signal-float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============ SIGNAL FLOW — NARRATIVA DO SITE ============ */
.signal-flow { padding: 42px 0 106px; }
.signal-flow-head { max-width: 650px; margin: 0 auto 44px; text-align: center; }
.signal-flow-head h2 { margin-top: 16px; color: var(--ink); font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; }
.signal-flow-head p { max-width: 58ch; margin: 16px auto 0; color: var(--ink-3); font-size: 15.5px; line-height: 1.65; }
.signal-flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.signal-flow-card { position: relative; overflow: hidden; min-height: 230px; padding: 28px 26px; background: linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: var(--r-lg); transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s; }
.signal-flow-card::after { content: ""; position: absolute; inset: -30% -20%; background: radial-gradient(circle, rgba(143, 233, 60, .1), transparent 58%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.signal-flow-card:hover { transform: translateY(-7px); border-color: rgba(143, 233, 60, .35); box-shadow: 0 24px 54px -30px rgba(143, 233, 60, .42); }
.signal-flow-card:hover::after { opacity: 1; }
.signal-flow-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(143, 233, 60, .28); border-radius: 14px; color: var(--lime); background: rgba(143, 233, 60, .08); box-shadow: 0 0 20px rgba(143, 233, 60, .1); animation: signal-icon-breathe 3.8s ease-in-out infinite; }
.signal-flow-card:nth-child(2) .signal-flow-icon { animation-delay: -.9s; }
.signal-flow-card:nth-child(3) .signal-flow-icon { animation-delay: -1.8s; }
@keyframes signal-icon-breathe { 0%, 100% { box-shadow: 0 0 12px rgba(143, 233, 60, .08); } 50% { box-shadow: 0 0 28px rgba(143, 233, 60, .24); } }
.signal-flow-icon svg { width: 22px; height: 22px; }
.signal-flow-step { position: relative; z-index: 1; display: block; margin-top: 22px; color: var(--lime); font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.signal-flow-card h3 { position: relative; z-index: 1; margin-top: 9px; color: var(--ink); font-size: 20px; font-weight: 800; letter-spacing: -.025em; }
.signal-flow-card p { position: relative; z-index: 1; margin-top: 8px; color: var(--ink-3); font-size: 13px; line-height: 1.58; }
.signal-flow-card:not(:last-child)::before { content: ""; position: absolute; top: 50%; right: -27px; width: 36px; height: 1px; z-index: 3; background: linear-gradient(90deg, var(--lime), transparent); box-shadow: 0 0 9px var(--glow); }
.signal-flow-callout { display: flex; align-items: center; gap: 15px; margin-top: 18px; padding: 18px 20px; border: 1px solid rgba(143, 233, 60, .22); border-radius: var(--r-lg); background: linear-gradient(100deg, rgba(143, 233, 60, .07), rgba(255, 255, 255, .018)); }
.signal-flow-callout-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; overflow: hidden; background: rgba(143, 233, 60, .1); border: 1px solid rgba(143, 233, 60, .26); box-shadow: 0 0 22px rgba(143, 233, 60, .12); flex-shrink: 0; }
.signal-flow-callout-mark img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.signal-flow-callout > div { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.signal-flow-callout b { color: var(--lime-2); font-size: 14px; }
.signal-flow-callout span { color: var(--ink-3); font-size: 13px; }
.signal-flow-callout .btn { flex-shrink: 0; }

@media (max-width: 980px) {
  .signal-hero { min-height: 0; }
  .signal-stage { margin: 0 auto; }
  .signal-flow { padding-top: 18px; }
}
@media (max-width: 640px) {
  .signal-stage { min-height: 460px; transform: scale(.93); transform-origin: top center; margin-bottom: -34px; }
  .signal-label { font-size: 7px; max-width: 90%; }
  .signal-node { min-width: 142px; padding: 8px 9px; gap: 7px; }
  .signal-node-icon { width: 28px; height: 28px; border-radius: 9px; }
  .signal-node-icon svg { width: 15px; height: 15px; }
  .signal-node b { font-size: 10px; }
  .signal-node small { font-size: 8px; }
  .signal-node--service { left: -3%; bottom: 22%; }
  .signal-node--conversion { right: -3%; bottom: 22%; }
  .signal-card { width: 88%; padding: 12px 13px; }
  .signal-card-head b { font-size: 10px; }
  .signal-tags span { font-size: 8px; padding: 4px 6px; }
  .signal-card p { font-size: 9px; }
  .signal-float { padding: 8px 9px; }
  .signal-float b { font-size: 15px; }
  .signal-float span { font-size: 8px; }
  .signal-float--one { right: -4%; }
  .signal-float--two { left: -4%; }
  .signal-flow { padding-bottom: 76px; }
  .signal-flow-grid { grid-template-columns: 1fr; gap: 13px; }
  .signal-flow-card { min-height: 0; padding: 23px 21px; }
  .signal-flow-card:not(:last-child)::before { top: auto; right: auto; left: 50%; bottom: -17px; width: 1px; height: 21px; background: linear-gradient(180deg, var(--lime), transparent); }
  .signal-flow-callout { align-items: flex-start; flex-wrap: wrap; }
  .signal-flow-callout > div { min-width: calc(100% - 60px); }
  .signal-flow-callout .btn { width: 100%; }
}

/* (sem bloco de reduzir-movimento aqui: os giros e pulsos do Signal DNA
   sao no proprio eixo, sem deslocamento — e desliga-los fazia o dono ver
   a composicao morta no desktop) */


/* ============ SIGNAL DNA MOTION LAYER — PRESENÇA E INTERAÇÃO ============ */
.signal-stage {
  --signal-tilt-x: 0deg;
  --signal-tilt-y: 0deg;
  transform: perspective(1100px) rotateX(var(--signal-tilt-y)) rotateY(var(--signal-tilt-x));
  transform-style: preserve-3d;
  transition: transform .8s var(--ease-out);
  will-change: transform;
}
.signal-stage.is-awake {
  transition-duration: .22s;
}
.signal-stage.is-awake::before { animation-duration: 3.4s; }
.signal-stage.is-awake .signal-orbit--outer { animation-duration: 12s; }
.signal-stage.is-awake .signal-orbit--middle { animation-duration: 9s; }
.signal-stage.is-awake .signal-orbit--inner { animation-duration: 6s; }
.signal-stage.is-awake .signal-center { animation-duration: 3.1s; }
.signal-stage.is-awake .signal-avatar { box-shadow: 0 0 0 1px rgba(194, 247, 109, .64), 0 0 48px rgba(143, 233, 60, .45), 0 20px 46px rgba(0, 0, 0, .52); }
.signal-stage.is-awake .signal-card { border-color: rgba(143, 233, 60, .48); }
.signal-stage .signal-orbit,
.signal-stage .signal-center,
.signal-stage .signal-node,
.signal-stage .signal-card,
.signal-stage .signal-float { will-change: transform; }
.signal-line--cross { animation: signal-energy-travel 5s linear infinite; }
@keyframes signal-energy-travel { to { stroke-dashoffset: -52px; } }

/* cometa de luz que percorre o perímetro do triângulo (≈892px no viewBox):
   um traço curto com um vão do tamanho do resto do caminho */
.signal-line--runner {
  fill: none; stroke: var(--lime-2); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 84 809;
  filter: drop-shadow(0 0 7px var(--lime)) drop-shadow(0 0 16px rgba(143, 233, 60, .45));
  opacity: .9;
  animation: signal-runner 5.6s linear infinite;
}
@keyframes signal-runner { to { stroke-dashoffset: -893; } }

/* varredura de radar: um feixe cônico girando na faixa das órbitas */
.signal-sweep {
  position: absolute; inset: 6% 8% 12%; z-index: -1;
  border-radius: 50%; pointer-events: none; opacity: .85;
  background: conic-gradient(from 0deg,
    transparent 0 76%, rgba(143, 233, 60, .05) 88%,
    rgba(194, 247, 109, .14) 98%, rgba(194, 247, 109, .2) 99.6%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, transparent 33%, #000 44%, #000 76%, transparent 79%);
  mask-image: radial-gradient(circle, transparent 33%, #000 44%, #000 76%, transparent 79%);
  animation: signal-rotate 9s linear infinite;
}

/* anel cônico girando por trás do avatar — a "leitura" em andamento */
.signal-avatar { position: relative; isolation: isolate; }
.signal-avatar::before {
  content: ""; position: absolute; inset: -5px; z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent, var(--lime) 16%, var(--mint) 34%, transparent 55%);
  filter: blur(4px);
  animation: signal-rotate 4.4s linear infinite;
}

/* no desktop os nós respondem ao mouse como os cards do site */
@media (hover: hover) {
  .signal-node { cursor: default; }
  .signal-node:hover {
    transform: translateY(-5px);
    border-color: rgba(143, 233, 60, .58);
    box-shadow: 0 0 28px -8px var(--glow), 0 20px 46px -24px rgba(0, 0, 0, .9);
  }
  .signal-node--capture:hover { transform: translate(-50%, -5px); }
}
.signal-avatar { animation: signal-avatar-breathe 3.8s ease-in-out infinite; }
@keyframes signal-avatar-breathe {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.035); filter: saturate(1.18) brightness(1.06); }
}
.signal-brand-mark { animation: signal-mark-pulse 2.8s ease-in-out infinite; }
@keyframes signal-mark-pulse {
  0%, 100% { transform: translateY(0) rotate(0); box-shadow: 0 0 14px rgba(143, 233, 60, .13); }
  50% { transform: translateY(-3px) rotate(4deg); box-shadow: 0 0 26px rgba(143, 233, 60, .32); }
}
.signal-tags span { animation: signal-tag-pulse 4.8s ease-in-out infinite; }
.signal-tags span:nth-child(2) { animation-delay: -1.6s; }
.signal-tags span:nth-child(3) { animation-delay: -3.2s; }
@keyframes signal-tag-pulse {
  0%, 82%, 100% { border-color: var(--line); color: var(--ink-3); transform: translateY(0); }
  88%, 94% { border-color: rgba(143, 233, 60, .44); color: var(--lime-2); transform: translateY(-2px); }
}
.signal-card-head span { animation: signal-example-blink 3.6s ease-in-out infinite; }
@keyframes signal-example-blink { 0%, 76%, 100% { opacity: .72; } 84% { opacity: 1; box-shadow: 0 0 14px rgba(143, 233, 60, .25); } }
.signal-packet { animation: signal-packet-glow 1.6s ease-in-out infinite alternate; }
@keyframes signal-packet-glow { from { opacity: .58; } to { opacity: 1; } }

@media (max-width: 640px) {
  .signal-stage { transform: perspective(900px) scale(.93) rotateX(var(--signal-tilt-y)) rotateY(var(--signal-tilt-x)); }
}

