/* ================================================================
   Guia WA — theme.css
   Port dos estilos Tailwind para CSS puro. Paleta escura editorial
   + verde WhatsApp. Fontes: Space Grotesk (display) e Inter (body).
   ================================================================ */

:root {
    --background: #1b2622;
    --foreground: #f4f2ea;
    --ink: #131b18;
    --ink-soft: #212b27;
    --surface: #202a26;
    --surface-raised: #26312d;
    --hairline: rgba(255, 255, 255, 0.08);

    --ember: #25d366;      /* WhatsApp green */
    --ember-soft: #4ce085;
    --muted-foreground: #a8b3ac;

    --radius: 0.75rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.5rem;

    --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;

    --max: 1240px;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    letter-spacing: -0.011em;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--ember); color: var(--ink); }

/* --------- utility --------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.display {
    font-family: var(--font-display);
    letter-spacing: -0.035em;
    font-weight: 500;
    line-height: 1;
}
.display-tight { letter-spacing: -0.04em; line-height: 0.95; }

.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.line-through { text-decoration: line-through; }
.center { text-align: center; }

.grain {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 3px 3px, 7px 7px;
    background-position: 0 0, 1px 2px;
    opacity: 0.5; pointer-events: none;
}

/* --------- section base --------- */
.section { padding: 5rem 0; position: relative; border-top: 1px solid var(--hairline); }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section--sm { padding: 4rem 0; }
.section--ink { background: var(--ink); }
.section--light {
    --background: #f3f1ea;
    --foreground: #1a2320;
    --ink: #f3f1ea;
    --surface: #ebe8dd;
    --surface-raised: #ffffff;
    --hairline: rgba(20, 30, 25, 0.1);
    --muted-foreground: #5a6660;
    --ember: #16a04a;
    background: var(--background); color: var(--foreground);
}

.section__head { max-width: 820px; margin: 0 auto; text-align: center; }
.section__head--sub { margin-top: 5rem; }
.section__title { margin: 1.5rem 0 0; font-size: clamp(2rem, 4vw, 3.25rem); }
.section__subtitle { margin: 1.5rem 0 0; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.section__lead { margin: 1.5rem auto 0; max-width: 640px; color: var(--muted-foreground); font-size: 1rem; }
.section__cta { margin-top: 2.5rem; display: flex; justify-content: center; }

.eyebrow { font-size: 0.75rem; letter-spacing: 0.22em; color: var(--ember); text-transform: uppercase; }
.eyebrow--muted { color: var(--muted-foreground); letter-spacing: 0.2em; }

/* --------- grid --------- */
.grid { display: grid; gap: 4rem; }
.grid--12 { grid-template-columns: repeat(12, 1fr); }
@media (max-width: 767px) { .grid--12 { grid-template-columns: 1fr; } }
.col-md-4 { grid-column: span 4; } .col-md-5 { grid-column: span 5; }
.col-md-7 { grid-column: span 7; } .col-md-8 { grid-column: span 8; }
@media (max-width: 767px) { .col-md-4, .col-md-5, .col-md-7, .col-md-8 { grid-column: 1 / -1; } }

/* --------- topmark --------- */
.topmark { position: absolute; inset: 0 0 auto 0; z-index: 20; }
.topmark__inner { display: flex; justify-content: center; padding-top: 1.5rem; }
.topmark__logo { height: 4rem; width: auto; }
@media (min-width: 768px) { .topmark__logo { height: 5rem; } }

/* --------- hero --------- */
.hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 10rem 0 7rem; } }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__glow {
    position: absolute; top: -8rem; left: 50%; height: 640px; width: 1100px;
    transform: translateX(-50%); border-radius: 9999px; opacity: 0.25; filter: blur(80px);
    background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.45), transparent 60%);
}
.hero__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.hero__title { margin: 1.5rem 0 0; font-size: clamp(2.125rem, 5vw, 3.875rem); text-wrap: balance; }
.hero__lead { max-width: 680px; margin: 1.75rem auto 0; color: var(--muted-foreground); font-size: 1.05rem; text-wrap: pretty; }
.hero__bullets {
    list-style: none; padding: 0; margin: 2.5rem auto 0; max-width: 900px;
    display: grid; gap: 0.75rem; text-align: left;
}
@media (min-width: 640px) { .hero__bullets { grid-template-columns: repeat(3, 1fr); } }
.hero__bullets li {
    display: flex; gap: 0.75rem; align-items: flex-start;
    background: rgba(32, 42, 38, 0.6); border-radius: 1rem;
    padding: 0.75rem 1rem; font-size: 0.85rem; line-height: 1.35;
}
.check::before { content: "✓"; color: var(--ember); font-weight: 700; }
.hero__cta { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1px solid var(--hairline); background: rgba(32, 42, 38, 0.6);
    border-radius: 9999px; padding: 0.375rem 1rem; font-size: 0.75rem;
    letter-spacing: 0.02em; color: var(--muted-foreground);
}
.pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); }

