/* ================================================================
   KIT DO CORRETOR — style.css  (v2)
   Tema claro · paleta Formiga Digital como acento
   Mockups em "em" dentro de .scene (container query) → escalam juntos
================================================================ */

/* ---------- 1. Tokens ---------- */
:root {
    --clr-bg:          #f7f7fa;
    --clr-surface:     #ffffff;
    --clr-surface-2:   #f0f0f5;
    --clr-tint-teal:   #eaf5f5;
    --clr-tint-orange: #fff4e6;

    --clr-text:   #14141c;
    --clr-text-2: #4a4a58;
    --clr-text-3: #75758a;
    --clr-border:   #e4e4ec;
    --clr-border-2: #d4d4df;

    --clr-primary:      #ff8c00;
    --clr-primary-600:  #e87d00;
    --clr-primary-ink:  #1b1100;
    --clr-primary-text: #b35f00;
    --clr-accent:       #008080;
    --clr-accent-600:   #006b6b;
    --clr-secondary:    #5d3fd3;
    --clr-dark:         #14141c;
    --clr-danger:       #c43d3d;

    /* Marca da prévia (alterada pelo configurador) */
    --b1: #173b6c;
    --b2: #ffb400;
    --b3: #1d6fd1;

    --ff-heading: 'Space Grotesk', system-ui, sans-serif;
    --ff-body:    'DM Sans', system-ui, sans-serif;

    --fs-sm:   clamp(0.84rem, 1.1vw, 0.92rem);
    --fs-base: clamp(0.98rem, 1.3vw, 1.06rem);
    --fs-lg:   clamp(1.08rem, 1.7vw, 1.22rem);
    --fs-xl:   clamp(1.2rem, 2vw, 1.45rem);
    --fs-2xl:  clamp(1.75rem, 3.6vw, 2.6rem);
    --fs-3xl:  clamp(2.05rem, 4.4vw, 3.3rem);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(20, 20, 40, .06), 0 2px 8px rgba(20, 20, 40, .04);
    --shadow-md: 0 4px 12px rgba(20, 20, 40, .06), 0 12px 32px rgba(20, 20, 40, .08);
    --shadow-lg: 0 10px 30px rgba(20, 20, 40, .08), 0 30px 70px rgba(20, 20, 40, .12);
    --shadow-cta: 0 8px 24px rgba(255, 140, 0, .32);

    --container: 1200px;
    --gutter: clamp(1rem, 4vw, 2rem);
    --section-y: clamp(4rem, 9vw, 7rem);
    --header-h: 72px;
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--clr-text);
    background: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--ff-heading); line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
button, input, select { font: inherit; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -100px; background: var(--clr-dark); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 200; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--clr-accent); outline-offset: 3px; border-radius: 6px; }

.ico { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.hl { color: var(--clr-accent); }
.strike-hl { position: relative; white-space: nowrap; }
.strike-hl::after { content: ""; position: absolute; left: -3%; right: -3%; top: 52%; height: .12em; background: var(--clr-primary); border-radius: 4px; transform: rotate(-5deg); }

.kicker { font-family: var(--ff-heading); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--clr-primary-text); margin-bottom: .75rem; }
.link-arrow { font-family: var(--ff-heading); font-weight: 600; color: var(--clr-accent-600); text-decoration: none; }
.link-arrow::after { content: " →"; transition: margin .2s; }
.link-arrow:hover::after { margin-left: .25rem; }

/* ---------- 3. Botões ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .85rem 1.4rem; border-radius: var(--radius-pill);
    font-family: var(--ff-heading); font-weight: 600; font-size: var(--fs-base);
    text-decoration: none; line-height: 1.2; text-align: center;
    border: 2px solid transparent; cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s;
}
.btn--primary { background: var(--clr-primary); color: var(--clr-primary-ink); box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--clr-primary-600); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 140, 0, .38); }
.btn--ghost { background: var(--clr-surface); color: var(--clr-text); border-color: var(--clr-border-2); }
.btn--ghost:hover { border-color: var(--clr-accent); color: var(--clr-accent-600); transform: translateY(-2px); }
.btn--ghost .ico { color: #1fa855; }
.btn--dark { background: var(--clr-dark); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.1rem; font-size: var(--fs-sm); }
.btn--lg { padding: 1.05rem 1.75rem; font-size: var(--fs-lg); }
.btn--block { width: 100%; }

/* ---------- 4. Header ---------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 247, 250, .85);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s, box-shadow .25s;
}
.header.is-scrolled { border-color: var(--clr-border); box-shadow: 0 4px 20px rgba(20, 20, 40, .05); }
.header__inner { display: flex; align-items: center; gap: 2rem; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--clr-text); }
.logo__mark { width: 34px; height: 34px; color: var(--clr-accent); }
.logo__text { font-family: var(--ff-heading); font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; }
.logo__text strong { font-weight: 700; color: var(--clr-primary-text); }

.nav { display: flex; gap: 1.75rem; margin-left: auto; }
.nav a { text-decoration: none; font-size: var(--fs-sm); font-weight: 500; color: var(--clr-text-2); transition: color .2s; }
.nav a:hover { color: var(--clr-accent); }
.header__cta { flex-shrink: 0; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: var(--clr-text); border-radius: 2px; margin: 5px 0; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1020px) {
    .header__cta { display: none; }
    .nav-toggle { display: block; }
    .nav {
        position: absolute; top: var(--header-h); left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: var(--clr-surface); border-bottom: 1px solid var(--clr-border);
        box-shadow: var(--shadow-md); padding: .5rem var(--gutter) 1rem;
        transform: translateY(-8px); opacity: 0; visibility: hidden;
        transition: opacity .2s, transform .2s, visibility .2s;
    }
    .nav.is-open { opacity: 1; transform: none; visibility: visible; }
    .nav a { padding: .9rem 0; font-size: var(--fs-base); border-bottom: 1px solid var(--clr-border); }
    .nav a:last-child { border-bottom: 0; }
}

/* ================================================================
   5. MOCKUPS — sistema de cena
   1em = largura da cena / 52  (cena de 520px → 1em = 10px)
================================================================ */
.scene { position: relative; width: 100%; aspect-ratio: 52 / 46; container-type: inline-size; }
.scene > * { position: absolute; font-size: calc(100cqw / 52); line-height: 1.35; font-family: var(--ff-body); }

