@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --bg: #080f0a; --panel: #0d1810; --panel-2: #0f1d13; --line: #1c2e20; --line-soft: #16241a;
  --green: #2d6a4f; --green-bright: #52b788; --green-dim: #3a7a5c;
  --orange: #f97316; --amber: #fbbf24; --blue: #5b9bd5; --red: #c94a58;
  --text: #e8f0ea; --text-2: #9fb3a6; --text-3: #6b8273;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* nav */
nav { position: sticky; top: 0; z-index: 50; background: rgba(8,15,10,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); }
.nav-in { max-width: 1080px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Bebas Neue'; font-size: 26px; letter-spacing: .02em; }
.logo .t { color: var(--green-bright); }
.nav-cta { font-size: 13px; font-weight: 600; color: var(--bg); background: var(--green-bright); padding: 9px 18px; border-radius: 10px; text-decoration: none; }
.nav-cta:hover { background: #63c497; }

/* hero */
.hero { padding: 90px 0 70px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(45,106,79,.35), transparent 70%); pointer-events: none; }
.badge-soft { display: inline-block; font-size: 12px; font-weight: 600; color: var(--green-bright); background: rgba(82,183,136,.1); border: 1px solid rgba(82,183,136,.25); padding: 6px 14px; border-radius: 20px; margin-bottom: 24px; position: relative; }
.hero h1 { font-family: 'Bebas Neue'; font-size: clamp(42px,7vw,76px); letter-spacing: .01em; line-height: .98; margin-bottom: 20px; position: relative; }
.hero h1 .hl { color: var(--green-bright); }
.hero .lead { font-size: clamp(16px,2.2vw,20px); color: var(--text-2); max-width: 620px; margin: 0 auto 36px; position: relative; }
.hero .lead b { color: var(--text); font-weight: 600; }

/* email capture */
/* Compensa a nav fixa ao ancorar no formulário (#comecar) via link "Quero acesso". */
#comecar { scroll-margin-top: 96px; }
.capture { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; position: relative; flex-wrap: wrap; justify-content: center; }
.capture input { flex: 1; min-width: 240px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; color: var(--text); font-size: 15px; font-family: inherit; }
.capture input::placeholder { color: var(--text-3); }
.capture input:focus { outline: none; border-color: var(--green-dim); }
.capture input.invalid { border-color: var(--red); }
.capture button { background: var(--green-bright); color: var(--bg); font-weight: 700; font-size: 15px; border: none; border-radius: 12px; padding: 15px 26px; cursor: pointer; white-space: nowrap; font-family: inherit; }
.capture button:hover { background: #63c497; }
.capture button:disabled { opacity: .6; cursor: default; }
.capture-note { font-size: 12.5px; color: var(--text-3); margin-top: 14px; position: relative; }

/* form feedback */
.form-msg { font-size: 14px; margin-top: 14px; position: relative; min-height: 1px; }
.form-msg.ok { color: var(--green-bright); font-weight: 600; }
.form-msg.err { color: #ef6b7a; }

/* sections */
.section { padding: 70px 0; }
.section h2 { font-family: 'Bebas Neue'; font-size: clamp(30px,4.5vw,44px); letter-spacing: .02em; text-align: center; margin-bottom: 14px; line-height: 1.05; }
.section .sec-lead { text-align: center; color: var(--text-2); max-width: 560px; margin: 0 auto 48px; font-size: 16px; }

/* problem */
.problem { background: var(--panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; }
.problem-col h3 { font-family: 'Bebas Neue'; font-size: 22px; letter-spacing: .03em; margin-bottom: 16px; color: var(--text-3); }
.problem-col.sol h3 { color: var(--green-bright); }
.problem-list { list-style: none; }
.problem-list li { padding: 9px 0 9px 28px; position: relative; font-size: 15px; color: var(--text-2); }
.problem-list li::before { position: absolute; left: 0; top: 9px; }
.problem-col.pain li::before { content: "✕"; color: var(--red); }
.problem-col.sol li::before { content: "✓"; color: var(--green-bright); }
.problem-col.sol li { color: var(--text); }

/* features */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.feat { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.feat .ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feat.f1 .ic, .feat.f4 .ic { background: rgba(82,183,136,.14); }
.feat.f2 .ic, .feat.f6 .ic { background: rgba(249,115,22,.14); }
.feat.f3 .ic { background: rgba(251,191,36,.12); }
.feat.f5 .ic { background: rgba(91,155,213,.16); }
.feat h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feat p { font-size: 14.5px; color: var(--text-2); }

/* who */
.who-tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.who-tag { background: var(--panel); border: 1px solid var(--line); border-radius: 30px; padding: 12px 24px; font-size: 15px; font-weight: 600; }
.who-tag .e { margin-right: 8px; }

/* final cta */
.final { padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(45,106,79,.3), transparent 70%); pointer-events: none; }
.final h2, .final p { position: relative; }
.final p { color: var(--text-2); max-width: 520px; margin: 0 auto 32px; }

footer { border-top: 1px solid var(--line-soft); padding: 32px 0; text-align: center; color: var(--text-3); font-size: 13px; }
footer .logo { font-size: 20px; margin-bottom: 8px; }
footer a { color: var(--green-bright); text-decoration: none; }
footer .foot-links { margin-top: 10px; }
footer .foot-links a { margin: 0 8px; }

/* cookie consent banner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100; max-width: 720px; margin: 0 auto; background: var(--panel-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { flex: 1; min-width: 240px; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.cookie-banner p a { color: var(--green-bright); text-decoration: none; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { font-family: inherit; font-size: 13px; font-weight: 600; border-radius: 10px; padding: 9px 18px; cursor: pointer; border: 1px solid var(--line); }
.cookie-actions .accept { background: var(--green-bright); color: var(--bg); border-color: var(--green-bright); }
.cookie-actions .accept:hover { background: #63c497; }
.cookie-actions .decline { background: transparent; color: var(--text-2); }
.cookie-actions .decline:hover { color: var(--text); border-color: var(--green-dim); }

@media (max-width: 640px) {
  .problem-grid { grid-template-columns: 1fr; gap: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
}
