/* ══════════════════════════════════════════════════════
   Página de vendas — variante B (compatível com políticas de anúncios).
   Paleta fria, tipografia sem serifa, linha do tempo e prévia de página.
   Sem vídeo, sem promessas de resultado, sem citar pessoas públicas.
   ══════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg:        #f2f5f4;
    --surface:   #ffffff;
    --ink:       #14201d;
    --ink-soft:  #4d5c58;
    --ink-faint: #7d8a86;
    --line:      #dde5e2;
    --accent:    #2f6b5a;
    --accent-dk: #24523f;
    --accent-bg: #e7f0ec;
    --max:       720px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.62;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.022em;
}

section { padding: 46px 0; }

.kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

section > .wrap > h2 { font-size: 24px; margin-bottom: 10px; }

.sub { color: var(--ink-soft); margin-bottom: 26px; }

p { color: var(--ink-soft); }

/* ── TOPO ── */
.topbar {
    background: var(--accent);
    color: #fff;
    padding: 13px 0;
    font-size: 14px;
}

.topbar .wrap {
    display: flex;
    align-items: center;
    gap: 9px;
}

.topbar svg { width: 19px; height: 19px; flex-shrink: 0; }

.topbar b { font-weight: 700; letter-spacing: -0.01em; }

/* ── HERO ── */
.hero {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 42px 0 40px;
    text-align: center;
}

.hero h1 { font-size: 31px; margin-bottom: 14px; }

.hero .lede {
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 28px;
}

/* Ilustração: livro aberto */
.spread {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 12px 26px rgba(20, 45, 38, 0.13));
}

/* ── FAIXA DE DADOS ── */
.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.facts div {
    padding: 20px 10px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.facts div:last-child { border-right: none; }

.facts b {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.facts span {
    font-size: 12.5px;
    color: var(--ink-faint);
    letter-spacing: 0.01em;
}

/* ── BOTÃO ── */
.cta {
    display: inline-block;
    width: 100%;
    max-width: 380px;
    background: var(--accent);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 100px;
    transition: background 0.15s, transform 0.1s;
}

.cta:hover { background: var(--accent-dk); }
.cta:active { transform: translateY(1px); }

.cta-note {
    font-size: 13px;
    color: var(--ink-faint);
    margin-top: 11px;
}

/* ── LINHA DO TEMPO DOS CAPÍTULOS ── */
.timeline {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--line);
}

.timeline li {
    position: relative;
    padding-bottom: 22px;
}

.timeline li:last-child { padding-bottom: 0; }

.timeline li::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--accent);
}

.timeline li::after {
    content: '';
    position: absolute;
    left: -24px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.timeline h3 { font-size: 16px; margin-bottom: 3px; }

.timeline p { font-size: 15px; }

/* ── PRÉVIA DE PÁGINA ── */
.preview {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px 22px;
    position: relative;
}

.preview-tag {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--accent-bg);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid #cfe0d8;
}

.preview h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.preview .verse {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink);
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    margin: 14px 0;
    line-height: 1.55;
}

.preview .verse cite {
    display: block;
    font-style: normal;
    font-family: inherit;
    font-size: 13px;
    color: var(--ink-faint);
    margin-top: 6px;
}

.preview .ask { font-size: 15px; margin-bottom: 14px; }

.ruled {
    display: grid;
    gap: 13px;
    padding-top: 4px;
}

.ruled span {
    display: block;
    height: 1px;
    background: var(--line);
}

/* ── GRADE DE ÍCONES ── */
.grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 620px) {
    .grid { grid-template-columns: 1fr 1fr; }
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
}

.icon-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}

.icon-round svg { width: 20px; height: 20px; color: var(--accent); }

.card h3 { font-size: 16px; margin-bottom: 5px; }

.card p { font-size: 15px; }

/* ── BLOCO DE HONESTIDADE ── */
.honest {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--ink-faint);
    border-radius: 10px;
    padding: 22px;
}

.honest h3 { font-size: 17px; margin-bottom: 12px; }

.honest ul { list-style: none; display: grid; gap: 10px; }

.honest li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: var(--ink-soft);
}

.honest li::before {
    content: '—';
    color: var(--ink-faint);
    flex-shrink: 0;
}

/* ── PREÇO ── */
.offer {
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}

.offer-head {
    background: var(--accent);
    color: #fff;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.offer-body { padding: 26px 22px; }

.price {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 5px;
}

.price small {
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}

.price-note {
    font-size: 14px;
    color: var(--ink-faint);
    margin-bottom: 22px;
}

.includes {
    list-style: none;
    text-align: left;
    display: grid;
    gap: 10px;
    max-width: 340px;
    margin: 0 auto 24px;
    font-size: 15px;
    color: var(--ink-soft);
}

.includes li { display: flex; gap: 10px; align-items: flex-start; }

.includes svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

/* ── GARANTIA ── */
.guarantee {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--accent-bg);
    border-radius: 12px;
    padding: 20px;
}

.guarantee svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.guarantee h3 { font-size: 16px; margin-bottom: 5px; }

.guarantee p { font-size: 15px; }

/* ── FAQ ── */
.faq { display: grid; gap: 9px; }

.faq details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.faq summary {
    padding: 15px 46px 15px 17px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '+';
    position: absolute;
    right: 17px;
    top: 12px;
    font-size: 21px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}

.faq details[open] summary::after { content: '–'; }

.faq p { padding: 0 17px 16px; font-size: 15px; }

/* ── AVISO LEGAL ── */
.disclaimer {
    font-size: 13.5px;
    line-height: 1.62;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
}

.disclaimer strong { color: var(--ink); }

/* ── RODAPÉ ── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 26px 0 40px;
    font-size: 13px;
    color: var(--ink-faint);
    text-align: center;
}

.site-footer nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 13px;
}

.site-footer a { color: var(--ink-soft); text-decoration: none; }

.site-footer a:hover { text-decoration: underline; }

/* ── TELAS MAIORES ── */
@media (min-width: 620px) {
    .hero h1 { font-size: 38px; }
    section   { padding: 56px 0; }
    .cta      { width: auto; min-width: 340px; }
}
