/* ============================================================
   AGISS Sistemas — sitev3
   Direcao: ERP operacional com hero animado e mais repertorio visual
   ============================================================ */

:root {
  /* Marca */
  --lime: #82d218;
  --lime-2: #a4e635;
  --lime-3: #c9f06b;
  --lime-deep: #4ca80f;
  --grad-lime: linear-gradient(120deg, var(--lime-3), var(--lime) 55%, var(--lime-deep));
  --grad-steel: linear-gradient(130deg, rgba(127, 192, 255, .9), rgba(66, 214, 177, .75), rgba(130, 210, 24, .8));
  --steel: #7fc0ff;
  --teal: #42d6b1;
  --amber: #ffd479;

  /* Dark */
  --bg-0: #060b1a;
  --bg-1: #0a1228;
  --bg-2: #0e1730;
  --line-d: rgba(255, 255, 255, .08);
  --txt-d: #eef2fa;
  --mut-d: #94a0ba;

  /* Light */
  --bg-l: #f5f7fb;
  --card-l: #ffffff;
  --ink: #0c1733;
  --mut-l: #5a6478;
  --line-l: #e4e9f2;

  /* Tipos */
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-disp: "Sora", var(--f-body);
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Misc */
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow-win: 0 30px 80px -20px rgba(2, 8, 24, .75), 0 0 0 1px var(--line-d);
  --glass-edge: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 0 1px rgba(255, 255, 255, .06);
  --glow-lime: 0 10px 36px -10px rgba(130, 210, 24, .55);
  --ease: cubic-bezier(.22, .8, .26, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
html:focus-within { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--bg-0);
  color: var(--txt-d);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: manipulation;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(130, 210, 24, .35); color: #fff; }

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

.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

/* ============================================================
   INTRO (splash curto)
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--bg-0);
  animation: intro-out .55s var(--ease) 1.25s forwards;
  pointer-events: none;
}
.intro.skip { display: none; }
.intro-mark { position: relative; display: flex; align-items: center; animation: intro-pop .8s var(--ease) both; }
.intro-mark::before {
  content: ""; position: absolute; inset: -70px -110px; z-index: -1;
  background: radial-gradient(closest-side, rgba(130, 210, 24, .3), rgba(130, 210, 24, .08) 55%, transparent 75%);
  filter: blur(14px);
  animation: glow-breathe 2.4s ease-in-out infinite alternate;
}
.intro-logo {
  height: 96px; width: auto;
  filter: drop-shadow(0 10px 44px rgba(130, 210, 24, .4));
}
@keyframes glow-breathe {
  from { opacity: .7; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1.06); }
}
@keyframes intro-pop {
  from { opacity: 0; transform: scale(.86) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes intro-out {
  to { opacity: 0; visibility: hidden; }
}

/* ============================================================
   PROGRESS + CURSOR GLOW
   ============================================================ */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 150;
  pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 100%;
  background: var(--grad-lime);
  transform: scaleX(0); transform-origin: left;
}
.cursor-glow {
  position: fixed; z-index: 1; pointer-events: none;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 210, 24, .16), transparent 65%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .5s ease;
  left: 50%; top: 30%;
}
body.glow-on .cursor-glow { opacity: 1; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: 13px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s ease, border-color .25s ease, color .25s ease;
  will-change: transform;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-sm { padding: 10px 16px; font-size: 14px; border-radius: 11px; }
.btn-lg { padding: 17px 28px; font-size: 16px; border-radius: 15px; }

.btn-primary {
  background: var(--grad-lime);
  color: #0a1424;
  box-shadow: var(--glow-lime);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -35%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  transform: skewX(-18deg) translateX(-220%);
  transition: transform .65s var(--ease);
  opacity: .55;
  mix-blend-mode: screen;
  pointer-events: none;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, .32), transparent 44%, rgba(76, 168, 15, .26));
  opacity: .75;
}
.btn-primary:hover::before { transform: skewX(-18deg) translateX(520%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(130, 210, 24, .65); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--txt-d);
  background: rgba(255, 255, 255, .03);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, .34); background: rgba(255, 255, 255, .07); transform: translateY(-2px); }

.btn-ink {
  background: var(--ink); color: #fff;
  box-shadow: 0 14px 34px -12px rgba(12, 23, 51, .55);
}
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(12, 23, 51, .65); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(6, 11, 26, .82);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line-d);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 74px; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo {
  height: 48px; width: auto;
  transition: transform .4s var(--ease), filter .4s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 4px 18px rgba(130, 210, 24, .45));
}
.footer-brand .brand-logo { height: 56px; }

.nav-links { display: flex; align-items: center; gap: 6px; margin-inline: auto; }
.nav-link {
  font-size: 14.5px; font-weight: 500; color: #c4cdde;
  padding: 9px 14px; border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav-link.active { color: var(--lime-2); }
.nav-mobile-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid var(--line-d);
}
.nav-burger span {
  width: 18px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 178px 0 130px; }
