:root {
  --ink: #0a0f1f;
  --ink-2: #111a33;
  --slate: #47536b;
  --muted: #6b7a94;
  --line: #e3e9f4;
  --line-soft: #eef2f9;
  --bg: #ffffff;
  --bg-alt: #f6f8fd;
  --blue: #2563eb;
  --blue-600: #1d4ed8;
  --indigo: #4f46e5;
  --violet: #7c3aed;
  --cyan: #06b6d4;
  --cyan-300: #67e8f9;
  --grad: linear-gradient(115deg, #4f46e5 0%, #2563eb 45%, #06b6d4 100%);
  --grad-soft: linear-gradient(115deg, rgba(79,70,229,.12), rgba(37,99,235,.1) 45%, rgba(6,182,212,.12));
  --shadow-sm: 0 1px 2px rgba(10,15,31,.05), 0 2px 8px rgba(10,15,31,.04);
  --shadow: 0 4px 12px rgba(10,15,31,.05), 0 18px 40px -18px rgba(10,15,31,.16);
  --shadow-lg: 0 8px 24px rgba(10,15,31,.07), 0 40px 80px -32px rgba(16,26,58,.32);
  --glow: 0 0 0 1px rgba(99,102,241,.18), 0 12px 40px -12px rgba(37,99,235,.45);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --sans: "Segoe UI Variable", "Segoe UI", "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Avenir Next", "Noto Sans", sans-serif;
  --display: "Segoe UI Variable Display", "Segoe UI", "SF Pro Display", "Avenir Next", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 5.4vw, 3.85rem); letter-spacing: -.033em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.65rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.12rem, 1.7vw, 1.33rem); font-weight: 750; }
h4 { font-size: 1.03rem; font-weight: 700; }

@media (pointer: fine) {
  a, .btn, .burger, .faq summary, .seg { cursor: pointer; }
  .btn:hover { cursor: pointer; }
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.15em; }
li { margin-bottom: .38em; }
strong { color: var(--ink-2); font-weight: 680; }
.hero strong, .sec-dark strong, .cta strong, .card-grad strong { color: #fff; }

a { color: var(--blue-600); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--indigo); }

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

