:root {
  --ink: #10151d;
  --ink-2: #1c2430;
  --muted: #5a6678;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --accent: #e8b04b;
  --accent-dark: #b4690e;
  --ok: #1d7a4f;
  --radius: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; }
h2 { font-size: 1.7rem; margin: 0 0 16px; }
a { color: var(--accent-dark); }

/* Hero */
.hero { background: var(--ink); color: #e8edf4; padding: 64px 0 56px; }
.hero .kicker {
  color: var(--accent); font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; font-size: .8rem;
}
.hero h1 { color: #fff; font-size: 2.4rem; margin: 12px 0 16px; max-width: 720px; }
.hero p.sub { font-size: 1.15rem; color: #b9c3d2; max-width: 640px; margin: 0 0 28px; }
.hero .badges { margin-top: 22px; color: #8b97a8; font-size: .9rem; }
.hero .badges span { margin-right: 18px; white-space: nowrap; }

/* CTA */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  transition: transform .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-ghost { background: transparent; color: #e8edf4; border: 1.5px solid #44506a; margin-left: 12px; }
.price-note { font-size: .9rem; color: #8b97a8; margin-top: 10px; }

/* Sections */
section { padding: 56px 0; }
section.soft { background: var(--bg-soft); }
.lead { font-size: 1.1rem; max-width: 700px; }

/* Cards dos agentes */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 24px; }
.card {
  background: #fff; border: 1px solid #e3e9f1; border-radius: var(--radius);
  padding: 18px 20px;
}
.card .num { color: var(--accent-dark); font-weight: 700; font-size: .85rem; }
.card h3 { margin: 6px 0 6px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.card.free { border: 2px solid var(--accent); position: relative; }
.card.free::after {
  content: 'GRÁTIS'; position: absolute; top: -12px; right: 14px;
  background: var(--accent); color: var(--ink); font-weight: 800;
  font-size: .75rem; padding: 3px 10px; border-radius: 20px;
}

/* Passos */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 24px; }
.step { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid #e3e9f1; }
.step .n {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ink);
  color: var(--accent); font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin-bottom: 12px; font-size: 1.1rem;
}

/* Oferta */
.offer {
  background: var(--ink); color: #e8edf4; border-radius: 18px;
  padding: 40px 36px; display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: space-between;
}
.offer h2 { color: #fff; }
.offer ul { list-style: none; padding: 0; margin: 14px 0 0; }
.offer li { padding: 5px 0 5px 30px; position: relative; }
.offer li::before { content: '✓'; position: absolute; left: 4px; color: var(--accent); font-weight: 800; }
.price-box { text-align: center; min-width: 240px; }
.price-box .old { color: #8b97a8; text-decoration: line-through; font-size: 1rem; }
.price-box .now { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1.1; }
.price-box .cents { font-size: 1.2rem; }
.price-box .tag { color: var(--accent); font-weight: 600; font-size: .9rem; margin-bottom: 14px; }
.guarantee { font-size: .85rem; color: #8b97a8; margin-top: 12px; max-width: 240px; }

/* FAQ */
details {
  background: #fff; border: 1px solid #e3e9f1; border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 10px;
}
details summary { font-weight: 600; cursor: pointer; color: var(--ink); }
details p { margin: 10px 0 0; color: var(--muted); }

/* Footer */
footer { background: var(--ink); color: #8b97a8; padding: 32px 0; font-size: .9rem; }
footer a { color: #b9c3d2; }

/* Páginas internas (gratis / obrigado) */
.page-narrow { max-width: 680px; margin: 0 auto; padding: 56px 20px; }
.dl-box {
  background: var(--bg-soft); border: 2px dashed var(--accent-dark);
  border-radius: var(--radius); padding: 28px; text-align: center; margin: 28px 0;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.7rem; }
  .btn-ghost { margin-left: 0; margin-top: 10px; }
  .offer { padding: 28px 22px; }
}