/* --------- button --------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    border-radius: 9999px; padding: 1rem 1.75rem; font-size: 0.9375rem;
    font-weight: 600; text-decoration: none; transition: all .3s ease; border: 0; cursor: pointer;
}
.btn--primary { background: var(--ember); color: var(--ink); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 20px 60px -20px rgba(37, 211, 102, 0.55); }
.btn__arrow { transition: transform .3s; }
.btn:hover .btn__arrow { transform: translateX(2px); }

.cta-meta { display: flex; align-items: center; gap: 1.5rem; font-size: 0.78rem; color: var(--muted-foreground); }
.cta-meta__sep { width: 1px; height: 12px; background: var(--hairline); }
.cta-meta--right { text-align: right; margin-top: 1rem; }
.center-meta { display: flex; justify-content: center; margin-top: 4rem; }

/* --------- prose / callout --------- */
.prose { display: flex; flex-direction: column; gap: 1.5rem; font-size: 1.03rem; line-height: 1.75; color: rgba(244, 242, 234, 0.8); }
.section--light .prose { color: rgba(26, 35, 32, 0.8); }
.section--light .prose strong { color: var(--foreground); }
.callout { border-left: 2px solid var(--ember); background: rgba(32, 42, 38, 0.7); padding: 1.5rem; border-radius: 1rem; }
.section--light .callout { background: rgba(22, 160, 74, 0.06); }
.callout p { margin: 0; color: var(--foreground); }

/* --------- proofs --------- */
.proofs { margin-top: 4rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .proofs { grid-template-columns: repeat(3, 1fr); } }
.proof {
    background: rgba(38, 49, 45, 0.7); border-radius: 1.5rem; padding: 1.75rem;
    border: 1px solid var(--hairline); display: flex; flex-direction: column;
    transition: all .5s ease;
}
.proof:hover { transform: translateY(-4px); border-color: rgba(37, 211, 102, 0.4); }
.proof__icon { color: var(--ember); font-size: 1.5rem; }
.proof__quote { margin: 1.25rem 0 0; font-size: 0.9rem; line-height: 1.6; color: rgba(244, 242, 234, 0.9); }
.proof__foot { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--hairline); display: flex; gap: 1rem; align-items: center; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.proof__name { font-size: 0.85rem; font-weight: 500; }
.proof__tag { font-size: 0.72rem; color: var(--ember); margin-top: 0.15rem; }

/* --------- CTA MID --------- */
.cta-mid { isolate: isolate; overflow: hidden; }
.cta-mid__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; z-index: -2; }
.cta-mid__overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to bottom, rgba(27, 38, 34, 0.7), rgba(27, 38, 34, 0.6), rgba(27, 38, 34, 0.95));
}
.cta-mid__title { color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); }

/* --------- método --------- */
.blocks { margin-top: 4rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .blocks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blocks { grid-template-columns: repeat(3, 1fr); } }
.block {
    background: rgba(38, 49, 45, 0.6); border-radius: 1.5rem; padding: 2rem;
    border: 1px solid var(--hairline); transition: all .5s ease;
}
.block:hover { transform: translateY(-4px); background: rgba(38, 49, 45, 1); border-color: rgba(37, 211, 102, 0.4); }
.block__head { display: flex; align-items: center; justify-content: space-between; }
.block__icon {
    width: 3rem; height: 3rem; border-radius: 1rem; display: grid; place-items: center;
    background: rgba(37, 211, 102, 0.15); color: var(--ember);
    border: 1px solid rgba(37, 211, 102, 0.25); font-size: 1.15rem;
}
.block__n { font-family: ui-monospace, monospace; font-size: 0.7rem; letter-spacing: 0.22em; color: var(--muted-foreground); }
.block__title { margin: 1.5rem 0 0; font-size: 1.5rem; }
.block__desc { margin: 0.75rem 0 0; font-size: 0.9rem; line-height: 1.6; color: var(--muted-foreground); }
.block__alert { margin-top: 1.5rem; color: var(--ember); font-size: 0.75rem; display: flex; gap: 0.5rem; align-items: center; }