:focus-visible {
  outline: 3px solid #7aa7ff;
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 650;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- Header ---------- */

.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hdr.is-stuck {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(10, 15, 31, .28);
}
.hdr .wrap { display: flex; align-items: center; gap: 18px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; flex: none; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand svg { width: 36px; height: 36px; border-radius: 10px; flex: none; }
.brand span { font-size: 1.06rem; line-height: 1.15; white-space: nowrap; }
.brand small { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 11px;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: var(--bg-alt); color: var(--ink); }
.nav a[aria-current="true"] { color: var(--blue-600); background: rgba(37, 99, 235, .08); }

.hdr:not(.is-stuck) .brand { color: #fff; }
.hdr:not(.is-stuck) .brand small { color: rgba(219, 228, 245, .72); }
.hdr:not(.is-stuck) .nav a { color: #cad6ee; }
.hdr:not(.is-stuck) .nav a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.hdr:not(.is-stuck) .nav a[aria-current="true"] { color: #fff; background: rgba(255, 255, 255, .12); }
.hdr:not(.is-stuck) .burger { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); }
.hdr:not(.is-stuck) .burger i, .hdr:not(.is-stuck) .burger i::before, .hdr:not(.is-stuck) .burger i::after { background: #fff; }
.hdr:not(.is-stuck) .burger[aria-expanded="true"] i { background: transparent; }

.hdr-cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger i { display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .28s var(--ease), background .2s ease; }
.burger i::before, .burger i::after { content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .28s var(--ease), top .2s ease; }
.burger i::before { top: -6px; }
.burger i::after { top: 6px; }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: .96rem;
  font-weight: 680;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-grad {
  --btn-bg: none;
  background-image: var(--grad);
  background-size: 190% 190%;
  box-shadow: 0 10px 26px -12px rgba(37, 99, 235, .75), 0 0 0 0 rgba(99, 102, 241, 0);
  animation: gradShift 9s ease infinite;
}
.btn-grad:hover {
  box-shadow: 0 18px 38px -14px rgba(37, 99, 235, .85), 0 0 28px -4px rgba(6, 182, 212, .45);
}

.btn-wa { --btn-bg: #10a37f; box-shadow: 0 10px 26px -14px rgba(16, 163, 127, .8); }
.btn-wa:hover { --btn-bg: #0d8c6c; }

.btn-outline {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: #c9d6ee; background: #fbfcff; }

.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: rgba(10, 15, 31, .14); }
.btn-ghost:hover { background: rgba(10, 15, 31, .04); }

.btn-glass { --btn-bg: rgba(255,255,255,.1); --btn-fg: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn-glass:hover { --btn-bg: rgba(255,255,255,.18); }

.btn-white { --btn-bg: #fff; --btn-fg: #0a0f1f; box-shadow: 0 14px 34px -16px rgba(0, 0, 0, .6); }
.btn-white:hover { --btn-bg: #f2f6ff; }

.btn-lg { padding: 16px 30px; font-size: 1.02rem; border-radius: 15px; }
.btn-sm { padding: 10px 17px; font-size: .89rem; border-radius: 11px; }

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, .42);
  pointer-events: none;
  animation: ripple .62s linear forwards;
  z-index: -1;
}
.btn-outline .ripple, .btn-white .ripple, .btn-ghost .ripple { background: rgba(37, 99, 235, .22); }

@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Sections ---------- */

.sec { padding: clamp(64px, 8.5vw, 110px) 0; position: relative; }
.sec-alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }
.sec-dark { background: #070b16; color: #a9b6d0; }
.sec-dark h2, .sec-dark h3, .sec-dark h4 { color: #fff; }

.head { max-width: 760px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.head p { font-size: 1.09rem; color: var(--muted); margin: 0; }
.head.left { margin-inline: 0; text-align: left; }

p.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 15px 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--blue-600);
  box-shadow: var(--shadow-sm);
}
p.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .13);
}
.sec-dark p.eyebrow, .cta p.eyebrow { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: var(--cyan-300); box-shadow: none; }

.gt {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(112px, 14vw, 168px) 0 clamp(70px, 9vw, 110px);
  background: #070b16;
  color: #a9b6d0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto;
  height: 130%;
  z-index: -2;
  background:
    radial-gradient(60% 46% at 22% 12%, rgba(99, 102, 241, .42), transparent 62%),
    radial-gradient(52% 42% at 82% 6%, rgba(37, 99, 235, .40), transparent 60%),
    radial-gradient(46% 40% at 62% 82%, rgba(6, 182, 212, .26), transparent 62%);
  filter: blur(6px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(78% 62% at 50% 32%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(78% 62% at 50% 32%, #000 20%, transparent 78%);
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 64px); align-items: center; }

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .gt { background: linear-gradient(100deg, #a5b4fc, #7dd3fc 48%, #67e8f9); -webkit-background-clip: text; background-clip: text; }
.hero-sub { font-size: clamp(1.04rem, 1.55vw, 1.19rem); color: #b6c3dd; max-width: 620px; margin-bottom: 30px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  font-size: .84rem;
  font-weight: 620;
  color: #d7e2f6;
}
.hero-badge b { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; background: var(--grad); color: #fff; font-size: .74rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .89rem; color: #93a3c2; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--cyan-300); flex: none; }

/* ---------- Hero mockup ---------- */

.mock {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(165deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, .8),
    0 0 80px -20px rgba(99, 102, 241, .35),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  padding: 14px;
  will-change: transform;
}
.mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(165,180,252,.45), transparent 40%, rgba(103,232,249,.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 4px 6px 13px; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.mock-bar i:nth-child(1) { background: #ff5f57; }
.mock-bar i:nth-child(2) { background: #febc2e; }
.mock-bar i:nth-child(3) { background: #28c840; }
.mock-bar em {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .07);
  font-size: .7rem;
  font-style: normal;
  font-weight: 600;
  color: #9db0d4;
  letter-spacing: .02em;
}
.mock-body { border-radius: 18px; background: rgba(7, 11, 22, .62); border: 1px solid rgba(255, 255, 255, .07); padding: 16px; display: grid; gap: 13px; }

.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { padding: 12px 13px; border-radius: 13px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .07); }
.kpi small { display: block; font-size: .66rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; color: #8497ba; margin-bottom: 4px; }
.kpi b { font-size: 1.09rem; color: #fff; letter-spacing: -.02em; font-weight: 780; }
.kpi u { display: block; text-decoration: none; font-size: .7rem; font-weight: 650; color: #4ade80; margin-top: 2px; }

.mock-chart { border-radius: 13px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); padding: 13px; }
.mock-chart h4 { font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; color: #8497ba; margin: 0 0 10px; font-weight: 650; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 92px; }
.bars i { flex: 1; border-radius: 5px 5px 3px 3px; background: linear-gradient(180deg, #67e8f9, #4f46e5); opacity: .9; transform-origin: bottom; animation: barIn .9s var(--ease) backwards; }
@keyframes barIn { from { transform: scaleY(.06); opacity: 0; } }

.mock-rows { display: grid; gap: 7px; }
.mrow { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 11px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06); font-size: .78rem; color: #b8c6e2; }
.mrow b { color: #fff; font-weight: 680; }
.mrow em { font-style: normal; padding: 2px 9px; border-radius: 999px; background: rgba(74, 222, 128, .14); color: #6ee7a8; font-size: .68rem; font-weight: 700; }

.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 15px;
  background: rgba(12, 18, 34, .78);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 48px -18px rgba(0, 0, 0, .8);
  font-size: .8rem;
  font-weight: 620;
  color: #dbe5f8;
  animation: floaty 6s ease-in-out infinite;
}
.float svg { width: 22px; height: 22px; color: var(--cyan-300); flex: none; }
.float small { display: block; font-size: .69rem; font-weight: 600; color: #93a3c2; }
.float-a { top: -34px; left: -34px; }
.float-b { bottom: -32px; right: -30px; animation-delay: -3s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ---------- Logos / proof strip ---------- */

.strip { padding: 26px 0; background: #060911; border-top: 1px solid rgba(255, 255, 255, .07); }
.strip ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; margin: 0; padding: 0; list-style: none; }
.strip li { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 640; color: #7c8db0; letter-spacing: .01em; }
.strip svg { width: 16px; height: 16px; color: #38bdf8; flex: none; }

/* ---------- Cards ---------- */

.card {
  position: relative;
  padding: 26px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(99, 102, 241, .08);
  border-color: #d3e0f7;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card p + p { margin-top: .7em; }

.ico {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 17px;
  border-radius: 15px;
  background: var(--grad-soft);
  border: 1px solid rgba(37, 99, 235, .14);
  color: var(--blue);
}
.ico svg { width: 24px; height: 24px; }

.card-grad { background: var(--grad); border: none; color: rgba(255, 255, 255, .88); box-shadow: 0 26px 60px -26px rgba(37, 99, 235, .8); }
.card-grad h3, .card-grad h4 { color: #fff; }
.card-grad p { color: rgba(255, 255, 255, .84); }
.card-grad .ico { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .24); color: #fff; }

/* ---------- Sobre ---------- */

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(34px, 5vw, 66px); align-items: center; }
.split-txt p { font-size: 1.03rem; }

.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; margin: 0; font-size: .98rem; color: var(--slate); }
.checks svg { width: 24px; height: 24px; color: #16a34a; margin-top: 1px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(38px, 5vw, 56px); }
.stat { padding: 24px 20px; text-align: center; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat b { display: block; font-size: clamp(1.85rem, 3.4vw, 2.5rem); font-weight: 820; letter-spacing: -.04em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; line-height: 1.1; }
.stat span { display: block; margin-top: 6px; font-size: .87rem; font-weight: 600; color: var(--muted); }

/* ---------- Steps ---------- */

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 30px 24px 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 13px;
  background: var(--grad);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 12px 26px -12px rgba(37, 99, 235, .7);
}
.step p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- Recursos / módulos ---------- */

.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.feat article { padding: 30px 26px; background: #fff; transition: background .3s ease, transform .3s var(--ease); }
.feat article:hover { background: linear-gradient(180deg, #fff, #f6f9ff); }
.feat h3 { font-size: 1.09rem; }
.feat p { font-size: .94rem; color: var(--muted); margin: 0; }

.mods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mod {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 13px;
  padding: 17px 18px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.mod:hover { transform: translateY(-3px); border-color: #cfdff8; box-shadow: var(--shadow); }
.mod i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--grad-soft); color: var(--blue); }
.mod i svg { width: 19px; height: 19px; }
.mod h4 { margin: 0; font-size: .95rem; font-weight: 700; color: var(--ink); letter-spacing: -.012em; }
.mod span { display: block; font-size: .83rem; color: var(--muted); line-height: 1.5; margin-top: 2px; }

#modulos > .wrap > h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  font-size: .85rem;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
#modulos > .wrap > h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- Segmentos ---------- */

.segs-copy {
  max-width: 860px;
  margin: -8px auto 28px;
  text-align: center;
  font-size: 1.02rem;
  color: var(--muted);
}
.segs-copy p { margin: 0; }
.segs { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.seg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 19px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .93rem;
  font-weight: 620;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), color .24s ease;
}
.seg svg { width: 17px; height: 17px; color: var(--blue); transition: color .24s ease; }
.seg:hover { transform: translateY(-3px) scale(1.02); border-color: transparent; box-shadow: 0 16px 32px -16px rgba(37, 99, 235, .55); color: var(--blue-600); }
.segs-note { margin: 30px auto 0; max-width: 780px; text-align: center; font-size: .99rem; color: var(--muted); }

/* ---------- Devices ---------- */

.devices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.device { padding: 28px 22px; text-align: center; border-radius: var(--r-lg); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09); transition: transform .3s var(--ease), background .3s ease, border-color .3s ease; }
.device:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .07); border-color: rgba(125, 211, 252, .3); }
.device svg { width: 34px; height: 34px; margin: 0 auto 14px; color: var(--cyan-300); }
.device h3 { font-size: 1.02rem; font-weight: 720; margin: 0 0 6px; }
.device span { font-size: .87rem; color: #90a1c2; }

/* ---------- Depoimentos ---------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { display: flex; flex-direction: column; padding: 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 17px; height: 17px; color: #f59e0b; }
.quote blockquote { margin: 0 0 20px; font-size: .97rem; color: var(--slate); line-height: 1.68; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #fff; font-size: .87rem; font-weight: 780; letter-spacing: -.02em; flex: none; }
.quote cite { font-style: normal; font-size: .93rem; font-weight: 700; color: var(--ink); }
.quote cite span { display: block; font-size: .81rem; font-weight: 500; color: var(--muted); }

.disclaimer { max-width: 860px; margin: 26px auto 0; padding: 15px 20px; border-radius: var(--r); background: #fff; border: 1px dashed #c9d6ee; font-size: .87rem; color: var(--muted); text-align: center; }

/* ---------- FAQ ---------- */

.faq-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
.faq { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
.faq[open] { border-color: #cfdff8; box-shadow: var(--shadow); }
.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 17px 20px;
  cursor: pointer;
  list-style: none;
  font-size: .99rem;
  font-weight: 680;
  color: var(--ink);
  line-height: 1.5;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-600); }
.faq summary h3 { margin: 0; font: inherit; color: inherit; letter-spacing: -.012em; }
.faq summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin: 6px 0 0 auto;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .28s var(--ease), border-color .2s ease;
}
.faq[open] summary::after { transform: rotate(-135deg); border-color: var(--blue); }
.faq .ans { padding: 0 20px 19px; font-size: .95rem; color: var(--muted); animation: fadeDown .3s var(--ease); }
.faq .ans p { margin: 0; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- CTA final ---------- */

.cta { position: relative; padding: clamp(60px, 8vw, 96px) 0; background: #070b16; color: #b0bdd6; overflow: hidden; isolation: isolate; }
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(56% 78% at 22% 20%, rgba(79, 70, 229, .5), transparent 62%), radial-gradient(50% 70% at 80% 84%, rgba(6, 182, 212, .32), transparent 62%);
}
.cta-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.95rem, 4.2vw, 3rem); }
.cta p { font-size: 1.09rem; color: #c3cee6; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: 30px; }
p.cta-note { margin-top: 22px; font-size: .87rem; color: #8b9bbb; }

/* ---------- Footer ---------- */

.ftr { background: #05070f; color: #8496b8; padding: clamp(50px, 6vw, 74px) 0 0; border-top: 1px solid rgba(255, 255, 255, .07); font-size: .92rem; }
.ftr-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 44px; }
.ftr h3 { font-size: .8rem; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; color: #dbe4f5; margin-bottom: 16px; }
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ftr li { margin: 0; }
.ftr a { color: #8496b8; }
.ftr a:hover { color: #7dd3fc; }
.ftr .brand { color: #fff; margin: 0 0 15px; }
.ftr .brand small { color: #7b8cae; }
.ftr-about { max-width: 330px; color: #7f90b2; }
.ftr-contact li { display: flex; align-items: flex-start; gap: 10px; }
.ftr-contact svg { width: 17px; height: 17px; color: #38bdf8; margin-top: 4px; flex: none; }
.ftr-bot { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between; padding: 22px 0 26px; border-top: 1px solid rgba(255, 255, 255, .07); font-size: .85rem; color: #6d7d9e; }
.ftr-bot nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ---------- Sticky mobile bar ---------- */

.bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: none;
  gap: 9px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.bar .btn { flex: 1; padding: 13px 10px; font-size: .92rem; }

/* ---------- Reveal ---------- */

.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rv-z { opacity: 0; transform: scale(.96); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js .rv-b { opacity: 0; filter: blur(9px); transition: opacity .8s var(--ease), filter .8s var(--ease); }
.js .rv.in, .js .rv-z.in, .js .rv-b.in { opacity: 1; transform: none; filter: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .g4, .mods, .devices, .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feat, .quotes { grid-template-columns: repeat(2, 1fr); }
  .ftr-grid { grid-template-columns: repeat(2, 1fr); }
  .float-a { left: -14px; }
  .float-b { right: -12px; }
}

@media (max-width: 940px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-sub { max-width: none; }
  .mock { max-width: 560px; margin-inline: auto; }
  .float { display: none; }
  .nav, .hdr-cta .btn { display: none; }
  .burger { display: grid; margin-left: auto; }
  .brand { margin-right: 0; }
  .hdr .wrap { gap: 12px; }

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 2px;
    padding: 14px var(--pad) 22px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px -22px rgba(10, 15, 31, .3);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 13px 14px; font-size: 1rem; border-radius: 11px; }

  .bar { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 700px) {
  body { font-size: 16.5px; }
  .g2, .g3, .g4, .mods, .devices, .feat, .quotes, .steps, .faq-cols, .ftr-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-btns .btn { flex: 1 1 100%; }
  .cta-btns .btn { flex: 1 1 100%; }
  .feat { border-radius: var(--r); }
  .mock-kpis { grid-template-columns: 1fr; }
  .ftr-bot { justify-content: flex-start; }
}

@media print {
  .hdr, .bar, .cta-btns, .hero-btns { display: none; }
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  background: radial-gradient(circle, rgba(99, 102, 241, .16) 0%, rgba(6, 182, 212, .08) 42%, transparent 70%);
  mix-blend-mode: screen;
  will-change: transform;
  transition: opacity .35s ease;
}
body.is-dark-zone .cursor-glow { opacity: 1; }
body.nav-open { overflow: hidden; }

@media (max-width: 940px) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .rv, .js .rv-z, .js .rv-b { opacity: 1; transform: none; filter: none; }
  .cursor-glow { display: none; }
}