.hero-v3 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 136px 0 92px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-v3 .hero-bg {
  background:
    radial-gradient(circle at 18% 24%, rgba(130, 210, 24, .2), transparent 26%),
    radial-gradient(circle at 78% 16%, rgba(127, 192, 255, .18), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(66, 214, 177, .1), transparent 28%),
    linear-gradient(145deg, rgba(6, 11, 26, .98) 0%, rgba(8, 20, 43, .96) 42%, rgba(3, 9, 22, 1) 100%),
    #060b1a;
}
.hero-v3 .hero-bg::before,
.hero-v3 .hero-bg::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}
.hero-v3 .hero-bg::before {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 18%;
  border-radius: 999px;
  background:
    conic-gradient(from 120deg, rgba(130, 210, 24, .22), transparent 28%, rgba(127, 192, 255, .2), transparent 68%, rgba(66, 214, 177, .18));
  filter: blur(42px);
  opacity: .48;
  animation: aura-turn 20s linear infinite;
}
.hero-v3 .hero-bg::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  background: linear-gradient(180deg, transparent, var(--bg-l));
}
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob-a { width: 560px; height: 560px; left: -180px; top: -120px; background: rgba(130, 210, 24, .25); animation: drift 14s ease-in-out infinite alternate; }
.blob-b { width: 520px; height: 520px; right: -160px; top: 80px; background: rgba(38, 84, 190, .35); animation: drift 18s ease-in-out infinite alternate-reverse; }
.blob-c { width: 420px; height: 420px; left: 38%; bottom: -240px; background: rgba(130, 210, 24, .14); animation: drift 16s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.12); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 10%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 10%, #000 30%, transparent 75%);
}
.motion-wash {
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(130, 210, 24, .13) 19%, transparent 30% 48%, rgba(127, 192, 255, .16) 49%, transparent 61%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 86px);
  transform: skewY(-7deg);
  opacity: .62;
  animation: wash-slide 16s linear infinite;
}
.hero-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(130, 210, 24, .12), transparent),
    linear-gradient(180deg, transparent 0 60%, rgba(255, 255, 255, .04), transparent 72%);
  opacity: .45;
  transform: translateX(-58%);
  animation: scan-pass 9s var(--ease) infinite;
}
@keyframes wash-slide {
  to { transform: skewY(-7deg) translateX(-86px); }
}
@keyframes scan-pass {
  0%, 18% { transform: translateX(-62%); opacity: 0; }
  38%, 58% { opacity: .45; }
  82%, 100% { transform: translateX(62%); opacity: 0; }
}
@keyframes aura-turn {
  to { transform: rotate(1turn) scale(1.08); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.hero-inner > * { min-width: 0; }
.hero-copy { min-width: 0; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--lime-2);
  border: 1px solid rgba(130, 210, 24, .35);
  background: rgba(130, 210, 24, .08);
  padding: 8px 15px; border-radius: 999px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); flex: none;
  box-shadow: 0 0 0 0 rgba(130, 210, 24, .6);
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(130, 210, 24, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(130, 210, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(130, 210, 24, 0); }
}

.hero h1 {
  font-family: var(--f-disp);
  font-size: clamp(40px, 3.9rem, 64px);
  font-weight: 800; line-height: 1.06; letter-spacing: 0;
  margin: 26px 0 22px;
}
.grad {
  background: var(--grad-lime);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-ink {
  background: linear-gradient(110deg, var(--ink) 20%, #2c5a8f 55%, var(--lime-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lead {
  font-size: clamp(16px, 1.125rem, 18px);
  color: var(--mut-d); max-width: 54ch;
}
.lead strong { color: var(--lime-2); font-weight: 600; }

.hero-type {
  margin-top: 18px; font-size: 16.5px; font-weight: 500; color: #c4cdde;
}
.typed { color: var(--lime-2); font-weight: 700; }
.caret {
  display: inline-block; width: 2px; height: 1.05em;
  background: var(--lime-2); margin-left: 3px; vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  list-style: none; padding: 0; margin-top: 30px;
}
.hero-trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--mut-d);
}
.hero-trust svg { width: 15px; height: 15px; color: var(--lime); flex: none; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 660px;
}
.hero-proof span {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
  border-radius: var(--r-sm);
  color: #aebad2;
  font-size: 12.5px;
  line-height: 1.35;
}
.hero-proof b {
  color: #fff;
  font-family: var(--f-disp);
  font-size: 13px;
}

/* ---------- Mockup base (janela) ---------- */
.hero-visual { position: relative; min-width: 0; }
.tilt { position: relative; transform-style: preserve-3d; will-change: transform; transition: transform .2s ease-out; }
.system-map {
  position: absolute;
  left: 9%;
  right: 9%;
  top: -34px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 14, 31, .78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 13px;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, .8);
}
.system-map span {
  font-size: 11px;
  font-weight: 700;
  color: #dfe8f8;
  white-space: nowrap;
}
.system-map i {
  height: 1px;
  min-width: 24px;
  background: linear-gradient(90deg, rgba(130, 210, 24, .12), rgba(130, 210, 24, .8), rgba(127, 192, 255, .35));
  position: relative;
  overflow: hidden;
}
.system-map i::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px 0;
  width: 34%;
  background: #fff;
  box-shadow: 0 0 18px rgba(130, 210, 24, .9);
  animation: line-pulse 2.2s ease-in-out infinite;
}
.system-map i:nth-of-type(2)::after { animation-delay: .45s; }
.system-map i:nth-of-type(3)::after { animation-delay: .9s; }
@keyframes line-pulse {
  from { transform: translateX(-120%); opacity: 0; }
  40% { opacity: .8; }
  to { transform: translateX(320%); opacity: 0; }
}