.method-note {
    margin-top: 4rem; background: rgba(38, 49, 45, 0.6); border-radius: 1.5rem;
    padding: 2rem; border: 1px solid var(--hairline);
    display: grid; gap: 2.5rem;
}
@media (min-width: 768px) { .method-note { grid-template-columns: 1fr 1fr; padding: 3rem; } }
.method-note__title { font-size: clamp(1.6rem, 2.5vw, 2.125rem); }
.method-note p { margin: 0; color: var(--muted-foreground); font-size: 0.97rem; line-height: 1.6; }

/* --------- pra quem --------- */
.paraquem { margin-top: 4rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .paraquem { grid-template-columns: 1fr 1fr; } }
.paraquem__col { border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--hairline); }
@media (min-width: 768px) { .paraquem__col { padding: 2.5rem; } }
.paraquem__col--yes { background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(32, 42, 38, 0.6) 60%, rgba(32, 42, 38, 0.3)); border-color: rgba(37, 211, 102, 0.2); }
.paraquem__col--no  { background: linear-gradient(135deg, rgba(168, 179, 172, 0.15), rgba(32, 42, 38, 0.4) 60%, rgba(32, 42, 38, 0.2)); }
.paraquem ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 1rem; }
.paraquem li { display: flex; gap: 0.75rem; font-size: 0.97rem; line-height: 1.6; }
.paraquem__col--no li { color: var(--muted-foreground); }
.tick {
    flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}
.tick--yes { background: rgba(37, 211, 102, 0.15); color: var(--ember); border: 1px solid rgba(37, 211, 102, 0.3); }
.tick--no  { background: rgba(168, 179, 172, 0.1); color: var(--muted-foreground); border: 1px solid rgba(168, 179, 172, 0.2); }

/* --------- entregáveis --------- */
.deliverables { margin-top: 4rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .deliverables { grid-template-columns: repeat(3, 1fr); } }
.deliverable { background: rgba(38, 49, 45, 0.7); border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--hairline); display: flex; flex-direction: column; }
.deliverable__title { margin: 1.5rem 0 0; font-size: 1.375rem; }
.deliverable__desc { margin: 0.75rem 0 0; flex: 1; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; }
.deliverable__price { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--hairline); font-family: ui-monospace, monospace; font-size: 0.78rem; color: var(--ember); }

.bonuses { margin-top: 3rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .bonuses { grid-template-columns: repeat(3, 1fr); } }
.bonus {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), transparent);
    border-radius: 1.5rem; padding: 1.75rem; border: 1px solid rgba(37, 211, 102, 0.2);
    display: flex; flex-direction: column;
}
.bonus__head { display: flex; justify-content: space-between; }
.bonus__n { font-family: ui-monospace, monospace; font-size: 0.7rem; letter-spacing: 0.22em; color: var(--ember); }
.bonus__price { font-family: ui-monospace, monospace; font-size: 0.7rem; color: var(--muted-foreground); }
.bonus__title { margin: 1.5rem 0 0; font-size: 1.25rem; line-height: 1.15; }
.bonus__desc { margin: 0.75rem 0 0; color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }

/* --------- proofs 2 --------- */
.proofs2 { margin-top: 4rem; display: flex; flex-direction: column; gap: 1rem; }
.proof2 {
    display: grid; gap: 1.5rem; background: var(--surface-raised);
    border-radius: 1.5rem; padding: 2rem; border: 1px solid var(--hairline);
}
@media (min-width: 768px) { .proof2 { grid-template-columns: 1fr 2fr 1fr; align-items: center; padding: 2.5rem; } }
.proof2__role { font-size: 0.95rem; font-weight: 500; margin-top: 0.5rem; }
.proof2__text { margin: 0.5rem 0 0; font-size: 0.9rem; line-height: 1.6; color: rgba(26, 35, 32, 0.8); }
.proof2__alert { background: rgba(22, 160, 74, 0.1); border: 1px solid rgba(22, 160, 74, 0.2); border-radius: 1rem; padding: 1rem; font-size: 0.82rem; color: rgba(26, 35, 32, 0.8); }
.proof2__alert p { margin: 0.5rem 0 0; line-height: 1.35; }

