/* Método Primeiras Letras — estilos (mobile first, sem framework) */
@font-face { font-family: "Nunito"; src: url(/assets/fonts/nunito-latin-wght-normal.woff2) format("woff2"); font-weight: 200 1000; font-style: normal; font-display: swap; }
@font-face { font-family: "Fredoka"; src: url(/assets/fonts/fredoka-latin-wght-normal.woff2) format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
:root {
  --blue: #2b59c3; --blue-d: #1f458f; --orange: #ff7a00; --orange-d: #e06a00;
  --yellow: #ffd166; --green: #1e9e6a; --red: #d64545;
  --ink: #1f2937; --muted: #5b6472; --line: #e6e8ee; --bg: #fffdf7; --card: #ffffff;
  --radius: 16px; --max: 680px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.55; font-size: 17px; -webkit-font-smoothing: antialiased; }
h1, h2, h3, .brand, .btn, .price .val { font-family: "Fredoka", "Nunito", system-ui, sans-serif; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(1.7rem, 6vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 5vw, 1.9rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 18px; }
.section { padding: 40px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .92rem; }

/* header / footer */
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--blue); text-decoration: none; font-size: 1.05rem; }
.brand .dot { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--orange), var(--yellow)); display: grid; place-items: center; color: #fff; font-size: 15px; }
footer { padding: 28px 0 110px; color: var(--muted); font-size: .88rem; border-top: 1px solid var(--line); }
footer nav { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 12px; }
footer a { color: var(--muted); }

/* botões */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px 22px; border-radius: 14px; font-weight: 800; font-size: 1.1rem; text-decoration: none; border: 0; cursor: pointer; transition: transform .08s ease, background .15s; }
.btn:active { transform: scale(.985); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(255, 122, 0, .28); }
.btn-primary:hover { background: var(--orange-d); }
.btn-secondary { background: var(--blue); color: #fff; }
.btn-secondary:hover { background: var(--blue-d); }
.btn-ghost { background: #fff; color: var(--blue); border: 2px solid var(--blue); }
.btn-note { display: block; text-align: center; font-size: .85rem; color: var(--muted); margin-top: 8px; }

/* hero */
.hero { padding: 16px 0 34px; }
.eyebrow { display: inline-block; background: #eaf0ff; color: var(--blue); font-weight: 700; font-size: .82rem; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.hero h1 strong { color: var(--blue); }
.lead { font-size: 1.12rem; color: #374151; }
.mockup { margin: 22px auto; width: min(320px, 82%); }
.price-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: 0 10px 30px rgba(31, 41, 55, .06); }
.price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 4px; }
.price .cur { font-size: 1.1rem; font-weight: 700; color: var(--muted); }
.price .val { font-size: 2.6rem; font-weight: 900; color: var(--blue); letter-spacing: -.02em; }
.price-note { text-align: center; color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.trust div { font-size: .78rem; color: var(--muted); text-align: center; line-height: 1.3; }
.trust b { display: block; color: var(--ink); font-size: .84rem; }

/* listas e cards */
.cards { display: grid; gap: 12px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.card h3 { margin-bottom: 4px; }
.card .n { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: #eaf0ff; color: var(--blue); font-weight: 900; margin-bottom: 10px; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checks li { padding-left: 32px; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 8px; background: #e6f7ef; color: var(--green); font-weight: 900; display: grid; place-items: center; font-size: .9rem; }
.steps { counter-reset: s; display: grid; gap: 14px; }
.steps .card { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; }
.steps .card::before { counter-increment: s; content: counter(s); width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); color: var(--ink); font-weight: 900; font-size: 1.2rem; display: grid; place-items: center; }
.guarantee { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: center; background: #e6f7ef; border: 1px solid #c8ead9; border-radius: var(--radius); padding: 18px; }
.guarantee svg { width: 72px; height: 72px; }
details { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 0 16px; margin-bottom: 10px; }
summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; position: relative; padding-right: 28px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 12px; color: var(--blue); font-size: 1.3rem; }
details[open] summary::after { content: "–"; }
details p { padding-bottom: 14px; }

/* barra fixa de CTA (mobile) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 12px; z-index: 20; }
.sticky-cta .p { font-weight: 900; color: var(--blue); font-size: 1.25rem; white-space: nowrap; }
.sticky-cta .btn { padding: 13px 16px; font-size: 1rem; }
@media (min-width: 720px) { .sticky-cta { display: none; } footer { padding-bottom: 28px; } }

/* páginas de status / acesso / conteúdo */
.status { padding: 36px 0; text-align: center; }
.status .icon { width: 84px; height: 84px; margin: 0 auto 16px; }
.spinner { width: 44px; height: 44px; border: 4px solid #e6e8ee; border-top-color: var(--blue); border-radius: 50%; animation: spin .9s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.form { display: grid; gap: 10px; margin-top: 14px; }
.form input { width: 100%; padding: 14px; border: 1.5px solid #cfd4dc; border-radius: 12px; font-size: 1rem; }
.form input:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.msg { min-height: 1.4em; font-size: .95rem; }
.files { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; text-align: left; }
.file { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; text-decoration: none; color: var(--ink); }
.file:hover { border-color: var(--blue); }
.file-n { width: 36px; height: 36px; border-radius: 10px; background: #eaf0ff; color: var(--blue); font-weight: 900; display: grid; place-items: center; }
.file-t strong { display: block; }
.file-t small { color: var(--muted); }
.file-dl { color: var(--blue); font-weight: 800; font-size: .9rem; white-space: nowrap; }
.legal h2 { font-size: 1.25rem; margin-top: 1.6em; }
.legal { padding: 24px 0 40px; }
.note { background: #fff8e6; border: 1px solid #ffe4a3; border-radius: 12px; padding: 12px 14px; font-size: .95rem; }


/* ── banner de cookies ── */
.ck-banner { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; background: #fff; border: 1px solid #e7e9f0; border-radius: 18px; box-shadow: 0 24px 60px rgba(19,35,91,.16); padding: 18px; max-width: 560px; margin: 0 auto; font-size: .92rem; }
.ck-banner h2 { font-size: 1.1rem; margin-bottom: 6px; }
.ck-banner p { color: #56617a; }
.ck-banner .ck-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ck-banner button { font: inherit; font-weight: 800; border-radius: 12px; padding: 10px 14px; border: 1px solid #e7e9f0; background: #fff; color: #13235b; cursor: pointer; }
.ck-banner button.ck-all { background: #13235b; color: #fff; border-color: #13235b; }
.ck-banner label { display: flex; gap: 10px; align-items: flex-start; margin-top: 10px; }
.ck-banner label small { display: block; color: #56617a; }