.window {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(23, 36, 68, .94), rgba(8, 15, 31, .98)),
    #0a1228;
  box-shadow: var(--shadow-win), 0 0 0 1px rgba(130, 210, 24, .08), 0 0 80px -34px rgba(127, 192, 255, .75);
  overflow: hidden;
  font-size: 13px;
}
.win-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-d);
  background: rgba(255, 255, 255, .025);
}
.win-dots { display: flex; gap: 7px; flex: none; }
.win-dots i { width: 11px; height: 11px; border-radius: 50%; background: #2a3756; }
.win-dots i:nth-child(1) { background: #ff5f57; }
.win-dots i:nth-child(2) { background: #febc2e; }
.win-dots i:nth-child(3) { background: #28c840; }
.win-title {
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
  color: var(--mut-d); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.win-status {
  margin-left: auto; display: flex; align-items: center; gap: 7px; flex: none;
  font-size: 11px; font-weight: 600; color: var(--lime-2);
}
.win-ribbon {
  display: flex; gap: 2px; padding: 8px 14px 0;
  border-bottom: 1px solid var(--line-d);
  overflow: hidden;
}
.rtab {
  font-size: 11.5px; font-weight: 500; color: var(--mut-d);
  padding: 7px 12px 9px; border-radius: 8px 8px 0 0;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}
.rtab.active {
  color: #fff; background: rgba(130, 210, 24, .12);
  box-shadow: inset 0 -2px 0 var(--lime);
}
.win-body { padding: 18px; }
.real-screen-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
  box-shadow: var(--glass-edge), inset 0 -18px 44px rgba(130, 210, 24, .05);
}
.real-screen-frame::before,
.real-screen-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.real-screen-frame::before {
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, .14) 48%, transparent 56%),
    radial-gradient(circle at 50% 100%, rgba(130, 210, 24, .14), transparent 42%);
  mix-blend-mode: screen;
  opacity: .58;
}
.real-screen-frame::after {
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(130, 210, 24, .1);
}
.real-screen-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 760;
  object-fit: cover;
}
.hero-real-screen { margin-top: 12px; }
.win-hero .kpis,
.win-hero .chart,
.win-hero .mini-list {
  display: none;
}
.ops-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
.ops-step {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 27px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  color: #aebad2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
}
.ops-step::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}
.ops-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(130, 210, 24, .16), transparent);
  transform: translateX(-110%);
}
.ops-step.active,
.ops-step.pulse {
  color: #effbdd;
  border-color: rgba(130, 210, 24, .35);
  background: rgba(130, 210, 24, .08);
}
.ops-step.active::before,
.ops-step.pulse::before {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(130, 210, 24, .14);
}
.ops-step.pulse::after { animation: step-sheen 1.2s var(--ease); }
@keyframes step-sheen {
  to { transform: translateX(110%); }
}

/* KPIs */
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-d);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.kpi-label { font-size: 11px; color: var(--mut-d); font-weight: 500; }
.kpi-value { font-family: var(--f-disp); font-size: 19px; font-weight: 700; color: #fff; letter-spacing: 0; }
.kpi-delta { font-size: 10.5px; color: var(--mut-d); }
.kpi-delta.up { color: var(--lime-2); }
.kpi-delta.down { color: #7fc0ff; }

/* Chart */
.chart {
  margin-top: 12px;
  background:
    linear-gradient(180deg, rgba(127, 192, 255, .04), transparent),
    rgba(255, 255, 255, .03);
  border: 1px solid var(--line-d);
  border-radius: var(--r-sm);
  padding: 13px 14px 9px;
}
.chart-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; color: #d6dded; margin-bottom: 8px;
}
.chart-tag {
  font-size: 11px; color: var(--lime-2);
  background: rgba(130, 210, 24, .1); border: 1px solid rgba(130, 210, 24, .25);
  padding: 2px 9px; border-radius: 999px;
}
.chart svg { width: 100%; height: auto; }
.chart-line { stroke-dasharray: 1300; stroke-dashoffset: 1300; }
.chart-area { opacity: 0; }
.chart-dot { fill: var(--lime-2); opacity: 0; }
.play .chart-line { animation: draw 1.7s var(--ease) .15s forwards; }
.play .chart-line.line-2 { animation-delay: .5s; }
.play .chart-area { animation: fade-in .9s ease 1s forwards; }
.play .chart-dot { animation: fade-in .4s ease 1.55s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }
.chart-x {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--mut-d); margin-top: 6px; padding-inline: 2px;
}