/* --------- criador --------- */
.creator { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .creator { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.creator__photo { position: relative; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--hairline); }
.creator__photo img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.creator__caption { position: absolute; inset: auto 0 0 0; padding: 1.5rem; background: linear-gradient(to top, var(--ink), transparent); }
.creator__name { font-size: 1.125rem; font-weight: 500; }
.creator__role { margin-top: 0.25rem; font-size: 0.78rem; color: var(--muted-foreground); }
.creator__body .section__title { text-align: left; }
.creator__stats {
    margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--hairline);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.creator__stats > div { display: flex; flex-direction: column; }
.creator__stat { font-size: 1.5rem; color: var(--ember); }
@media (min-width: 768px) { .creator__stat { font-size: 1.875rem; } }
.creator__stats span:last-child { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.15; }

/* --------- suporte / garantia / cards --------- */
.card { max-width: 820px; margin: 0 auto; background: var(--surface); border-radius: 1.5rem; padding: 2.5rem; border: 1px solid var(--hairline); }
@media (min-width: 768px) { .card { padding: 3.5rem; } }
.card__title { margin: 1rem 0 0; font-size: clamp(1.75rem, 3vw, 2.375rem); }
.card p { margin: 1.25rem 0 0; color: var(--muted-foreground); font-size: 1rem; line-height: 1.6; }
.section--light .card p strong { color: var(--foreground); }

.garantia { max-width: 1080px; margin: 0 auto; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .garantia { grid-template-columns: auto 1fr; gap: 3rem; } }
.garantia__badge { height: 12rem; width: 12rem; object-fit: contain; }
@media (min-width: 768px) { .garantia__badge { height: 18rem; width: 18rem; } }
.garantia p { margin: 1.25rem 0 0; color: var(--muted-foreground); font-size: 1rem; line-height: 1.6; }
.garantia p strong { color: var(--foreground); }

/* --------- oferta / stack --------- */
.oferta { overflow: hidden; }
.oferta__glow {
    position: absolute; inset: 0; z-index: -1; opacity: 0.4; pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(37, 211, 102, 0.35), transparent 60%);
}
.stack {
    max-width: 920px; margin: 3.5rem auto 0; padding: 0.5rem;
    background: rgba(38, 49, 45, 0.8); border-radius: 1.5rem; border: 1px solid var(--hairline);
}
.stack > .stack__list, .stack > .stack__deal { }
.stack__list { list-style: none; margin: 0; padding: 2rem; background: rgba(19, 27, 24, 0.6); border-radius: 1.25rem; }
@media (min-width: 768px) { .stack__list { padding: 3rem; } }
.stack__list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--hairline); }
.stack__list li:last-child { border-bottom: 0; }
.stack__list li span:first-child { display: inline-flex; align-items: center; gap: 0.75rem; color: rgba(244, 242, 234, 0.9); }
.stack__list li span.mono { font-size: 0.82rem; color: var(--muted-foreground); }
.stack__total { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.stack__total span:first-child { font-weight: 500; }

.stack__deal {
    padding: 2rem; display: grid; gap: 2rem; align-items: end;
    border-top: 1px solid var(--hairline); background: rgba(19, 27, 24, 0.6);
    border-radius: 0 0 1.25rem 1.25rem; margin-top: -0.5rem;
}
@media (min-width: 768px) { .stack__deal { grid-template-columns: 1fr 1fr; padding: 3rem; } }
.stack__price { margin-top: 0.75rem; font-size: clamp(3.25rem, 6vw, 4.5rem); }
.stack__method { margin-top: 0.25rem; font-size: 0.85rem; color: var(--muted-foreground); }
.stack__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
@media (min-width: 768px) { .stack__cta { align-items: flex-end; } }
.oferta__terms { max-width: 720px; margin: 2rem auto 0; text-align: center; font-size: 0.78rem; color: var(--muted-foreground); }

/* --------- FAQ --------- */
.faq { list-style: none; padding: 0; margin: 0; }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
    width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
    display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0;
    font-size: 1.05rem; font-weight: 500; color: inherit; transition: color .2s;
}
.faq__q:hover { color: var(--ember); }
.faq__chev { color: var(--muted-foreground); transition: transform .3s; font-size: 0.8rem; }
.faq__item.is-open .faq__chev { transform: rotate(180deg); color: var(--ember); }
.faq__a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .5s, opacity .5s; overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; opacity: 1; }
.faq__a > p { min-height: 0; margin: 0; padding: 0 2.5rem 1.75rem 0; font-size: 0.97rem; line-height: 1.6; color: var(--muted-foreground); }

