:root {
  --bg: #060b1f;
  --bg-2: #0a1330;
  --card: #0d1836;
  --border: #1b2a52;
  --text: #e7f0ff;
  --muted: #8ea3c9;
  --accent: #38bdf8;
  --accent-2: #7dd3fc;
  --accent-dark: #0ea5e9;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 85% -10%, #113066 0%, transparent 60%),
              radial-gradient(900px 500px at -10% 30%, #0c2450 0%, transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(6, 11, 31, .85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1120px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; }
.brand .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 2px var(--accent);
}
.nav-links { display: flex; gap: 8px; font-size: 14px; color: var(--muted); align-items: center; }
.nav-links > a { padding: 8px 14px; border-radius: 8px; }
.nav-links > a:hover { color: var(--text); background: rgba(56,189,248,.08); }
.nav-links > a.active { color: var(--accent-2); }

.breadcrumb {
  max-width: 1120px; margin: 0 auto; padding: 18px 20px 0; font-size: 13px; color: var(--muted);
}
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { margin: 0 6px; opacity: .5; }
.breadcrumb .current { color: var(--text); }

.btn {
  display: inline-block; padding: 12px 22px; border-radius: 10px;
  font-size: 15px; font-weight: 600; border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
  color: #04141f;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 8px; }

section { max-width: 1120px; margin: 0 auto; padding: 64px 20px; }

/* HERO (home) */
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding-top: 88px; padding-bottom: 88px;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--accent-2); background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.3);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
h1 {
  font-size: 46px; font-weight: 800; letter-spacing: -1px; line-height: 1.08; margin-bottom: 20px;
}
h1 .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 17px; color: var(--muted); max-width: 480px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.stats-row {
  display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr));
  column-gap: 40px; row-gap: 28px; max-width: 420px;
}
.stat b { display: block; font-size: 28px; font-weight: 800; color: var(--text); }
.stat span { font-size: 13px; color: var(--muted); }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 340px;
}
.glow-ring {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(125,211,252,.35), transparent 60%);
  filter: blur(6px);
}
.cta-orb {
  position: relative; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--accent-2), var(--accent-dark) 65%, #075985 100%);
  box-shadow: 0 0 60px 10px rgba(56,189,248,.35), inset 0 0 40px rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-weight: 800; font-size: 17px; color: #04141f; line-height: 1.3;
  animation: float 4s ease-in-out infinite;
}
.float-chip {
  position: absolute; width: 54px; height: 54px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  animation: float 4s ease-in-out infinite;
}
.float-chip.c1 { top: 6%; left: 4%; animation-delay: .3s; }
.float-chip.c2 { bottom: 10%; left: 0%; animation-delay: 1.1s; }
.float-chip.c3 { top: 12%; right: 2%; animation-delay: .7s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Page headers (Sobre / Serviços) */
.page-header { padding-top: 40px; padding-bottom: 20px; }
.page-header h1 { font-size: 38px; }
.page-header .lead { max-width: 640px; }

h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.section-sub { color: var(--muted); font-size: 15px; margin-bottom: 32px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.card.em-breve { opacity: .6; }
.card-icon { font-size: 28px; }
.card h3 { font-size: 18px; font-weight: 700; }
.card p { color: var(--muted); font-size: 14px; flex-grow: 1; }
.badge {
  display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; background: var(--bg); border: 1px solid var(--border); color: var(--muted);
}
.badge.ativo { background: rgba(56,189,248,.12); border-color: var(--accent); color: var(--accent-2); }
.card .btn { align-self: flex-start; margin-top: 4px; }

.novidades-lista { display: flex; flex-direction: column; gap: 14px; }
.novidade {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 18px; display: flex; gap: 16px; align-items: baseline;
}
.novidade .data { color: var(--accent); font-weight: 700; font-size: 13px; white-space: nowrap; }
.novidade .texto { color: #cbd8ee; font-size: 15px; }

.contato-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; text-align: center;
}
.contato-card p { color: var(--muted); margin-bottom: 18px; }
.btn-whatsapp { background: #25D366; color: #04140b; }
.btn-whatsapp:hover { filter: brightness(1.08); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; max-width: 560px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; color: #cbd8ee; font-size: 15px; }
.feature-list li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }

.demo-placeholder {
  border: 1px dashed var(--border); border-radius: 16px; padding: 56px 24px;
  text-align: center; color: var(--muted); font-size: 14px; margin: 8px 0 32px;
}
.demo-placeholder .demo-icon { font-size: 32px; display: block; margin-bottom: 12px; }

/* Sobre — missão/visão + diferenciais */
.missao-visao { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.missao-visao .card h3 { color: var(--accent-2); }

.cta-final {
  text-align: center; background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px 24px; margin-top: 8px;
}
.cta-final h2 { margin-bottom: 12px; }
.cta-final p { color: var(--muted); margin-bottom: 24px; }

footer {
  border-top: 1px solid var(--border); padding: 24px 20px; text-align: center;
  color: #5c72a0; font-size: 13px;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .missao-visao { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  h1 { font-size: 32px; }
}
