:root {
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --panel: #ffffff;
  --line: #e2e8f0;
  --ink: #0f172a;
  --ink-dim: #475569;
  --accent: #0052cc;
  --accent-2: #1e40af;
  --accent-dim: #e6f0ff;
  --warn: #ea580c;
  --radius: 14px;
}
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html { 
  scroll-behavior: smooth; 
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { 
  background: var(--accent); 
  color: #ffffff; 
}
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0f172a;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
a { 
  color: inherit; 
  text-decoration: none; 
}
img { 
  max-width: 100%; 
  display: block; 
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.scanfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(0, 82, 204, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 82, 204, 0.02) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 80%);
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
.navlinks {
  display: flex;
  gap: 36px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-dim);
}
.navlinks a { 
  transition: color .2s ease; 
}
.navlinks a:hover { 
  color: var(--accent); 
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.35);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink-dim);
  background: transparent;
}
.btn-ghost:hover { 
  border-color: var(--accent); 
  color: var(--accent); 
  background: rgba(0, 82, 204, 0.02);
}
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; 
  height: 6px; 
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4); }
  50% { opacity: .4; box-shadow: 0 0 0 6px rgba(0, 82, 204, 0); }
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p.lead {
  color: var(--ink-dim);
  font-size: 1.1rem;
  max-width: 48ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.radar-wrap {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 360px;
  margin: 0 auto;
}
.radar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
}
.radar-ring:nth-child(2) { inset: 18%; }
.radar-ring:nth-child(3) { inset: 36%; }
.radar-ring:nth-child(4) { inset: 54%; }
.radar-crosshair {
  position: absolute; inset: 0;
}
.radar-crosshair::before, .radar-crosshair::after {
  content: '';
  position: absolute;
  background: var(--line);
}
.radar-crosshair::before { left: 0; right: 0; top: 50%; height: 1px; }
.radar-crosshair::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(0, 82, 204, 0.15), transparent 40%);
  animation: spin 5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.radar-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.12);
}
.radar-core img { width: 48px; height: 48px; border-radius: 10px; }
.radar-blip {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.radar-blip.b1 { top: 25%; left: 75%; }
.radar-blip.b2 { top: 70%; left: 25%; background: #0284c7; }
.radar-label {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-dim);
}
.radar-label.top { top: -20px; left: 50%; transform: translateX(-50%); }
.radar-label.bottom { bottom: -20px; left: 50%; transform: translateX(-50%); }
section { 
  position: relative; 
  z-index: 1; 
  padding: 80px 0; 
}
#sobre { background: var(--bg-alt); }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.section-head p { 
  color: var(--ink-dim); 
  font-size: 1.05rem;
}
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pillar:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 82, 204, 0.06);
}
.pillar .num {
  font-size: 0.85rem;
  color: var(--ink-dim);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.pillar .icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.pillar p { color: var(--ink-dim); font-size: 0.95rem; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.app-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.app-card:hover { 
  border-color: var(--accent); 
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.08);
}
.app-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.app-top img {
  width: 56px; height: 56px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.app-top h3 { font-size: 1.2rem; font-weight: 700; }
.app-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-dim);
  font-size: 0.82rem;
}
.star { color: #f59e0b; font-weight: bold; }
.app-card p.desc {
  color: var(--ink-dim);
  font-size: 0.95rem;
  flex-grow: 1;
}
.app-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.app-shots img {
  border-radius: 8px;
  border: 1px solid var(--line);
  aspect-ratio: 9/16;
  object-fit: cover;
}
.app-card .btn { align-self: flex-start; }
#processo { background: var(--bg-alt); }
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.flow-step {
  position: relative;
}
.flow-step .tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.flow-step h4 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }
.flow-step p { color: var(--ink-dim); font-size: 0.9rem; }
.cta-panel {
  background: linear-gradient(135deg, #e6f0ff 0%, #ffffff 100%);
  border: 1px solid rgba(0, 82, 204, 0.15);
  border-radius: 20px;
  padding: 64px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.04);
}
.cta-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  font-weight: 700;
}
.cta-panel p {
  color: var(--ink-dim);
  margin-bottom: 32px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 32px;
  border-top: 1px solid #1e293b;
}
footer h5, footer .footer-brand {
  color: #ffffff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.footer-tag { color: #94a3b8; font-size: 0.9rem; max-width: 32ch; margin-top: 12px; }
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color .2s ease;
}
.footer-col a:hover { 
  color: #ffffff; 
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
  gap: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { 
  opacity: 1; 
  transform: none; 
}
@media (max-width: 960px) {
  .hero .wrap { 
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 40px;
  }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .radar-wrap { max-width: 280px; }
  .pillars, .apps-grid, .flow { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .navlinks { display: none; } /* Celulares */
  /* .rbrj { display: none; } */
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 48px 0; }
  .btn { width: 100%; justify-content: center; }
  header .btn { 
    width: auto; 
    padding: 10px 18px; /* Celulares */
    font-size: 0.85rem; /* Celulares */
  }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .footer-links { gap: 32px; width: 100%; }
  .footer-col { min-width: 140px; }
}
@media (prefers-reduced-motion: reduce) {
  .radar-sweep, .eyebrow .dot { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}