/* --------- final CTA --------- */
.finalcta { overflow: hidden; }
.finalcta__glow {
    position: absolute; inset: 0; z-index: -1; opacity: 0.4; pointer-events: none;
    background: radial-gradient(ellipse at 50% 100%, rgba(37, 211, 102, 0.35), transparent 60%);
}
.finalcta__title { font-size: clamp(2.5rem, 6vw, 4rem); max-width: 820px; margin: 0 auto; }
.finalcta__lead { max-width: 620px; margin: 1.75rem auto 0; color: var(--muted-foreground); font-size: 1.05rem; }
.finalcta__meta { margin-top: 1.5rem; font-size: 0.78rem; color: var(--muted-foreground); text-align: center; }

/* --------- footer --------- */
.sitefooter { padding: 3rem 0; border-top: 1px solid var(--hairline); }
.sitefooter__inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .sitefooter__inner { flex-direction: row; } }
.sitefooter__brand { letter-spacing: 0.22em; text-transform: uppercase; color: var(--ember); }

/* --------- animation --------- */
.fade-up { animation: fadeUp 800ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   Correções v1.1 — assets e ícones locais
   ================================================================ */
.topmark__logo { display: block; width: min(260px, 62vw); height: auto; }
.topmark__logo img { width: 100%; height: auto; object-fit: contain; }

.icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; flex: 0 0 auto; }
.icon svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.proof__icon .icon { font-size: 1.5rem; }
.block__icon .icon { font-size: 1.35rem; }
.block__alert .icon { font-size: 0.95rem; }
.proof2__alert { display: flex; align-items: flex-start; gap: 0.75rem; }
.proof2__alert .icon { color: var(--ember); font-size: 1rem; margin-top: 0.1rem; }
.proof2__alert p { margin: 0; }

.cta-mid { min-height: 520px; display: flex; align-items: center; }
.cta-mid__bg { object-position: center 52%; }

