:root {
  --bg: #0f1115;
  --bg-soft: #171a21;
  --card: #1c2029;
  --text: #e7e3d8;
  --muted: #9aa0ab;
  --accent: #d4a13a;      /* dourado "Verbum" (chama/candelabro) */
  --accent-2: #c0894a;
  --brand: #6d40b8;       /* roxo do ícone do app */
  --brand-2: #4a2a82;
  --line: #2a2f3a;
  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; border-bottom: 1px solid var(--line); }
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h2 { font-size: 1.9rem; margin-bottom: 8px; }
.sub { color: var(--muted); margin-bottom: 36px; max-width: 640px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(15,17,21,.85); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; }
.brand .dot { color: var(--accent); }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.hero-logo { width: 100px; height: 100px; border-radius: 23px; margin-bottom: 20px;
  box-shadow: 0 12px 44px rgba(109,64,184,.5); }
.nav-links { display: flex; gap: 22px; }
.nav-links a { color: var(--muted); font-size: .95rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #1a1407; font-weight: 700;
  padding: 13px 24px; border-radius: 10px; border: none; cursor: pointer;
  font-size: 1rem; transition: transform .12s, background .2s;
}
.btn:hover { background: var(--accent-2); text-decoration: none; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); background: transparent; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Hero */
.hero { padding: 80px 0 80px; text-align: center; background:
  radial-gradient(900px 460px at 50% -12%, rgba(109,64,184,.30), transparent 70%); }
.hero h1 { font-size: 3.1rem; letter-spacing: -.5px; }
.hero h1 .dot { color: var(--accent); }
.hero p { color: var(--muted); font-size: 1.2rem; max-width: 620px; margin: 18px auto 0; }
.hero .btn-row { justify-content: center; }
.tag { display:inline-block; font-size:.8rem; color:var(--accent);
  border:1px solid var(--accent); border-radius:999px; padding:4px 14px; margin-bottom:22px; }

/* Grid de recursos */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
}
.card .ico { font-size: 1.7rem; margin-bottom: 10px; }
.card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .95rem; }

/* Passos */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; counter-reset: step; }
.step { background: var(--bg-soft); border:1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  display:flex; align-items:center; justify-content:center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color:#1a1407; font-weight:700; margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* CTA módulos */
.cta {
  background: linear-gradient(135deg, #1d2230, #14171e);
  border:1px solid var(--line); border-radius: var(--radius);
  padding: 40px; text-align:center;
}
.cta h2 { margin-bottom: 10px; }
.cta p { color: var(--muted); max-width: 560px; margin: 0 auto 8px; }

/* stats */
.stats { display:flex; gap: 40px; flex-wrap: wrap; justify-content:center; margin-top: 30px; }
.stat b { display:block; font-size: 2rem; color: var(--accent); }
.stat span { color: var(--muted); font-size: .9rem; }

/* Footer */
footer { padding: 40px 0; color: var(--muted); font-size: .9rem; }
.foot { display:flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot a { color: var(--muted); }
.note { background: rgba(212,161,58,.08); border:1px solid rgba(212,161,58,.25);
  border-radius: 10px; padding: 14px 18px; color: var(--text); font-size: .92rem; margin-top: 22px; }

/* Galeria de telas */
.shots {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 8px 4px 20px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.shot { flex: 0 0 auto; width: 232px; scroll-snap-align: center; text-align: center; }
.shot img {
  width: 232px; display: block; border-radius: 26px;
  border: 7px solid #20242e; box-shadow: 0 14px 44px rgba(0,0,0,.55);
}
.shot span { display: block; color: var(--muted); font-size: .88rem; margin-top: 14px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2.2rem; }
  .nav-links { display: none; }
  section { padding: 52px 0; }
}