.m-lines i { display: block; height: .6em; background: #e6e8ee; border-radius: .4em; margin-bottom: .6em; }
.m-lines i.short { width: 60%; }

/* lockup */
.m-lock { display: inline-flex; align-items: center; gap: .4em; font-family: var(--ff-heading); font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.m-lock svg { width: 1.35em; height: 1.35em; flex-shrink: 0; color: var(--b2); }
.m-lock--lg { font-size: 1.9em; }
.m-lock--xl { font-size: 3em; }

/* avatar */
.m-avatar { display: grid; place-items: center; flex-shrink: 0; width: 4.6em; height: 4.6em; border-radius: 50%; background: linear-gradient(135deg, var(--b1), var(--b3)); box-shadow: 0 0 0 .2em #fff, 0 0 0 .4em var(--b2); }
.m-avatar svg { width: 55%; height: 55%; color: var(--b2); }
.m-avatar--sm { width: 3.4em; height: 3.4em; box-shadow: none; }

/* celular + site */
.m-phone { width: 19em; aspect-ratio: 9 / 19; background: #121218; border-radius: 3em; padding: .75em; box-shadow: 0 2em 4em rgba(20, 20, 40, .22), 0 .4em 1em rgba(20, 20, 40, .12); }
.m-phone::before { content: ""; position: absolute; top: 1.4em; left: 50%; translate: -50% 0; width: 5.5em; height: 1.5em; background: #121218; border-radius: 1em; z-index: 2; }
.m-phone__screen { width: 100%; height: 100%; background: #fff; border-radius: 2.3em; overflow: hidden; }
.m-site__bar { display: flex; justify-content: space-between; align-items: center; gap: .5em; padding: 3.4em 1.3em 1em; color: var(--b1); }
.m-site__bar .m-lock { font-size: 1.05em; max-width: 13em; overflow: hidden; }
.m-site__bar .m-lock svg { color: var(--b3); }
.m-burger { flex-shrink: 0; width: 1.4em; height: .9em; border-block: .2em solid var(--b1); }
.m-site__hero {
    position: relative; overflow: hidden; height: 17em; padding: 1.3em; display: flex; flex-direction: column; justify-content: flex-end; gap: .5em;
    background: linear-gradient(160deg, var(--b1), var(--b3)); color: #fff;
}
.m-site__hero::before { content: ""; position: absolute; width: 14em; height: 14em; border-radius: 50%; right: -5em; top: -5em; background: var(--b2); opacity: .2; }
.m-site__hero > * { position: relative; }
.m-site__hero small { font-size: .78em; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--b2); }
.m-site__hero strong { font-family: var(--ff-heading); font-size: 1.55em; line-height: 1.12; }
.m-site__btn { align-self: flex-start; margin-top: .3em; background: var(--b2); color: var(--b1); font-weight: 700; font-size: .85em; padding: .55em 1em; border-radius: 2em; }
.m-site__chips { display: grid; grid-template-columns: 1fr 1fr; gap: .55em; padding: 1.1em 1.3em .8em; }
.m-site__chips span { background: color-mix(in srgb, var(--b3) 12%, #fff); color: var(--b1); font-weight: 700; font-size: .85em; text-align: center; padding: .8em 0; border-radius: .7em; }
.m-site .m-lines { padding: .3em 1.3em; }

/* cartões */
.m-card { width: 25em; aspect-ratio: 9 / 5; border-radius: 1em; padding: 1.4em 1.6em; display: flex; flex-direction: column; justify-content: center; box-shadow: 0 1.2em 2.8em rgba(15, 25, 45, .25); }
.m-card small { display: block; font-size: .95em; line-height: 1.5; }
.m-card--front { background: linear-gradient(135deg, var(--b1), var(--b3)); color: #fff; align-items: center; text-align: center; }
.m-card--front small { margin-top: .5em; letter-spacing: .14em; text-transform: uppercase; font-size: .85em; opacity: .85; }
.m-card--front .m-lock { max-width: 100%; }
.m-card--back { background: #fff; color: var(--b1); flex-direction: row; justify-content: space-between; align-items: center; gap: 1em; }
.m-card--back > div { min-width: 0; }
.m-card--back strong { font-family: var(--ff-heading); font-size: 1.35em; display: block; margin-bottom: .25em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-card--back small { color: #5a6272; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-card--back small:first-of-type { color: var(--b3); font-weight: 700; }
.m-qr {
    width: 6.6em; height: 6.6em; flex-shrink: 0; border-radius: .4em; position: relative;
    background:
        linear-gradient(90deg, var(--b1) 50%, transparent 0) 0 0 / 1.1em 1.1em,
        linear-gradient(var(--b1) 50%, transparent 0) .55em .55em / 1.1em 1.1em, #fff;
    box-shadow: inset 0 0 0 .45em #fff, inset 0 0 0 .65em var(--b1);
}
.m-qr::before, .m-qr::after { content: ""; position: absolute; width: 2em; height: 2em; background: #fff; border: .4em solid var(--b1); box-shadow: inset 0 0 0 .35em #fff, inset 0 0 0 1em var(--b1); }
.m-qr::before { top: .7em; left: .7em; }
.m-qr::after { bottom: .7em; right: .7em; }

/* notificação */
.m-toast { display: flex; align-items: center; gap: .9em; background: #fff; border-radius: 1.3em; padding: 1em 1.4em 1em 1em; box-shadow: 0 1em 3em rgba(20, 20, 40, .18); }
.m-toast__ico { display: grid; place-items: center; width: 3.4em; height: 3.4em; border-radius: 50%; background: #25d366; color: #fff; flex-shrink: 0; }
.m-toast__ico svg { width: 55%; height: 55%; }
.m-toast strong { display: block; font-size: 1.15em; color: #14141c; }
.m-toast small { font-size: 1em; color: #4a4a58; }

/* painel de marca */
.m-board { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6em; border-radius: 1.8em; color: #fff; background: linear-gradient(140deg, var(--b1), var(--b3)); box-shadow: 0 1.5em 3em rgba(15, 25, 45, .2); overflow: hidden; padding: 0 2em; }
.m-board::after { content: ""; position: absolute; width: 20em; height: 20em; border-radius: 50%; border: 2.2em solid var(--b2); opacity: .15; right: -8em; bottom: -9em; }
.m-board .m-lock { max-width: 100%; }
.m-board small { font-size: 1.1em; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
.m-palette { display: flex; align-items: center; gap: .7em; background: #fff; padding: 1em 1.3em; border-radius: 1.4em; box-shadow: var(--shadow-md); }
.m-palette i { width: 3.6em; height: 3.6em; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.m-palette .c1 { background: var(--b1); } .m-palette .c2 { background: var(--b2); } .m-palette .c3 { background: var(--b3); } .m-palette .c4 { background: #f2f3f7; }
.m-palette span { font-family: var(--ff-heading); font-weight: 700; font-size: 2.6em; color: var(--b1); margin-left: .2em; line-height: 1; }

/* assinatura */
.m-sign { display: flex; align-items: center; gap: 1.1em; background: #fff; border-radius: 1.2em; padding: 1.2em 1.4em; border-left: .45em solid var(--b3); box-shadow: var(--shadow-md); }
.m-sign > span:last-child { min-width: 0; }
.m-sign strong { display: block; font-family: var(--ff-heading); font-size: 1.3em; color: var(--b1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-sign small { display: block; font-size: .95em; color: #6a6f7c; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* busca google */
.m-search { background: #fff; border-radius: 1.4em; padding: 1.4em 1.6em; box-shadow: var(--shadow-lg); }
.m-search__bar { display: flex; align-items: center; gap: .8em; border: 1px solid #dfe1e5; border-radius: 3em; padding: .7em 1.1em; font-size: 1.05em; color: #202124; margin-bottom: 1.4em; box-shadow: 0 .1em .4em rgba(32,33,36,.1); white-space: nowrap; overflow: hidden; }
.m-search__g { font-family: Arial, sans-serif; font-weight: 700; font-size: 1.3em; background: conic-gradient(#ea4335 0 25%, #fbbc05 0 50%, #34a853 0 75%, #4285f4 0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.m-search__result { margin-bottom: 1.2em; }
.m-search__result small { font-size: .95em; color: #202124; }
.m-search__result strong { display: block; font-size: 1.45em; font-weight: 500; color: #1a0dab; margin: .15em 0 .3em; font-family: Arial, sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-search__result p { font-size: 1em; color: #4d5156; }

/* instagram */
.m-insta { background: #fff; border-radius: 1.4em; padding: 1.3em; box-shadow: var(--shadow-lg); }
.m-insta__head { display: flex; align-items: center; gap: .9em; margin-bottom: 1em; min-width: 0; }
.m-insta__head > span:last-child { min-width: 0; }
.m-insta__head strong { display: block; font-size: 1.15em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-insta__head small { font-size: .9em; color: #75758a; }
.m-insta__stats { display: flex; justify-content: space-around; font-size: .95em; color: #4a4a58; margin-bottom: 1em; padding-bottom: 1em; border-bottom: 1px solid #eee; }
.m-insta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .3em; }
.m-post { aspect-ratio: 1; display: flex; align-items: flex-end; padding: .6em; font-family: var(--ff-heading); font-weight: 700; font-size: .8em; line-height: 1.12; border-radius: .2em; overflow: hidden; }
.m-post--a { background: var(--b1); color: #fff; }
.m-post--b { background: var(--b2); color: var(--b1); }
.m-post--c { background: color-mix(in srgb, var(--b3) 16%, #fff); color: var(--b1); align-items: center; justify-content: center; text-align: center; font-size: .95em; }
.m-post--d { background: var(--b3); color: #fff; }
.m-post--e { background: #fff; border: 1px solid #eee; align-items: center; justify-content: center; }
.m-post--e svg { width: 55%; height: 55%; color: var(--b3); }

/* whatsapp */
.m-wa { background: #fff; border-radius: 1.4em; overflow: hidden; box-shadow: var(--shadow-lg); }
.m-wa__head { display: flex; align-items: center; gap: .8em; background: #075e54; color: #fff; padding: .9em 1.1em; }
.m-wa__head > span:last-child { min-width: 0; }
.m-wa__head strong { display: block; font-size: 1.05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-wa__head small { font-size: .85em; opacity: .8; }
.m-wa__body { background: #ece5dd; padding: 1em; display: flex; flex-direction: column; gap: .55em; }
.m-wa__body p { font-size: .98em; line-height: 1.35; padding: .55em .8em; border-radius: .7em; max-width: 86%; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.m-wa__in { background: #fff; align-self: flex-start; }
.m-wa__out { background: #dcf8c6; align-self: flex-end; }

/* pdf */
.m-pdf { width: 16em; aspect-ratio: 1 / 1.36; display: flex; flex-direction: column; border-radius: .8em; padding: 1.6em 1.4em; color: #fff; background: linear-gradient(162deg, var(--b1) 55%, #fff 55%); box-shadow: 0 1.2em 3em rgba(15, 25, 45, .22); }
.m-pdf__tag { align-self: flex-start; background: var(--b2); color: var(--b1); font-weight: 700; font-size: .8em; padding: .2em .6em; border-radius: .4em; margin-bottom: .8em; }
.m-pdf strong { font-family: var(--ff-heading); font-size: 1.45em; line-height: 1.1; }
.m-pdf small { font-size: .9em; opacity: .85; margin-bottom: auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-pdf .m-lines i { background: #e1e6ee; }

/* selo */
.m-badge { display: grid; place-items: center; align-content: center; font-size: calc(100cqw / 26); width: 4.4em; height: 4.4em; line-height: 1; border-radius: 50%; background: var(--b2); color: var(--b1); font-family: var(--ff-heading); font-weight: 700; box-shadow: 0 .5em 1.2em rgba(15, 25, 45, .2); }
.m-badge small { font-size: .42em; font-weight: 600; letter-spacing: .05em; margin-top: .2em; }

/* ---------- mockups "antes" (amador) ---------- */
.x-card { width: 25em; aspect-ratio: 9 / 5; background: #fff; border: 1px solid #cfcfcf; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; font-family: "Times New Roman", Times, serif; color: #222; box-shadow: 0 .3em .8em rgba(0,0,0,.12); padding: 1em; }
.x-card__clip { font-size: 1.6em; margin-bottom: .2em; font-family: sans-serif; }
.x-card strong { font-size: 1.6em; letter-spacing: .03em; white-space: nowrap; overflow: hidden; max-width: 100%; }
.x-card small { font-size: 1em; line-height: 1.35; }
.x-insta { width: 20em; background: #fff; border-radius: .5em; padding: 1em; box-shadow: 0 .3em .8em rgba(0,0,0,.12); }
.x-insta__head { display: flex; align-items: center; gap: .7em; font-size: 1em; margin-bottom: .8em; color: #333; white-space: nowrap; overflow: hidden; }
.x-avatar { width: 3.2em; height: 3.2em; border-radius: 50%; flex-shrink: 0; background: #d9d9d9 radial-gradient(circle at 50% 38%, #b5b5b5 0 22%, transparent 23%); position: relative; overflow: hidden; }
.x-avatar::after { content: ""; position: absolute; width: 70%; height: 45%; left: 15%; bottom: -10%; border-radius: 50% 50% 0 0; background: #b5b5b5; }
.x-insta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25em; }
.x-insta__grid span { aspect-ratio: 1; display: grid; place-items: center; text-align: center; font-family: "Comic Sans MS", "Chalkboard SE", cursive; font-size: .75em; line-height: 1.1; padding: .3em; background: #fff35c; color: #d6001c; font-weight: 700; }
.x-insta__grid span:nth-child(3) { background: #13a10e; color: #fff; }
.x-insta__grid span:nth-child(5) { background: #ff5ec4; color: #111; }
.x-insta__grid .x-blur { background: linear-gradient(135deg, #9aa4ad, #c9c2b6 60%, #7d8a79); filter: blur(.12em) saturate(.6); }
.x-insta__grid .x-blur--2 { background: linear-gradient(200deg, #c1b8a4, #8d9aa6); }
.x-wa { width: 24em; background: #fff; border-radius: .6em; overflow: hidden; box-shadow: 0 .3em .8em rgba(0,0,0,.12); }
.x-wa__head { display: flex; align-items: center; gap: .7em; background: #ededed; padding: .8em 1em; color: #222; font-size: 1.05em; }
.x-wa__head small { display: block; font-size: .8em; color: #888; }
.x-wa__body { background: #ece5dd; padding: 1em; }
.x-wa__msg { background: #fff; border-radius: .6em; padding: .6em .8em; font-size: .95em; color: #333; max-width: 90%; }
.x-wa__msg em { display: block; font-size: .85em; color: #8a8a8a; margin-bottom: .2em; }

/* ================================================================
   6. HERO / CONFIGURADOR
================================================================ */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 4rem); }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(520px 380px at 12% 100%, rgba(255, 140, 0, .09), transparent 70%),
        radial-gradient(600px 460px at 80% 20%, rgba(0, 128, 128, .08), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem; border-radius: var(--radius-pill); background: var(--clr-tint-teal); color: var(--clr-accent-600); font-size: var(--fs-sm); font-weight: 700; margin-bottom: 1.1rem; }
.hero h1 { font-size: var(--fs-3xl); margin-bottom: 1rem; }
.hero__lead { font-size: var(--fs-lg); color: var(--clr-text-2); max-width: 36rem; margin-bottom: 1.5rem; }

.config { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-md); margin-bottom: 1.5rem; display: grid; gap: 1rem; }
.config__row { display: grid; grid-template-columns: auto auto; justify-content: space-between; gap: 1rem; align-items: end; }
.config__field > label, .config__field > legend { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--clr-text-3); margin-bottom: .45rem; padding: 0; }
.config__input { display: flex; align-items: center; gap: .6rem; border: 2px solid var(--clr-border-2); border-radius: 14px; padding: 0 1rem; background: var(--clr-bg); transition: border-color .2s, box-shadow .2s, background-color .2s; }
.config__input:focus-within { border-color: var(--clr-accent); background: #fff; box-shadow: 0 0 0 4px rgba(0, 128, 128, .12); }
.config__input .ico { color: var(--clr-text-3); }
.config__input input { flex: 1; min-width: 0; border: 0; background: none; padding: .85rem 0; font-family: var(--ff-heading); font-size: 1.15rem; font-weight: 600; color: var(--clr-text); outline: none; }
.config__input input::placeholder { color: #a5a5b5; font-weight: 500; }

.seg { display: inline-flex; background: var(--clr-surface-2); border-radius: 12px; padding: 4px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.seg span { display: block; padding: .5rem .85rem; border-radius: 9px; font-size: var(--fs-sm); font-weight: 600; color: var(--clr-text-2); transition: background-color .2s, color .2s, box-shadow .2s; }
.seg input:checked + span { background: #fff; color: var(--clr-text); box-shadow: var(--shadow-sm); }
.seg input:focus-visible + span { outline: 3px solid var(--clr-accent); outline-offset: 1px; }

.swatches { display: flex; gap: .5rem; padding: 6px 2px; }
.swatches label { position: relative; cursor: pointer; }
.swatches input { position: absolute; opacity: 0; inset: 0; cursor: pointer; margin: 0; }
.swatches span { display: block; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--s1) 55%, var(--s2) 55%); box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--clr-border-2); transition: box-shadow .2s, transform .2s; }
.swatches input:checked + span { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--clr-text); transform: scale(1.06); }
.swatches input:focus-visible + span { outline: 3px solid var(--clr-accent); outline-offset: 4px; }

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-bottom: 1.25rem; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.hero__proof li { display: flex; align-items: center; gap: .4rem; font-size: var(--fs-sm); font-weight: 500; color: var(--clr-text-2); }
.hero__proof .ico { color: var(--clr-accent); }

.hero__stage { position: relative; }
.hero__stage::before {
    content: ""; position: absolute; inset: 4% 2% 10%; z-index: -1; border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    background: color-mix(in srgb, var(--b3) 16%, transparent); filter: blur(10px); transition: background-color .5s;
}
.scene--hero { aspect-ratio: 52 / 50; }
.s-hero-phone { left: 5%; top: 3%; z-index: 2; }
.s-hero-front { right: 2%; top: 9%; rotate: 6deg; z-index: 1; }
.s-hero-back  { right: 7%; top: 45%; rotate: -4deg; z-index: 3; }
.s-hero-toast { left: 22%; bottom: 3%; z-index: 4; animation: float 6s ease-in-out infinite; }
.hero__stage-note { text-align: center; font-size: .78rem; color: var(--clr-text-3); margin-top: .5rem; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.scene.is-bump { animation: bump .45s ease; }
@keyframes bump { 40% { transform: scale(1.015); } }

/* ticker */
.ticker { margin-top: clamp(2.5rem, 5vw, 4rem); border-block: 1px solid var(--clr-border); background: var(--clr-surface); overflow: hidden; }
.ticker__track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker__track span { padding: 1rem 0 1rem 1.6rem; font-family: var(--ff-heading); font-weight: 500; color: var(--clr-text-2); white-space: nowrap; display: flex; align-items: center; }
.ticker__track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--clr-primary); margin-left: 1.6rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ================================================================
   7. SEÇÕES
================================================================ */
.section { padding-block: var(--section-y); }
.section__head { max-width: 46rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.section__head h2 { margin-bottom: 1rem; }
.section__head p:not(.kicker) { color: var(--clr-text-2); font-size: var(--fs-lg); }
.section__head--left { text-align: left; margin-left: 0; }

.checklist li { position: relative; padding-left: 1.75rem; font-size: var(--fs-sm); margin-bottom: .6rem; }
.checklist li::before {
    content: ""; position: absolute; left: 0; top: .2em; width: 1.15rem; height: 1.15rem; border-radius: 50%;
    background: var(--clr-tint-teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23008080' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='m6 12.5 4 4L18 8'/%3E%3C/svg%3E") center / 72% no-repeat;
}

/* ---------- Antes x Depois ---------- */
.compare { background: var(--clr-surface); }
.compare__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.compare__copy h2 { margin-bottom: 1rem; }
.compare__lead { color: var(--clr-text-2); font-size: var(--fs-lg); margin-bottom: 1.5rem; }
.compare__pains li { position: relative; padding-left: 2rem; margin-bottom: .85rem; color: var(--clr-text-2); font-size: var(--fs-sm); }
.compare__pains li::before { content: "×"; position: absolute; left: 0; top: .1em; width: 1.3rem; height: 1.3rem; border-radius: 50%; background: #fdecec; color: var(--clr-danger); display: grid; place-items: center; font-weight: 700; line-height: 1; }
.compare__pains strong { color: var(--clr-text); }
.compare__hint { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: .9rem; font-size: var(--fs-sm); font-weight: 600; color: var(--clr-text-3); }

.ba { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize; }
.ba__layer--before { position: relative; z-index: 0; isolation: isolate; background: #e4e4e8; }
.ba__layer--after { position: absolute; inset: 0; z-index: 1; isolation: isolate; background: color-mix(in srgb, var(--b3) 14%, #f7f7fa); clip-path: inset(0 0 0 var(--pos)); }
.ba.is-animating .ba__layer--after { transition: clip-path .7s cubic-bezier(.3,.7,.2,1); }
.ba.is-animating .ba__handle { transition: left .7s cubic-bezier(.3,.7,.2,1); }
.scene--ba { aspect-ratio: 52 / 38; }
.s-ba-card  { left: 4%; top: 9%; z-index: 1; }
.s-ba-insta { right: 4%; top: 7%; width: 20em; z-index: 2; }
.s-ba-wa    { left: 7%; bottom: 8%; width: 24em; z-index: 3; }
.m-card.s-ba-card { rotate: -3deg; }
.ba__tag { position: absolute; top: 1rem; left: 1rem; z-index: 5; background: rgba(20, 20, 28, .75); color: #fff; font-family: var(--ff-heading); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; padding: .4rem .75rem; border-radius: var(--radius-pill); }
.ba__tag--after { left: auto; right: 1rem; background: var(--clr-accent); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; z-index: 6; pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.ba__handle span { position: absolute; top: 50%; left: 50%; translate: -50% -50%; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--clr-text); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.ba__handle svg { width: 24px; height: 24px; }
.ba__range { position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; opacity: 0; pointer-events: none; }
.ba:has(.ba__range:focus-visible) { outline: 3px solid var(--clr-accent); outline-offset: 4px; }

/* ---------- Vitrine do kit ---------- */
.kit__layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.kit__stage {
    position: sticky; top: calc(var(--header-h) + 2rem);
    display: grid; border-radius: var(--radius-xl); overflow: hidden;
    background: color-mix(in srgb, var(--b3) 11%, #fff);
    box-shadow: inset 0 0 0 1px rgba(20, 20, 40, .05);
}
.kit__stage > .scene { grid-area: 1 / 1; opacity: 0; transform: translateY(18px) scale(.98); transition: opacity .5s ease, transform .5s ease; }
.kit__stage > .scene.is-active { opacity: 1; transform: none; }
.scene--kit { aspect-ratio: 52 / 46; }

.chapter { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; }
.chapter__visual { display: none; }
.chapter__text { transition: opacity .4s; }
.kit--sticky .chapter:not(.is-active) .chapter__text { opacity: .3; }
.chapter__num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--clr-accent); color: #fff; font-family: var(--ff-heading); font-weight: 700; margin-bottom: 1.1rem; }
.chapter h3 { font-size: var(--fs-xl); margin-bottom: .6rem; }
.chapter p { color: var(--clr-text-2); margin-bottom: 1.25rem; }
.chapter .checklist li { font-size: var(--fs-base); }
.kit__dots { display: none; }

.s-k1-board   { left: 5%; top: 6%; width: 42em; height: 21em; }
.s-k1-palette { left: 5%; bottom: 7%; }
.s-k1-sign    { right: 5%; bottom: 7%; width: 24em; }

.s-k2-search { left: 4%; top: 13%; width: 32em; z-index: 1; }
.s-k2-phone  { right: 5%; top: 5%; width: 17em; z-index: 2; }

.s-k3-insta { left: 4%; top: 6%; width: 27em; }
.s-k3-wa    { right: 4%; bottom: 8%; width: 23em; }

.s-k4-front { left: 5%; top: 9%; rotate: -6deg; }
.s-k4-back  { left: 13%; top: 47%; rotate: 4deg; z-index: 2; }
.s-k4-pdf   { right: 6%; top: 8%; rotate: 4deg; }
.s-k4-badge { right: 7%; bottom: 7%; z-index: 3; }

.bonus { display: flex; align-items: center; gap: 1.5rem; margin-top: clamp(2rem, 4vw, 3rem); background: linear-gradient(100deg, var(--clr-tint-orange), #fff 70%); border: 1px solid #ffd9ad; border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; }
.bonus__tag { flex-shrink: 0; background: var(--clr-primary); color: var(--clr-primary-ink); font-family: var(--ff-heading); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; padding: .45rem .8rem; border-radius: var(--radius-pill); }
.bonus__text { flex: 1; }
.bonus__text h3 { margin-bottom: .25rem; }
.bonus__text p { font-size: var(--fs-sm); color: var(--clr-text-2); }
.bonus .btn { flex-shrink: 0; }

/* ---------- Para quem é ---------- */
.audience { background: var(--clr-surface); }
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.audience__copy h2 { margin-bottom: 1rem; }
.audience__copy > p:not(.kicker) { color: var(--clr-text-2); font-size: var(--fs-lg); margin-bottom: 1.75rem; }
.audience__list { border-top: 1px solid var(--clr-border); margin-bottom: 1.75rem; }
.audience__list div { display: grid; grid-template-columns: 10rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--clr-border); }
.audience__list dt { font-family: var(--ff-heading); font-weight: 700; }
.audience__list dd { color: var(--clr-text-2); font-size: var(--fs-sm); }
.profiles { display: flex; flex-wrap: wrap; gap: .5rem; }
.profiles li { background: var(--clr-tint-teal); color: var(--clr-accent-600); border-radius: var(--radius-pill); padding: .5rem 1rem; font-size: var(--fs-sm); font-weight: 600; }
.mosaic { display: grid; grid-template-columns: 1.1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; aspect-ratio: 1 / 1; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.mosaic__a { grid-row: span 2; }

/* ---------- Como funciona ---------- */
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; position: relative; }
.steps__list::before { content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--clr-border-2) 0 8px, transparent 8px 16px); }
.step { position: relative; text-align: center; padding: 0 .5rem; }
.step__n { position: relative; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--clr-bg); border: 2px solid var(--clr-accent); color: var(--clr-accent); font-family: var(--ff-heading); font-weight: 700; font-size: 1.3rem; }
.step:last-child .step__n { background: var(--clr-accent); color: #fff; }
.step h3 { margin-bottom: .4rem; }
.step p { font-size: var(--fs-sm); color: var(--clr-text-2); }
.steps__note { display: flex; align-items: center; justify-content: center; gap: .6rem; margin: 2.5rem auto 0; max-width: 40rem; padding: .9rem 1.2rem; background: var(--clr-tint-teal); border-radius: var(--radius-md); font-size: var(--fs-sm); color: var(--clr-accent-600); }

/* ---------- Preço ---------- */
.pricing { background: var(--clr-surface); }
.pricing__grid { display: grid; grid-template-columns: 1fr 440px; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pricing__copy h2 { margin-bottom: 1rem; }
.pricing__copy > p:not(.kicker) { color: var(--clr-text-2); font-size: var(--fs-lg); margin-bottom: 1.75rem; }
.pricing__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }
.pricing__pillars li { display: flex; align-items: center; gap: .6rem; background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: 14px; padding: .85rem 1rem; font-size: var(--fs-sm); font-weight: 600; }
.pricing__pillars .ico { color: var(--clr-accent); width: 1.3em; height: 1.3em; }

.breakdown { border: 1px solid var(--clr-border); border-radius: 14px; background: var(--clr-surface); }
.breakdown summary { cursor: pointer; list-style: none; padding: .95rem 1.1rem; font-weight: 600; font-size: var(--fs-sm); color: var(--clr-accent-600); display: flex; justify-content: space-between; align-items: center; }
.breakdown summary::-webkit-details-marker { display: none; }
.breakdown summary::after { content: "+"; font-size: 1.3rem; line-height: 1; transition: transform .25s; }
.breakdown[open] summary::after { transform: rotate(45deg); }
.breakdown table { width: 100%; border-collapse: collapse; }
.breakdown td, .breakdown th { padding: .6rem 1.1rem; font-size: var(--fs-sm); text-align: left; border-top: 1px solid var(--clr-border); }
.breakdown td:last-child { text-align: right; white-space: nowrap; color: var(--clr-text-2); font-variant-numeric: tabular-nums; }
.breakdown tfoot th, .breakdown tfoot td { font-family: var(--ff-heading); font-weight: 700; }
.breakdown tfoot s { color: var(--clr-danger); text-decoration-thickness: 2px; }

.offer { position: relative; background: var(--clr-surface); border-radius: var(--radius-xl); padding: 0 2rem 2rem; border: 2px solid var(--clr-primary); box-shadow: var(--shadow-lg); text-align: center; overflow: hidden; }
.offer__top { margin: 0 -2rem 1.5rem; padding: 1.75rem 2rem 1.25rem; background: linear-gradient(180deg, var(--clr-tint-orange), transparent); }
.offer__badge { display: inline-block; background: var(--clr-primary); color: var(--clr-primary-ink); font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; padding: .35rem .8rem; border-radius: var(--radius-pill); margin-bottom: .75rem; }
.offer h3 { font-size: var(--fs-xl); }
.offer__for { margin-top: .25rem; color: var(--clr-text-2); font-size: var(--fs-sm); }
.offer__from { color: var(--clr-text-3); font-size: var(--fs-sm); }
.offer__price { display: flex; align-items: baseline; justify-content: center; gap: .5rem; margin: .2rem 0 .3rem; font-family: var(--ff-heading); }
.offer__x { font-size: var(--fs-lg); font-weight: 600; color: var(--clr-text-2); }
.offer__value { font-size: clamp(2.8rem, 6vw, 3.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.offer__value small { font-size: .45em; }
.offer__cash { color: var(--clr-text-2); margin-bottom: 1.5rem; }
.offer__cash strong { color: var(--clr-text); }
.offer__save { display: inline-block; margin-left: .35rem; background: var(--clr-tint-teal); color: var(--clr-accent-600); font-weight: 700; font-size: .78rem; padding: .15rem .55rem; border-radius: var(--radius-pill); }
.offer__alt { display: inline-block; margin-top: .9rem; font-size: var(--fs-sm); color: var(--clr-text-2); }
.offer__alt:hover { color: var(--clr-accent); }
.offer__seals { display: flex; justify-content: center; gap: 1.25rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--clr-border); }
.offer__seals li { display: flex; align-items: center; gap: .35rem; font-size: .78rem; color: var(--clr-text-3); }

/* ---------- Depoimentos ---------- */
.testimonials__grid { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; gap: 1.25rem; }
.quote { margin: 0; background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; }
.quote--featured { grid-row: span 2; background: var(--clr-accent); border-color: var(--clr-accent); color: #fff; padding: clamp(2rem, 4vw, 3rem); }
.quote--featured blockquote { font-family: var(--ff-heading); font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.3; letter-spacing: -0.01em; font-weight: 500; }
.quote--featured .stars { color: #ffc46b; }
.quote--featured small { color: rgba(255, 255, 255, .78); }
.stars { color: var(--clr-primary); letter-spacing: .15em; margin-bottom: .9rem; }
.quote blockquote { margin: 0 0 1.5rem; line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.quote img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote--featured img { width: 64px; height: 64px; box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
.quote strong { display: block; font-family: var(--ff-heading); }
.quote small { font-size: .8rem; color: var(--clr-text-3); }

/* ---------- Quem entrega ---------- */
.about { background: var(--clr-surface); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__copy h2 { margin-bottom: 1.1rem; }
.about__copy p:not(.kicker) { color: var(--clr-text-2); margin-bottom: 1rem; }
.about__links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.about__brand { background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 2rem; }
.about__brand > img { width: 220px; margin-bottom: 1.75rem; filter: brightness(0); opacity: .85; }
.about__label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--clr-text-3); margin-bottom: 1rem; }
.logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem 1.5rem; align-items: center; }
.logos img { max-height: 44px; width: auto; margin-inline: auto; filter: grayscale(1); opacity: .65; transition: filter .25s, opacity .25s; }
.logos img:hover { filter: none; opacity: 1; }

/* ---------- Formulário ---------- */
.contact { background: linear-gradient(180deg, var(--clr-bg), var(--clr-tint-teal)); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact__copy h2 { margin-bottom: 1rem; }
.contact__copy > p:not(.kicker) { color: var(--clr-text-2); font-size: var(--fs-lg); margin-bottom: 1.5rem; }
.contact__list { margin-bottom: 2rem; }
.contact__list li { display: flex; align-items: center; gap: .55rem; margin-bottom: .6rem; font-weight: 500; }
.contact__list .ico { color: var(--clr-accent); }

.form { background: var(--clr-surface); border-radius: 28px; padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-lg); border: 1px solid var(--clr-border); }
.form__row { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.form label, .form legend { font-size: var(--fs-sm); font-weight: 600; }
.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form select {
    width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--clr-border-2);
    background: var(--clr-bg); color: var(--clr-text); transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%234a4a58' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem; }
.form input:focus, .form select:focus { outline: none; border-color: var(--clr-accent); background-color: #fff; box-shadow: 0 0 0 4px rgba(0, 128, 128, .12); }
.form .is-invalid { border-color: var(--clr-danger) !important; }
.form__radios { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.form__radios legend { float: left; width: 100%; margin-bottom: .4rem; }
.form__radios label { display: inline-flex; align-items: center; gap: .4rem; font-weight: 500; cursor: pointer; }
.form input[type="radio"], .form input[type="checkbox"] { accent-color: var(--clr-accent); width: 1.1rem; height: 1.1rem; }
.form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem !important; font-weight: 400 !important; color: var(--clr-text-2); margin-bottom: 1.4rem; cursor: pointer; }
.form__consent input { margin-top: .15rem; flex-shrink: 0; }
.form__consent.is-invalid span { color: var(--clr-danger); }
.form__status { margin-top: 1rem; font-size: var(--fs-sm); text-align: center; min-height: 1.2em; }
.form__status.is-error { color: var(--clr-danger); }
.hp { position: absolute; left: -9999px; }
.form button[disabled] { opacity: .7; cursor: wait; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq__aside { position: sticky; top: calc(var(--header-h) + 2rem); }
.faq__aside h2 { margin-bottom: 1rem; }
.faq__aside p:not(.kicker) { color: var(--clr-text-2); margin-bottom: 1.5rem; }
.faq__list details { border-bottom: 1px solid var(--clr-border); }
.faq__list details:first-child { border-top: 1px solid var(--clr-border); }
.faq__list summary { list-style: none; cursor: pointer; padding: 1.3rem 3rem 1.3rem 0; font-family: var(--ff-heading); font-weight: 600; font-size: var(--fs-base); position: relative; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--clr-tint-teal); color: var(--clr-accent); font-size: 1.3rem; font-weight: 500; transition: transform .25s, background-color .25s, color .25s; }
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--clr-accent); color: #fff; }
.faq__list details p { padding: 0 3rem 1.4rem 0; color: var(--clr-text-2); }

/* ---------- CTA final ---------- */
.final-cta { padding-block: var(--section-y); background: radial-gradient(800px 400px at 50% 0%, #ffe3c2, var(--clr-tint-orange) 60%); text-align: center; }
.final-cta__inner { max-width: 820px; }
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { font-size: var(--fs-lg); color: var(--clr-text-2); margin-bottom: 2rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; }

/* ---------- Footer ---------- */
.footer { background: var(--clr-surface); border-top: 1px solid var(--clr-border); padding: 3.5rem 0 1.5rem; font-size: var(--fs-sm); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-text-3); margin-bottom: .9rem; }
.footer li { margin-bottom: .4rem; }
.footer a { text-decoration: none; color: var(--clr-text-2); }
.footer a:hover { color: var(--clr-accent); }
.footer address { font-style: normal; color: var(--clr-text-2); }
.footer__desc { color: var(--clr-text-2); margin-top: 1rem; max-width: 22rem; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--clr-border); color: var(--clr-text-3); font-size: .8rem; }

/* ---------- WhatsApp flutuante / barra mobile ---------- */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.mobile-bar { display: none; }

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ================================================================
   8. RESPONSIVO
================================================================ */
@media (max-width: 1020px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__copy { max-width: 640px; }
    .hero__stage { max-width: 560px; width: 100%; margin-inline: auto; }
    .compare__grid { grid-template-columns: 1fr; }
    .compare__copy { max-width: 640px; }

    /* vitrine vira carrossel */
    .kit__layout { display: block; }
    .kit__stage { display: none; }
    .kit__chapters { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1); padding: .5rem var(--gutter) 1.25rem; scrollbar-width: none; }
    .kit__chapters::-webkit-scrollbar { display: none; }
    .chapter { flex: 0 0 min(86%, 440px); min-height: 0; justify-content: flex-start; scroll-snap-align: center; background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); overflow: hidden; }
    .chapter__visual { display: block; background: color-mix(in srgb, var(--b3) 11%, #fff); }
    .chapter__text { padding: 1.5rem 1.4rem 1.75rem; }
    .kit--sticky .chapter:not(.is-active) .chapter__text { opacity: 1; }
    .chapter__num { width: 36px; height: 36px; font-size: .9rem; margin-bottom: .75rem; }
    .kit__dots { display: flex; justify-content: center; gap: .5rem; }
    .kit__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: var(--clr-border-2); cursor: pointer; transition: width .25s, background-color .25s; }
    .kit__dots button.is-active { width: 24px; border-radius: 4px; background: var(--clr-accent); }

    .audience__grid, .pricing__grid, .about__grid, .contact__grid, .faq__grid { grid-template-columns: 1fr; }
    .faq__aside { position: static; }
    .offer { max-width: 480px; width: 100%; margin-inline: auto; }
    .steps__list { grid-template-columns: 1fr 1fr; row-gap: 2.25rem; }
    .steps__list::before { display: none; }
    .testimonials__grid { grid-template-columns: 1fr 1fr; }
    .quote--featured { grid-column: 1 / -1; grid-row: auto; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root { --header-h: 64px; }
    body { padding-bottom: 76px; }
    .hero h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
    .config { padding: 1rem; }
    .config__row { grid-template-columns: 1fr; }
    .seg { display: flex; }
    .seg label { flex: 1; text-align: center; }
    .hero__actions .btn { width: 100%; }
    .hero__actions { justify-content: center; }
    .bonus { flex-direction: column; align-items: flex-start; }
    .audience__list div { grid-template-columns: 1fr; gap: .2rem; }
    .mosaic { aspect-ratio: 4 / 3; }
    .pricing__pillars { grid-template-columns: 1fr; }
    .steps__list { grid-template-columns: 1fr; }
    .step { text-align: left; display: grid; grid-template-columns: 56px 1fr; column-gap: 1rem; }
    .step__n { grid-row: span 2; margin: 0; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .form__cols { grid-template-columns: 1fr; }
    .logos { grid-template-columns: repeat(3, 1fr); }
    .offer { padding: 0 1.25rem 1.75rem; }
    .offer__top { margin-inline: -1.25rem; }
    .faq__list summary { padding-right: 2.75rem; }
    .faq__list details p { padding-right: 0; }
    .footer__grid { grid-template-columns: 1fr; }
    .wa-float { display: none; }
    .ba { border-radius: var(--radius-lg); }
    .ba__handle span { width: 40px; height: 40px; }
    .ba__tag { top: .6rem; font-size: .7rem; }
    .ba__tag { left: .6rem; }
    .ba__tag--after { left: auto; right: .6rem; }
    .mobile-bar {
        display: grid; grid-template-columns: 1fr 1.4fr; gap: .6rem;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
        padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .95); backdrop-filter: blur(10px);
        border-top: 1px solid var(--clr-border); box-shadow: 0 -6px 20px rgba(20, 20, 40, .08);
    }
    .mobile-bar .btn { padding: .8rem 1rem; }
}

/* ---------- Páginas internas ---------- */
.thanks { max-width: 640px; text-align: center; padding-block: 2rem; }
.thanks__icon { display: grid; place-items: center; width: 80px; height: 80px; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--clr-accent); color: #fff; box-shadow: 0 10px 30px rgba(0, 128, 128, .3); }
.thanks__icon svg { width: 40px; height: 40px; }
.thanks h1 { font-size: var(--fs-2xl); margin-bottom: 1rem; }
.thanks > p:not(.kicker) { color: var(--clr-text-2); font-size: var(--fs-lg); margin-bottom: 2rem; }
.thanks__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; }
.legal { max-width: 780px; }
.legal h1 { font-size: var(--fs-2xl); margin-bottom: .5rem; }
.legal h2 { font-size: var(--fs-lg); margin: 2rem 0 .6rem; }
.legal p { color: var(--clr-text-2); margin-bottom: .8rem; }
.logo__mark svg { width: 100%; height: 100%; }