.creator__photo img { height: 100%; aspect-ratio: 4/5; object-position: center top; }
.creator__caption { color: #f4f2ea; }

.garantia__badge { border-radius: 50%; }

/* Cards das seções claras precisam herdar a paleta clara, não os tons escuros. */
.section--light .paraquem__col--yes {
    background: linear-gradient(135deg, rgba(22,160,74,.09), rgba(255,255,255,.72));
}
.section--light .paraquem__col--no {
    background: linear-gradient(135deg, rgba(90,102,96,.08), rgba(255,255,255,.62));
}
.section--light .paraquem__col,
.section--light .proof2,
.section--light .card {
    color: var(--foreground);
}

@media (max-width: 767px) {
    .cta-mid { min-height: 440px; }
    .creator__stats { grid-template-columns: 1fr; }
    .creator__stats > div { padding-bottom: 1rem; border-bottom: 1px solid var(--hairline); }
    .creator__stats > div:last-child { border-bottom: 0; }
}

/* ================================================================
   Correções v1.2 — fidelidade visual ao Lovable e isolamento do WP
   ================================================================ */

/* O tema é uma landing page dedicada. Esta camada final impede que regras
   globais do WordPress, Elementor ou plugins alterem tipografia e cores. */
html body.wp-theme-guia-wa,
html body.wp-theme-guia-wa main.site {
    background: oklch(0.16 0.015 160) !important;
    color: oklch(0.96 0.008 100) !important;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    letter-spacing: -0.011em !important;
}

html body.wp-theme-guia-wa h1,
html body.wp-theme-guia-wa h2,
html body.wp-theme-guia-wa h3,
html body.wp-theme-guia-wa h4,
html body.wp-theme-guia-wa h5,
html body.wp-theme-guia-wa h6,
html body.wp-theme-guia-wa p {
    padding: 0 !important;
}

html body.wp-theme-guia-wa .display {
    font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1 !important;
    color: inherit !important;
    text-wrap: balance;
}

html body.wp-theme-guia-wa .display-tight {
    letter-spacing: -0.04em !important;
    line-height: 0.95 !important;
}

/* HERO: replica as medidas do Lovable e neutraliza títulos globais do WP. */
html body.wp-theme-guia-wa .hero {
    padding-top: 8rem !important;
    padding-bottom: 5rem !important;
}
html body.wp-theme-guia-wa .hero__inner {
    width: 100% !important;
    max-width: 880px !important;
    margin-inline: auto !important;
    text-align: center !important;
}
html body.wp-theme-guia-wa .hero__title {
    max-width: 880px !important;
    margin: 1.5rem auto 0 !important;
    font-size: clamp(34px, 4.3056vw, 62px) !important;
    font-weight: 500 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    color: oklch(0.96 0.008 100) !important;
    text-wrap: balance !important;
}
html body.wp-theme-guia-wa .hero__lead {
    max-width: 680px !important;
    margin: 1.75rem auto 0 !important;
    font-size: 17px !important;
    line-height: 1.625 !important;
    color: oklch(0.72 0.012 140) !important;
    text-wrap: pretty;
}
html body.wp-theme-guia-wa .hero__bullets {
    max-width: 900px !important;
    margin-top: 2.5rem !important;
}
html body.wp-theme-guia-wa .hero__bullets li {
    padding: 0.75rem 1rem !important;
    font-size: 13.5px !important;
    line-height: 1.375 !important;
    color: rgb(244 242 234 / 85%) !important;
}

/* CTA: cor exata da versão Lovable. */
html body.wp-theme-guia-wa .btn,
html body.wp-theme-guia-wa .btn--primary {
    min-height: 56px !important;
    padding: 1rem 1.75rem !important;
    border: 0 !important;
    border-radius: 9999px !important;
    background: oklch(0.74 0.17 152) !important;
    color: oklch(0.12 0.012 160) !important;
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    box-shadow: none !important;
}
html body.wp-theme-guia-wa .btn:hover {
    background: oklch(0.74 0.17 152) !important;
    color: oklch(0.12 0.012 160) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 20px 60px -20px rgb(37 211 102 / 55%) !important;
}

/* SEÇÕES CLARAS: fundo, títulos e textos com contraste correto. */
html body.wp-theme-guia-wa .section--light {
    --background: oklch(0.97 0.006 140);
    --foreground: oklch(0.16 0.015 160);
    --surface: oklch(0.94 0.008 140);
    --surface-raised: oklch(0.985 0.005 140);
    --hairline: oklch(0.16 0.015 160 / 10%);
    --muted-foreground: oklch(0.45 0.012 150);
    --ember: oklch(0.55 0.16 152);
    background-color: oklch(0.97 0.006 140) !important;
    color: oklch(0.16 0.015 160) !important;
}
html body.wp-theme-guia-wa .section--light h1,
html body.wp-theme-guia-wa .section--light h2,
html body.wp-theme-guia-wa .section--light h3,
html body.wp-theme-guia-wa .section--light h4,
html body.wp-theme-guia-wa .section--light h5,
html body.wp-theme-guia-wa .section--light h6,
html body.wp-theme-guia-wa .section--light .display,
html body.wp-theme-guia-wa .section--light .section__title,
html body.wp-theme-guia-wa .section--light .section__subtitle,
html body.wp-theme-guia-wa .section--light .card__title {
    color: oklch(0.16 0.015 160) !important;
}
html body.wp-theme-guia-wa .section--light p,
html body.wp-theme-guia-wa .section--light li,
html body.wp-theme-guia-wa .section--light .prose,
html body.wp-theme-guia-wa .section--light .section__lead {
    color: rgb(26 35 32 / 80%) !important;
}
html body.wp-theme-guia-wa .section--light strong {
    color: oklch(0.16 0.015 160) !important;
}
html body.wp-theme-guia-wa .section--light .eyebrow {
    color: oklch(0.55 0.16 152) !important;
}
html body.wp-theme-guia-wa .section--light .callout {
    background: oklch(0.94 0.008 140 / 70%) !important;
    border-left-color: oklch(0.55 0.16 152) !important;
}
html body.wp-theme-guia-wa .section--light .callout p {
    color: oklch(0.16 0.015 160) !important;
}

/* Headline e respiro das seções. */
html body.wp-theme-guia-wa .section__head {
    max-width: 820px !important;
}
html body.wp-theme-guia-wa .section__title {
    margin-top: 1.5rem !important;
    font-size: clamp(34px, 3.75vw, 54px) !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
    text-wrap: balance !important;
}
html body.wp-theme-guia-wa .section--light .grid--12 .section__title {
    font-size: clamp(34px, 3.611vw, 52px) !important;
    line-height: 1 !important;
}
html body.wp-theme-guia-wa .prose p {
    margin: 0 0 1.5rem !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
}

/* Seções escuras continuam claras, sem herdar a cor das dobras brancas. */
html body.wp-theme-guia-wa .section--ink,
html body.wp-theme-guia-wa .cta-mid,
html body.wp-theme-guia-wa .finalcta {
    color: oklch(0.96 0.008 100) !important;
}
html body.wp-theme-guia-wa .section--ink .display,
html body.wp-theme-guia-wa .section--ink h1,
html body.wp-theme-guia-wa .section--ink h2,
html body.wp-theme-guia-wa .section--ink h3,
html body.wp-theme-guia-wa .section--ink h4,
html body.wp-theme-guia-wa .cta-mid .display,
html body.wp-theme-guia-wa .finalcta .display {
    color: oklch(0.96 0.008 100) !important;
}

/* FAQ: proporções, contraste e ícone iguais ao componente original. */
html body.wp-theme-guia-wa .faq {
    margin: 0 !important;
    padding: 0 !important;
}
html body.wp-theme-guia-wa .faq__item {
    border-bottom: 1px solid oklch(0.16 0.015 160 / 10%) !important;
}
html body.wp-theme-guia-wa .faq__q {
    width: 100% !important;
    min-height: 72px !important;
    padding: 1.5rem 0 !important;
    gap: 1.5rem !important;
    color: oklch(0.16 0.015 160) !important;
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}
html body.wp-theme-guia-wa .faq__q:hover {
    color: oklch(0.55 0.16 152) !important;
}
html body.wp-theme-guia-wa .faq__chev {
    width: 20px !important;
    height: 20px !important;
    margin-top: 0.25rem !important;
    color: oklch(0.45 0.012 150) !important;
}
html body.wp-theme-guia-wa .faq__chev .icon,
html body.wp-theme-guia-wa .faq__chev svg {
    width: 20px !important;
    height: 20px !important;
}
html body.wp-theme-guia-wa .faq__item.is-open .faq__chev {
    color: oklch(0.55 0.16 152) !important;
}
html body.wp-theme-guia-wa .faq__a > p {
    padding: 0 2.5rem 1.75rem 0 !important;
    font-size: 15.5px !important;
    line-height: 1.625 !important;
    color: oklch(0.45 0.012 150) !important;
}

/* Mantém títulos claros legíveis no mobile e reduz congestionamento. */
@media (min-width: 768px) {
    html body.wp-theme-guia-wa .hero {
        padding-top: 10rem !important;
        padding-bottom: 7rem !important;
    }
}
@media (max-width: 767px) {
    html body.wp-theme-guia-wa .hero__title {
        font-size: clamp(34px, 10.7vw, 46px) !important;
        line-height: 0.98 !important;
    }
    html body.wp-theme-guia-wa .hero__lead {
        font-size: 16px !important;
    }
    html body.wp-theme-guia-wa .section__title,
    html body.wp-theme-guia-wa .section--light .grid--12 .section__title {
        font-size: 34px !important;
        line-height: 1.02 !important;
    }
    html body.wp-theme-guia-wa .faq__q {
        font-size: 16.5px !important;
    }
}


/* ================================================================
   Correções v1.3 — reset de interferências, tipografia e ícones
   ================================================================ */

/* Alguns plugins aplicam text-transform e famílias globais em headings. */
html body.wp-theme-guia-wa main.site .display,
html body.wp-theme-guia-wa main.site .hero__title,
html body.wp-theme-guia-wa main.site .section__title,
html body.wp-theme-guia-wa main.site .section__subtitle,
html body.wp-theme-guia-wa main.site .block__title,
html body.wp-theme-guia-wa main.site .deliverable__title,
html body.wp-theme-guia-wa main.site .bonus__title,
html body.wp-theme-guia-wa main.site .method-note__title,
html body.wp-theme-guia-wa main.site .card__title,
html body.wp-theme-guia-wa main.site .finalcta__title {
    font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif !important;
    font-style: normal !important;
    font-stretch: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
}

/* Mantém uppercase somente nos micro-rótulos previstos pelo layout. */
html body.wp-theme-guia-wa main.site .eyebrow,
html body.wp-theme-guia-wa main.site .block__n,
html body.wp-theme-guia-wa main.site .bonus__n,
html body.wp-theme-guia-wa main.site .sitefooter__brand {
    text-transform: uppercase !important;
}

/* Ícones Lucide em vez de caracteres de fonte/emoji. */
html body.wp-theme-guia-wa main.site .check {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    color: var(--ember);
    flex: 0 0 auto;
}
html body.wp-theme-guia-wa main.site .check::before { content: none !important; }
html body.wp-theme-guia-wa main.site .check .icon,
html body.wp-theme-guia-wa main.site .check svg { width: 1rem; height: 1rem; }

html body.wp-theme-guia-wa main.site .btn__arrow {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}
html body.wp-theme-guia-wa main.site .btn__arrow .icon,
html body.wp-theme-guia-wa main.site .btn__arrow svg { width: 1rem; height: 1rem; }

html body.wp-theme-guia-wa main.site .cta-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
html body.wp-theme-guia-wa main.site .cta-meta__icon {
    display: inline-flex;
    width: 0.875rem;
    height: 0.875rem;
    color: var(--ember);
}
html body.wp-theme-guia-wa main.site .cta-meta__icon .icon,
html body.wp-theme-guia-wa main.site .cta-meta__icon svg { width: 0.875rem; height: 0.875rem; }

html body.wp-theme-guia-wa main.site .tick {
    font-size: 0;
}
html body.wp-theme-guia-wa main.site .tick .icon,
html body.wp-theme-guia-wa main.site .tick svg { width: 0.875rem; height: 0.875rem; }

html body.wp-theme-guia-wa main.site .stack__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
html body.wp-theme-guia-wa main.site .stack__check {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    color: var(--ember);
}
html body.wp-theme-guia-wa main.site .stack__check .icon,
html body.wp-theme-guia-wa main.site .stack__check svg { width: 1rem; height: 1rem; }

/* FAQ original: sem fundo, sem caixa, capitalização normal. */
html body.wp-theme-guia-wa main.site .faq-section .section__title {
    font-size: 44px !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
    text-transform: none !important;
}
html body.wp-theme-guia-wa main.site .faq,
html body.wp-theme-guia-wa main.site .faq__item {
    list-style: none !important;
    background: transparent !important;
    background-color: transparent !important;
}
html body.wp-theme-guia-wa main.site .faq__q {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: -0.011em !important;
}
html body.wp-theme-guia-wa main.site .faq__q > span:first-child {
    text-transform: none !important;
    letter-spacing: -0.011em !important;
}
html body.wp-theme-guia-wa main.site .faq__q:hover,
html body.wp-theme-guia-wa main.site .faq__q:focus,
html body.wp-theme-guia-wa main.site .faq__q:active {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* CTA final exatamente em sentence case, sem condensação externa. */
html body.wp-theme-guia-wa main.site .finalcta__title {
    max-width: 820px !important;
    margin-inline: auto !important;
    font-size: clamp(40px, 4.444vw, 64px) !important;
    font-weight: 500 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    text-transform: none !important;
}

/* Rodapé com o mesmo ícone do Lovable. */
html body.wp-theme-guia-wa main.site .sitefooter__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}
html body.wp-theme-guia-wa main.site .sitefooter__icon {
    display: inline-flex;
    width: 0.875rem;
    height: 0.875rem;
    color: var(--ember);
}
html body.wp-theme-guia-wa main.site .sitefooter__icon .icon,
html body.wp-theme-guia-wa main.site .sitefooter__icon svg { width: 0.875rem; height: 0.875rem; }

/* Links e botões devem manter a capitalização original da copy. */
html body.wp-theme-guia-wa main.site .btn,
html body.wp-theme-guia-wa main.site .btn * {
    text-transform: none !important;
    letter-spacing: -0.011em !important;
}

@media (max-width: 767px) {
    html body.wp-theme-guia-wa main.site .faq-section .section__title {
        font-size: 32px !important;
    }
    html body.wp-theme-guia-wa main.site .finalcta__title {
        font-size: 40px !important;
    }
}
