:root {
  --bg: #020617;
  --bg-2: #06101f;
  --navy: #0a1628;
  --blue: #1d6bff;
  --blue-2: #4d8dff;
  --glow: rgba(29, 107, 255, .35);
  --ink: #f8fafc;
  --muted: #8ba3c7;
  --line: rgba(77, 141, 255, .22);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: Outfit, "Segoe UI", Inter, system-ui, sans-serif;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(29, 107, 255, .18), transparent 60%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top {
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, .82);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.top .bar { padding: 14px 0; }
.logo { display: flex; align-items: center; color: inherit; text-decoration: none; }
.logo-lockup { height: 48px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 16px; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
nav a:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center;
  padding: 10px 14px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  border: 1px solid transparent;
}
.btn-blue, nav .btn { background: var(--blue); color: #fff; box-shadow: 0 0 24px var(--glow); }
.btn-ghost { border-color: var(--line); color: #fff; }

.hero { position: relative; padding: 72px 0 28px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: auto -10% 0 20%;
  height: 280px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  color: var(--blue-2);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}
h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.05; margin: 10px 0 16px; letter-spacing: .02em; }
.lead { color: var(--muted); font-size: 18px; max-width: 540px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.linhas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 28px auto 48px;
  position: relative;
  z-index: 1;
}
.linha {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.linha-kicker {
  margin: 0 0 6px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.linha h2 { font-size: 22px; margin: 0 0 8px; }
.linha p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }
.linha .btn { margin-top: 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 16px; }
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.chip.on {
  color: #fff;
  border-color: var(--blue);
  background: rgba(29, 107, 255, .22);
}

.section { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
h2 { font-size: 28px; margin: 0 0 22px; }

.services, .cards { display: grid; gap: 16px; }
.services { grid-template-columns: repeat(5, 1fr); }
.cards { grid-template-columns: repeat(3, 1fr); }
.cards-wide { grid-template-columns: repeat(3, 1fr); }
.produto-lead { color: var(--muted); max-width: 760px; margin: -6px 0 22px; font-size: 16px; }
.services article, .cards article {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.services h3, .cards h3 { margin: 0 0 8px; font-size: 16px; }
.services p, .cards p { margin: 0; color: var(--muted); font-size: 14px; }
.ico {
  display: grid; place-items: center;
  width: 36px; height: 36px; margin-bottom: 12px;
  color: var(--blue-2); font-weight: 800;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.steps { color: var(--muted); padding-left: 18px; }
.note { color: var(--muted); }

.foot { border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.foot-grid {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 28px 0;
}
.foot a { color: #fff; text-decoration: none; display: block; }
.foot a:hover { color: var(--blue-2); }
.foot p { margin: 6px 0 0; }

@media (max-width: 980px) {
  .services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .cards, .cards-wide, .split, .linhas { grid-template-columns: 1fr; }
  nav a:not(.btn) { display: none; }
  .services { grid-template-columns: 1fr; }
  .logo-lockup { height: 38px; }
}