/* Mini list / linhas */
.mini-list { margin-top: 12px; }
.row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 8px 6px; font-size: 12px; color: #cfd7e6;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.row:last-child { border-bottom: 0; }
.row.head { font-size: 11px; font-weight: 600; color: var(--mut-d); text-transform: uppercase; letter-spacing: .06em; }
.row span:nth-child(2) { font-variant-numeric: tabular-nums; font-weight: 600; }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  padding: 3.5px 10px; border-radius: 999px; white-space: nowrap;
}
.pill.sm { font-size: 10px; padding: 2.5px 9px; }
.pill.ok   { background: rgba(130, 210, 24, .14); color: #b6ec61; border: 1px solid rgba(130, 210, 24, .3); }
.pill.warn { background: rgba(254, 188, 46, .12); color: #ffd479; border: 1px solid rgba(254, 188, 46, .3); }
.pill.err  { background: rgba(255, 95, 87, .12); color: #ff9d97; border: 1px solid rgba(255, 95, 87, .3); }
.pill.proc { background: rgba(127, 192, 255, .1); color: #9ccfff; border: 1px solid rgba(127, 192, 255, .3); }
.pill.ink  { background: rgba(255, 255, 255, .08); color: #dce3f0; border: 1px solid var(--line-d); }
.spin {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid currentColor; border-top-color: transparent;
  animation: spin .7s linear infinite; flex: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pop {
  0% { transform: scale(.6); }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.pill.pop { animation: pop .45s var(--ease); }

/* Float cards */
.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  background: rgba(13, 21, 43, .9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line-d);
  border-radius: 14px; padding: 11px 16px;
  box-shadow: 0 18px 48px -16px rgba(2, 8, 24, .8);
}
.float-card svg { width: 20px; height: 20px; color: var(--lime-2); flex: none; }
.float-card b { display: block; font-size: 12.5px; color: #fff; line-height: 1.25; }
.float-card small { font-size: 11px; color: var(--mut-d); }
.fc-1 { top: -22px; right: -14px; animation: floaty 6s ease-in-out infinite alternate; }
.fc-2 { bottom: 42px; left: -34px; animation: floaty 7s ease-in-out 1.2s infinite alternate-reverse; }
@keyframes floaty {
  from { transform: translateY(-6px); }
  to   { transform: translateY(8px); }
}

/* Toasts do hero */
.toasts {
  position: absolute; right: 14px; bottom: -26px; z-index: 4;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.toast {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; color: #eaf6d8;
  background: rgba(17, 30, 20, .92);
  border: 1px solid rgba(130, 210, 24, .4);
  border-radius: 11px; padding: 9px 14px;
  box-shadow: 0 14px 36px -12px rgba(2, 8, 24, .8), 0 0 24px -8px rgba(130, 210, 24, .35);
  animation: toast-in .45s var(--ease);
}
.toast.out { animation: toast-out .4s ease forwards; }
.toast svg { width: 15px; height: 15px; color: var(--lime-2); flex: none; }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(24px) scale(.94); }
  to   { opacity: 1; transform: none; }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(8px) scale(.96); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative; overflow: hidden;
  overflow: clip;
  contain: layout paint;
  width: 100%;
  max-width: 100vw;
  min-height: 64px;
  border-block: 1px solid var(--line-d);
  background: rgba(255, 255, 255, .015);
  padding: 19px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center; gap: 34px; padding-right: 34px;
  font-family: var(--f-disp); font-size: 14px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(238, 242, 250, .45);
  white-space: nowrap;
}
.marquee-group i { color: var(--lime); font-style: normal; font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SEÇÕES
   ============================================================ */
.section { position: relative; padding: 118px 0; }
.sec-light { background: var(--bg-l); color: var(--ink); }
.sec-dark { background: var(--bg-0); }
.sec-cta { background: var(--bg-l); padding-bottom: 130px; }

.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--f-disp);
  font-size: clamp(30px, 2.75rem, 44px);
  font-weight: 800; line-height: 1.12; letter-spacing: 0;
  margin: 16px 0 18px;
}
.sec-head p { font-size: 17px; color: var(--mut-l); }
.sec-dark .sec-head p { color: var(--mut-d); }
.note { display: block; margin-top: 6px; font-size: 13px; opacity: .7; }

.kicker {
  display: inline-block;
  font-size: 12.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lime-deep);
}
.kicker.lime { color: var(--lime-2); }

/* ============================================================
   BENTO — MÓDULOS
   ============================================================ */
.bento {
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  grid-auto-flow: dense;
}
.bento-card {
  position: relative; overflow: hidden;
  background: var(--card-l);
  border: 1px solid var(--line-l);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(130, 210, 24, .5);
  box-shadow: 0 24px 54px -22px rgba(12, 23, 51, .25);
}
.b-lg { grid-column: span 2; }
.b-tall { grid-row: span 2; }
.bento-card:nth-last-child(2), .bento-card:last-child { grid-column: span 2; }

.bc-icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(130, 210, 24, .16), rgba(130, 210, 24, .05));
  border: 1px solid rgba(130, 210, 24, .3);
  color: var(--lime-deep);
  margin-bottom: 6px;
}
.bc-icon svg { width: 23px; height: 23px; }
.bento-card h3 { font-family: var(--f-disp); font-size: 19px; font-weight: 700; letter-spacing: 0; }
.bento-card p { font-size: 14.5px; color: var(--mut-l); }

.bc-extra { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 14px; }
.key {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  color: var(--ink);
  background: #eef2f8; border: 1px solid var(--line-l); border-bottom-width: 2px;
  padding: 4px 9px; border-radius: 7px;
}
.bc-pills .pill.ok { background: #ecf8d9; color: #44820a; border-color: #cdeb9e; }
.bc-pills .pill.ink { background: var(--ink); color: #fff; border-color: var(--ink); }

.bc-spark { position: absolute; right: 0; bottom: 0; width: 52%; height: auto; opacity: .8; pointer-events: none; }

.bc-demo-pill {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  color: #44820a; background: #ecf8d9; border: 1px solid #cdeb9e;
  padding: 9px 15px; border-radius: 999px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime-deep); flex: none;
  animation: ping 2s ease-out infinite;
}

/* Spotlight (segue o cursor) */
.spot { isolation: isolate; }
.spot::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(130, 210, 24, .13), transparent 65%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.spot:hover::before { opacity: 1; }

/* ============================================================
   TOUR
   ============================================================ */
.tour {
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(22px, 3vw, 40px); align-items: start;
}
.tour-tabs { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 100px; }
.tour-tab {
  position: relative;
  text-align: left;
  border: 1px solid var(--line-d);
  background: rgba(255, 255, 255, .025);
  border-radius: var(--r-md);
  padding: 17px 19px;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
  overflow: hidden;
}
.tour-tab::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-lime);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .36s var(--ease);
}
.tour-tab:hover { background: rgba(255, 255, 255, .055); transform: translateX(4px); }
.tour-tab b { display: block; font-family: var(--f-disp); font-size: 16.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.tour-tab span { font-size: 13.5px; color: var(--mut-d); line-height: 1.45; display: block; }
.tour-tab.active {
  background: rgba(130, 210, 24, .09);
  border-color: rgba(130, 210, 24, .45);
  box-shadow: 0 10px 36px -18px rgba(130, 210, 24, .4), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.tour-tab.active::after { transform: scaleY(1); }
.tour-tab.active b { color: var(--lime-2); }

.tour-stage { perspective: 1400px; min-width: 0; max-width: 100%; overflow: hidden; }
.win-tour { min-height: 470px; max-width: 100%; }
.tour-body { position: relative; min-width: 0; }

.screen { position: relative; }
.screen[hidden] { display: none; }
.screen.active { animation: screen-in .5s var(--ease); }
.screen.has-real > :not(.real-screen-frame) {
  display: none;
}
@keyframes screen-in {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; margin-top: 12px; }
.bars {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-d);
  border-radius: var(--r-sm); padding: 13px 14px;
}
.bars-head { font-size: 12px; font-weight: 600; color: #d6dded; margin-bottom: 10px; }
.bar-row { display: grid; grid-template-columns: 116px 1fr; gap: 10px; align-items: center; margin-bottom: 9px; }
.bar-row span { font-size: 11px; color: var(--mut-d); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar { height: 8px; border-radius: 99px; background: rgba(255, 255, 255, .07); overflow: hidden; }
.bar i {
  display: block; height: 100%; width: 0; border-radius: 99px;
  background: var(--grad-lime);
}
.play .bar i { animation: grow 1s var(--ease) forwards; }
.play .bar-row:nth-child(2) .bar i { animation-delay: .15s; }
.play .bar-row:nth-child(3) .bar i { animation-delay: .3s; }
.play .bar-row:nth-child(4) .bar i { animation-delay: .45s; }
.play .bar-row:nth-child(5) .bar i { animation-delay: .6s; }
.play .bar-row:nth-child(6) .bar i { animation-delay: .75s; }
@keyframes grow { to { width: var(--w, 50%); } }

/* --- Tela de venda --- */
.sale-head {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  padding: 4px 2px 14px;
  border-bottom: 1px solid var(--line-d);
}
.field { display: flex; flex-direction: column; gap: 2px; }
.field.grow { flex: 1; min-width: 150px; }
.field label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--mut-d); font-weight: 600; }
.field > span { font-size: 13px; font-weight: 600; color: #fff; }
.field .select {
  border: 1px solid var(--line-d); border-radius: 7px;
  padding: 3px 10px; font-size: 12px; background: rgba(255, 255, 255, .04);
}
.sale-tabs { display: flex; gap: 4px; padding: 11px 0 0; }
.sale-tabs span {
  font-size: 11.5px; font-weight: 500; color: var(--mut-d);
  padding: 6px 13px; border-radius: 8px;
}
.sale-tabs span.active { color: #fff; background: rgba(130, 210, 24, .13); box-shadow: inset 0 0 0 1px rgba(130, 210, 24, .35); }

.sale-table { margin-top: 10px; min-height: 168px; }
.srow {
  display: grid; grid-template-columns: 1fr 52px 76px 84px; gap: 12px;
  padding: 8.5px 8px; font-size: 12.5px; color: #dbe2ef;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-variant-numeric: tabular-nums;
}
.srow span:nth-child(n+2) { text-align: right; }
.srow.head { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--mut-d); }
.srow:last-child span:last-child { font-weight: 700; }
.sale-item { opacity: 0; transform: translateX(-12px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.sale-item.in { opacity: 1; transform: none; }
.sale-item.in span:last-child { color: var(--lime-2); font-weight: 600; }

.sale-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  padding-top: 14px; border-top: 1px solid var(--line-d); margin-top: 4px;
}
.sale-keys { display: flex; flex-wrap: wrap; gap: 7px; }
.sale-keys .key { background: rgba(255, 255, 255, .06); border-color: var(--line-d); color: #c4cdde; }
.sale-total { text-align: right; }
.sale-total small { display: block; font-size: 11px; color: var(--mut-d); font-weight: 500; }
.sale-total b {
  font-family: var(--f-disp); font-size: 27px; font-weight: 800; letter-spacing: 0;
  color: var(--lime-2); font-variant-numeric: tabular-nums;
}

.screen-success {
  position: absolute; left: 50%; bottom: 86px; z-index: 5;
  transform: translateX(-50%) translateY(10px) scale(.94);
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: #eaf6d8;
  background: rgba(17, 30, 20, .95);
  border: 1px solid rgba(130, 210, 24, .45);
  border-radius: 12px; padding: 12px 20px;
  box-shadow: 0 18px 48px -12px rgba(2, 8, 24, .9), 0 0 30px -6px rgba(130, 210, 24, .4);
  opacity: 0; pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.screen-success svg { width: 17px; height: 17px; color: var(--lime-2); }
.screen-success.show { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }

/* --- Tela fiscal --- */
.fiscal-filter { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding-bottom: 13px; }
.ftag {
  font-size: 11.5px; font-weight: 700; color: var(--mut-d);
  border: 1px solid var(--line-d); border-radius: 8px; padding: 5px 13px;
}
.ftag.active { color: var(--lime-2); border-color: rgba(130, 210, 24, .4); background: rgba(130, 210, 24, .1); }
.fperiod { margin-left: auto; font-size: 11.5px; color: var(--mut-d); }
.fperiod b { color: #dbe2ef; }

.fiscal-table { border-top: 1px solid var(--line-d); }
.frow {
  display: grid; grid-template-columns: 64px 1fr 72px 122px; gap: 12px; align-items: center;
  padding: 9.5px 8px; font-size: 12.5px; color: #dbe2ef;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-variant-numeric: tabular-nums;
}
.frow.head { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--mut-d); }
.frow span:nth-child(3) { text-align: right; }
.frow.hot { background: rgba(127, 192, 255, .05); border-radius: 8px; }
.frow.dim { opacity: .55; }

.fiscal-key {
  margin-top: 13px; display: flex; flex-direction: column; gap: 3px;
  background: rgba(255, 255, 255, .03); border: 1px dashed var(--line-d);
  border-radius: var(--r-sm); padding: 11px 14px;
}
.fiscal-key small { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--mut-d); font-weight: 600; }
.fiscal-key code { font-family: var(--f-mono); font-size: 11.5px; color: #b8e986; letter-spacing: .04em; }

.fiscal-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.fbtn {
  font-size: 11.5px; font-weight: 600; color: #c4cdde;
  border: 1px solid var(--line-d); border-radius: 8px; padding: 6px 13px;
  transition: background .2s ease;
}
.fbtn:hover { background: rgba(255, 255, 255, .06); }
.fbtn.hl { color: var(--lime-2); border-color: rgba(130, 210, 24, .4); }
.fiscal-foot small { margin-left: auto; font-size: 11px; color: var(--mut-d); }

/* --- Tela financeiro --- */
.fin-table { border-top: 1px solid var(--line-d); }
.grow-row {
  display: grid; grid-template-columns: 26px 76px 1fr 48px 70px 110px;
  gap: 10px; align-items: center;
  padding: 9.5px 8px; font-size: 12.5px; color: #dbe2ef;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-variant-numeric: tabular-nums;
}
.grow-row.head { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--mut-d); }
.grow-row span:nth-child(5) { text-align: right; }
.grow-row.dim { opacity: .55; }
.cb {
  width: 16px; height: 16px; border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  position: relative; transition: background .25s ease, border-color .25s ease;
}
.cb.checked { background: var(--lime); border-color: var(--lime); animation: pop .4s var(--ease); }
.cb.checked::after {
  content: ""; position: absolute; left: 4.5px; top: 1.5px;
  width: 4px; height: 8px;
  border: solid #0a1424; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.fin-row.sel { background: rgba(130, 210, 24, .06); }

.fin-summary {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 16px; padding: 14px 16px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line-d); border-radius: var(--r-sm);
}
.fs-item small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--mut-d); font-weight: 600; }
.fs-item b { font-size: 15px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.fs-item.total b { color: var(--lime-2); font-size: 17px; }
.fs-op { color: var(--mut-d); font-weight: 700; }
.fin-btn {
  margin-left: auto;
  font-size: 12.5px; font-weight: 700; color: #0a1424;
  background: var(--grad-lime); border-radius: 10px; padding: 10px 18px;
  box-shadow: var(--glow-lime);
  transition: transform .25s var(--ease);
}
.fin-btn.pulse { animation: btn-pulse 1s var(--ease) infinite; }
@keyframes btn-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============================================================
   NÚMEROS + PORQUÊ
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 110px;
}
.stat {
  position: relative;
  min-width: 0;
  text-align: center; padding: 34px 18px;
  background: var(--card-l); border: 1px solid var(--line-l); border-radius: var(--r-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-steel);
  opacity: .9;
}
.stat:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -24px rgba(12, 23, 51, .25); }
.stat b {
  display: block;
  font-family: var(--f-disp); font-size: clamp(34px, 2.875rem, 46px); font-weight: 800;
  letter-spacing: 0; line-height: 1;
  background: linear-gradient(115deg, var(--ink) 30%, var(--lime-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat > span { display: block; margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--mut-l); }
.stat b .count { display: inline; }

.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  background: var(--card-l); border: 1px solid var(--line-l); border-radius: var(--r-md);
  padding: 26px; overflow: hidden; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(130, 210, 24, .5); box-shadow: 0 24px 54px -22px rgba(12, 23, 51, .22); }
.why-card h3 { font-family: var(--f-disp); font-size: 17.5px; font-weight: 700; margin: 4px 0 8px; }
.why-card p { font-size: 14px; color: var(--mut-l); }

/* ============================================================
   SOBRE / TIMELINE
   ============================================================ */
.timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  position: relative; margin-top: 10px;
}
.timeline::before {
  content: ""; position: absolute; left: 2%; right: 2%; top: 27px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(130, 210, 24, .5), rgba(130, 210, 24, .15));
}
.tl-item {
  position: relative; padding: 56px 22px 26px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--line-d); border-radius: var(--r-md);
  transition: transform .35s var(--ease), border-color .3s ease;
}
.tl-item:hover { transform: translateY(-5px); border-color: rgba(130, 210, 24, .4); }
.tl-item::before {
  content: ""; position: absolute; top: 21px; left: 22px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(130, 210, 24, .15), 0 0 18px rgba(130, 210, 24, .6);
}
.tl-year {
  position: absolute; top: 13px; left: 47px;
  font-family: var(--f-mono); font-size: 13.5px; font-weight: 700; color: var(--lime-2);
  letter-spacing: .06em;
}
.tl-item h3 { font-family: var(--f-disp); font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tl-item p { font-size: 14.5px; color: var(--mut-d); }

.motto {
  margin: 96px auto 0; max-width: 760px; text-align: center;
  font-family: var(--f-disp); font-size: clamp(27px, 2.625rem, 42px);
  font-weight: 800; line-height: 1.2; letter-spacing: 0;
  background: linear-gradient(115deg, #fff 35%, var(--lime-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.motto cite {
  display: block; margin-top: 22px;
  font-family: var(--f-body); font-style: normal; font-size: 14px; font-weight: 500;
  -webkit-text-fill-color: var(--mut-d); color: var(--mut-d);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq-side { position: sticky; top: 110px; }
.faq-side h2 {
  font-family: var(--f-disp); font-size: clamp(30px, 2.625rem, 42px);
  font-weight: 800; line-height: 1.12; letter-spacing: 0; margin: 14px 0 16px;
}
.faq-side p { color: var(--mut-l); margin-bottom: 26px; }

.faq-item { border-bottom: 1px solid var(--line-l); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-align: left; padding: 22px 4px;
  font-family: var(--f-disp); font-size: 17px; font-weight: 600; color: var(--ink);
  transition: color .25s ease;
}
.faq-q:hover { color: var(--lime-deep); }
.faq-q svg {
  width: 19px; height: 19px; flex: none; color: var(--lime-deep);
  transition: transform .35s var(--ease);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq-a > p {
  overflow: hidden; min-height: 0;
  font-size: 15px; color: var(--mut-l); padding-right: 36px;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 22px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 4vw, 64px);
  background: linear-gradient(135deg, #0a1228, #060b1a 60%);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  box-shadow: 0 40px 90px -30px rgba(6, 11, 26, .55);
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(640px 300px at 88% -10%, rgba(130, 210, 24, .22), transparent 70%),
    radial-gradient(520px 280px at -8% 110%, rgba(38, 84, 190, .25), transparent 70%);
}
.cta-copy { position: relative; }
.cta-copy h2 {
  font-family: var(--f-disp); font-size: clamp(28px, 2.625rem, 42px);
  font-weight: 800; line-height: 1.12; letter-spacing: 0; color: #fff;
  margin-bottom: 16px;
}
.cta-copy p { color: var(--mut-d); font-size: 16.5px; max-width: 44ch; }
.cta-points { list-style: none; padding: 0; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.cta-points li {
  position: relative; padding-left: 30px;
  font-size: 15px; font-weight: 500; color: #d6dded;
}
.cta-points li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(130, 210, 24, .15);
  border: 1px solid rgba(130, 210, 24, .45);
}
.cta-points li::after {
  content: ""; position: absolute; left: 6px; top: 7.5px;
  width: 5px; height: 8px;
  border: solid var(--lime-2); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta-form { position: relative; display: flex; flex-direction: column; gap: 7px; }
.cta-form label {
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--mut-d); margin-top: 9px;
}
.cta-form input, .cta-form select {
  font: inherit; font-size: 16px; color: #fff;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line-d); border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  width: 100%;
}
.cta-form input::placeholder { color: rgba(148, 160, 186, .65); }
.cta-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a0ba' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}
.cta-form select option { color: var(--ink); background: #fff; }
.cta-form input:focus, .cta-form select:focus {
  outline: none; border-color: rgba(130, 210, 24, .65);
  background-color: rgba(130, 210, 24, .06);
  box-shadow: 0 0 0 4px rgba(130, 210, 24, .14);
}
.cta-form input.invalid { border-color: rgba(255, 95, 87, .7); box-shadow: 0 0 0 4px rgba(255, 95, 87, .12); }
.cta-form .btn { margin-top: 18px; width: 100%; }
.cta-alt { margin-top: 13px; text-align: center; font-size: 13px; color: var(--mut-d); }
.cta-alt a { color: var(--lime-2); font-weight: 600; }
.cta-alt a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line-d);
  padding: 72px 0 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px; border-bottom: 1px solid var(--line-d);
}
.footer-brand p { margin-top: 18px; font-size: 14.5px; color: var(--mut-d); max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  border: 1px solid var(--line-d); color: var(--mut-d);
  transition: color .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.footer-social a:hover { color: var(--lime-2); border-color: rgba(130, 210, 24, .45); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--f-disp); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 6px;
}
.footer-col a { font-size: 14.5px; color: var(--mut-d); transition: color .2s ease; width: fit-content; }
.footer-col a:hover { color: var(--lime-2); }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 30px; font-size: 13px; color: var(--mut-d);
}
.lime-heart { color: var(--lime); }

/* ============================================================
   FLUTUANTES
   ============================================================ */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-lime); color: #0a1424;
  box-shadow: var(--glow-lime);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.fab-wa::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(130, 210, 24, .5);
  animation: fab-ring 2.4s ease-out infinite;
}
@keyframes fab-ring {
  0%   { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.fab-wa:hover { transform: translateY(-4px) scale(1.05); }
.fab-wa svg { width: 27px; height: 27px; }
.fab-tip {
  position: absolute; right: calc(100% + 13px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: #fff;
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
  padding: 8px 13px; border-radius: 9px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--ease);
}
.fab-wa:hover .fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

.to-top {
  position: fixed; right: 22px; bottom: 94px; z-index: 90;
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(13, 21, 43, .85);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-d); color: #c4cdde;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s var(--ease), color .2s ease, border-color .2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { color: var(--lime-2); border-color: rgba(130, 210, 24, .45); }
.to-top svg { width: 19px; height: 19px; }

/* ============================================================
   REVEAL (scroll)
   ============================================================ */
body.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
body.js .reveal.d-1 { transition-delay: .08s; }
body.js .reveal.d-2 { transition-delay: .16s; }
body.js .reveal.d-3 { transition-delay: .24s; }
body.js .reveal.d-4 { transition-delay: .32s; }
body.js .reveal.d-5 { transition-delay: .4s; }
body.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; }
  .hero-v3 { min-height: auto; padding: 132px 0 92px; }
  .hero-visual { max-width: 660px; margin-inline: auto; width: 100%; }
  .fc-2 { left: -10px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-lg, .bento-card:nth-last-child(2), .bento-card:last-child { grid-column: span 2; }
  .b-tall { grid-row: auto; }
  .tour { grid-template-columns: 1fr; }
  .tour-tabs { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 6px; max-width: 100%; contain: layout paint; }
  .tour-tab { min-width: 230px; flex: 1; }
  .tour-tab:hover { transform: none; }
  .stats, .why { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  .nav { background: rgba(6, 11, 26, .88); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
  .nav-links {
    position: fixed; left: 0; right: 0; top: 74px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(6, 11, 26, .98);
    border-bottom: 1px solid var(--line-d);
    padding: 18px clamp(20px, 4vw, 32px) 26px;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s var(--ease), visibility .3s;
  }
  .nav.open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .nav-link { font-size: 17px; padding: 13px 10px; }
  .nav-mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
}

@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .container { padding-inline: 20px; }
  .hero { padding: 122px 0 88px; }
  .hero-v3 { padding: 108px 0 78px; }
  .hero h1 { font-size: 34px; line-height: 1.09; margin-top: 22px; }
  .sec-head h2,
  .faq-side h2,
  .cta-copy h2 {
    font-size: 32px;
    line-height: 1.14;
  }
  .lead { font-size: 16px; line-height: 1.65; }
  .badge { max-width: 100%; font-size: 12.5px; }
  .hero-proof { display: none; }
  .hero-proof span { min-height: auto; }
  .system-map {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin-bottom: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .system-map i { display: none; }
  .system-map span {
    text-align: center;
    font-size: 10px;
    white-space: normal;
  }
  .ops-strip { grid-template-columns: 1fr 1fr; }
  .ops-step { min-height: 42px; font-size: 10.5px; }
  .real-screen-frame { border-radius: 13px; }
  .hero-real-screen { margin-top: 10px; }
  .hero-cta .btn { width: 100%; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .kpis .kpi:last-child { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .b-lg, .bento-card:nth-last-child(2), .bento-card:last-child { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 80px; }
  .stat { padding: 24px 10px; min-height: 180px; display: flex; flex-direction: column; justify-content: center; }
  .stat b { font-size: 30px; line-height: 1.05; white-space: nowrap; }
  .stat:nth-child(3) b { font-size: 27px; }
  .stat > span { font-size: 14px; line-height: 1.45; }
  .tour-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    gap: 10px;
    padding-bottom: 0;
    contain: none;
  }
  .tour-tab {
    min-width: 0;
    padding: 13px 12px;
    border-radius: 13px;
  }
  .tour-tab b { font-size: 14px; }
  .tour-tab span { font-size: 12px; line-height: 1.35; }
  .win-tour { min-height: auto; }
  .win-ribbon { overflow-x: auto; scrollbar-width: none; }
  .win-ribbon::-webkit-scrollbar { display: none; }
  .why { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .toasts { right: 8px; bottom: -18px; }
  .sale-head { gap: 8px 16px; }
  .srow { grid-template-columns: 1fr 40px 60px 70px; gap: 8px; font-size: 11.5px; }
  .frow { grid-template-columns: 50px 1fr 96px; }
  .frow span:nth-child(3) { display: none; }
  .grow-row { grid-template-columns: 22px 1fr 56px 96px; }
  .grow-row span:nth-child(2), .grow-row span:nth-child(4) { display: none; }
  .fin-summary { gap: 10px; }
  .fs-op { display: none; }
  .fin-btn { width: 100%; margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab-wa { right: 16px; bottom: 16px; }
  .to-top { right: 16px; bottom: 86px; }
}

/* ============================================================
   MOVIMENTO REDUZIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .intro { display: none; }
  body.js .reveal { opacity: 1; transform: none; }
  .chart-line { stroke-dashoffset: 0; }
  .chart-area, .chart-dot { opacity: 1; }
  .bar i { width: var(--w, 50%); }
  .sale-item { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
