:root {
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #f0f4ff;
    --card: #fff;
    --grad: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --ok: #14b86a;
    --border: #e2e8f0;
    --colerico: #ef4444;
    --sanguineo: #f59e0b;
    --melancolico: #8b5cf6;
    --fleumatico: #10b981;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img, svg, video { max-width: 100%; height: auto; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar { display: none; width: 0; height: 0; }

.funil-footer {
    text-align: center;
    padding: 20px 16px 28px;
    font-size: .72rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: .02em;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(106, 17, 203, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(37, 117, 252, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.wrap {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: max(20px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(56px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.wrap-wide { max-width: 960px; }

/* Header */
header.funil-header {
    text-align: center;
    padding: 8px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

header.funil-header .header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.lang-btn {
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    text-decoration: none;
    background: #fff;
    transition: all .15s ease;
}

.lang-btn:hover { border-color: #6a11cb; color: #6a11cb; }
.lang-btn.active {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}

header.funil-header .logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Steps */
.steps-bar {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
    opacity: .65;
    transition: all .25s;
}

.step-item.active {
    opacity: 1;
    border-color: #2575fc;
    color: #1d4ed8;
    box-shadow: 0 4px 14px rgba(37, 117, 252, .15);
}

.step-item.done {
    opacity: 1;
    border-color: #bbf7d0;
    color: #047857;
    background: #f0fdf4;
}

.step-icon { width: 16px; height: 16px; display: flex; }
.step-icon svg { width: 100%; height: 100%; }

/* Header compacto — teste, captura, resultado */
.funil-header--compact {
    padding: 4px 0 6px;
    gap: 6px;
    align-items: stretch;
    width: 100%;
}

.funil-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.funil-header--compact .logo {
    font-size: 1rem;
    text-align: left;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.funil-header--compact .logo #logoSub,
.funil-header--compact .logo span {
    font-size: 0.82em;
    font-weight: 700;
}

.funil-header--compact .lang-switch {
    flex-shrink: 0;
}

.steps-bar--compact,
.funil-header--compact .steps-bar {
    margin-bottom: 0;
    gap: 5px;
    width: 100%;
}

.funil-header--compact .step-item {
    flex: 1;
    justify-content: center;
    padding: 5px 6px;
    min-width: 0;
}

.wrap--funnel .card {
    margin-top: 0;
}

@media (max-width: 640px) {
    .funil-header--compact {
        padding: 4px 0 8px;
        gap: 6px;
    }

    .funil-header--compact .logo {
        font-size: 0.9rem;
    }

    .funil-header--compact .lang-btn {
        font-size: 0.65rem;
        padding: 3px 7px;
    }

    .funil-header--compact .step-label { display: none; }

    .funil-header--compact .step-item {
        padding: 4px;
    }

    .funil-header--compact .step-icon {
        width: 14px;
        height: 14px;
    }

    .wrap--funnel .card {
        padding-top: 18px;
    }

    .wrap--funnel {
        padding-top: max(10px, env(safe-area-inset-top));
    }
}

@media (max-width: 520px) {
    .step-label { display: none; }
    .step-item { padding: 8px; }
}

/* Cards */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}

.card-glass {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
}

h1 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); line-height: 1.15; margin-bottom: 12px; }
h2 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 12px; }
.lead { color: var(--muted); margin-bottom: 20px; font-size: .95rem; }

/* Hero landing */
.hero { text-align: center; margin-bottom: 32px; }

.hero-panel {
    position: relative;
    padding: 32px 24px 36px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(106, 17, 203, 0.09) 0%, transparent 70%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(106, 17, 203, 0.08);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.hero-panel h1 {
    max-width: 560px;
    margin: 0 auto 14px;
}

.hero-lead {
    max-width: 520px;
    margin: 0 auto 22px !important;
    text-align: center;
    font-size: 1rem;
    line-height: 1.65;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    background: #fff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.hero-meta-pill--accent {
    color: #047857;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #6ee7b7;
}

.btn-hero {
    min-width: 240px;
    font-size: 1rem;
    padding: 14px 28px;
    box-shadow: 0 12px 32px rgba(37, 117, 252, 0.28);
}

.hero-brand {
    margin: 0 auto 24px;
    max-width: 280px;
}

.hero-logo-orbit {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.hero-logo-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110px;
    height: 110px;
    margin: -55px 0 0 -55px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(106, 17, 203, 0.15));
}

.hero-temp-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    animation: heroOrbit 16s linear infinite;
    z-index: 1;
}

.hero-temp-orbit svg { width: 100%; height: 100%; display: block; }

.hero-temp-orbit--colerico { animation-delay: 0s; }
.hero-temp-orbit--sanguineo { animation-delay: -4s; }
.hero-temp-orbit--melancolico { animation-delay: -8s; }
.hero-temp-orbit--fleumatico { animation-delay: -12s; }

@keyframes heroOrbit {
    from { transform: rotate(0deg) translateX(82px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(82px) rotate(-360deg); }
}

.hero-svg { width: min(320px, 90vw); height: auto; margin: 0 auto 12px; display: block; }

.pulse-ring { animation: pulseRing 2.5s ease-in-out infinite; }
.float-y { animation: floatY 3s ease-in-out infinite; }

@keyframes pulseRing {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.04); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.free-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 18px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #6ee7b7;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.free-banner strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #047857;
}

.free-banner span {
    font-size: .88rem;
    color: #065f46;
    font-weight: 600;
}

.free-banner svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #10b981;
}

.free-strip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin-bottom: 16px;
    background: #ecfdf5;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    color: #047857;
}

.free-strip svg { width: 16px; height: 16px; }

.badge-pill.free-highlight {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #6ee7b7;
    color: #047857;
}

.badge-pill.free-highlight svg { color: #10b981; }

.cta-free-note {
    margin-top: 12px;
    font-size: .85rem;
    font-weight: 700;
    color: #047857;
    text-align: center;
}

.cta-sub-note {
    margin-top: 6px;
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.badge-pill svg { width: 16px; height: 16px; color: #2575fc; }

/* Temperament grid — mobile-first */
.temp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0;
}

@media (min-width: 480px) {
    .temp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .wrap-wide .temp-grid { grid-template-columns: repeat(4, 1fr); }
}

.temp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 14px;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    cursor: default;
}

.temp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.temp-card[data-t="colerico"]:hover { border-color: var(--colerico); }
.temp-card[data-t="sanguineo"]:hover { border-color: var(--sanguineo); }
.temp-card[data-t="melancolico"]:hover { border-color: var(--melancolico); }
.temp-card[data-t="fleumatico"]:hover { border-color: var(--fleumatico); }

.temp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.temp-icon svg { width: 100%; height: 100%; display: block; }

.temp-name { font-weight: 800; font-size: .95rem; margin-bottom: 4px; }
.temp-tag { font-size: .68rem; color: var(--muted); margin-bottom: 8px; line-height: 1.3; }
.temp-desc { font-size: .78rem; color: var(--muted); text-align: left; line-height: 1.45; }

.how-steps {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.how-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.how-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-item h3 { font-size: .9rem; margin-bottom: 4px; }
.how-item p { font-size: .82rem; color: var(--muted); margin: 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    font-family: inherit;
    text-decoration: none;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg { width: 18px; height: 18px; }

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 10px 28px rgba(37, 117, 252, .35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37, 117, 252, .4); }
.btn-primary:disabled { opacity: .6; cursor: wait; transform: none; }

.btn-ghost {
    background: transparent;
    color: var(--muted);
    box-shadow: none;
    font-size: .85rem;
    padding: 10px;
    width: auto;
}

.btn-outline {
    background: #fff;
    border: 2px solid var(--border);
    color: var(--ink);
    box-shadow: none;
}

.cta-wrap { margin-top: 28px; text-align: center; }
.cta-wrap .btn { max-width: 360px; margin: 0 auto; }

.disclaimer {
    text-align: center;
    margin-top: 20px;
    font-size: .72rem;
    color: #94a3b8;
}

/* Form */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
.field input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}

.field input:focus {
    outline: none;
    border-color: #2575fc;
    box-shadow: 0 0 0 4px rgba(37, 117, 252, .12);
}

.field-hint {
    margin: 6px 0 0;
    font-size: .72rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Test page */
.progress-wrap { margin-bottom: 24px; }

.progress-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: var(--grad);
    border-radius: 999px;
    transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

.progress-label {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
}

/* Likert grid — 3 em cima + 2 embaixo (estilo funil) */
.likert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px 14px;
    margin-top: 24px;
    padding: 8px 4px 4px;
}

.likert-card:nth-child(1) { grid-column: 1 / 3; }
.likert-card:nth-child(2) { grid-column: 3 / 5; }
.likert-card:nth-child(3) { grid-column: 5 / 7; }
.likert-card:nth-child(4) { grid-column: 2 / 4; }
.likert-card:nth-child(5) { grid-column: 4 / 6; }

@media (max-width: 640px) {
    .likert-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .likert-card:nth-child(1),
    .likert-card:nth-child(2),
    .likert-card:nth-child(3),
    .likert-card:nth-child(4),
    .likert-card:nth-child(5) {
        grid-column: auto;
    }
    .likert-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
}

.likert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 14px;
    min-height: 118px;
    border: 2px solid var(--border);
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: transform .15s, border-color .15s, box-shadow .15s;
    animation: likertIn .4s ease-out both;
}

@keyframes likertIn {
    from { opacity: 0; transform: scale(.92); }
    to { opacity: 1; transform: scale(1); }
}

.likert-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent, #2575fc);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .1);
}

.likert-card.selected {
    border-color: var(--accent, #2575fc);
    background: #f8fbff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 117, 252, .22);
}

.likert-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.likert-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.likert-label { font-size: .85rem; font-weight: 800; color: var(--ink); line-height: 1.25; text-align: center; }
.likert-sub { font-size: .72rem; color: var(--muted); line-height: 1.25; text-align: center; }

.question-in { animation: questionIn .35s ease-out; }

@keyframes questionIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.pergunta-wrap { min-height: 60px; margin-bottom: 4px; }

.teste-card-inner { position: relative; padding-top: 8px; }

.teste-step-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
}

.pergunta-funnel {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 20px 0 16px;
    text-align: left;
}

.pergunta-bar {
    flex-shrink: 0;
    width: 5px;
    min-height: 48px;
    align-self: stretch;
    background: var(--grad);
    border-radius: 999px;
}

.pergunta-body {
    flex: 1;
    min-width: 0;
}

.affirmation-label {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #2575fc;
    background: #eff6ff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.pergunta-texto {
    font-size: clamp(1.05rem, 3.5vw, 1.2rem);
    font-weight: 700;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.likert-hint {
    text-align: center;
    font-size: .88rem;
    color: var(--ink);
    margin: 16px 0 10px;
    font-weight: 600;
}

/* Result */
.card-result { padding: 28px 24px 32px; }

.result-layout { display: flex; flex-direction: column; gap: 0; }

.result-hero {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.result-icon-ring {
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    padding: 8px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(106, 17, 203, .08), rgba(37, 117, 252, .08));
    box-shadow: 0 8px 24px rgba(106, 17, 203, .12);
    animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1);
}

.result-icon-ring svg { width: 100%; height: 100%; display: block; }

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.result-title {
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -.02em;
}

.result-greeting {
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.result-greeting-sub {
    color: var(--muted);
    font-size: .86rem;
    margin: 0 0 14px;
    line-height: 1.55;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.result-badge {
    display: inline-block;
    padding: 7px 14px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #047857;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}

/* Stat pills */
.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .result-stats { grid-template-columns: 1fr; }
}

.result-stat {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 10px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.result-stat--lead {
    background: linear-gradient(135deg, rgba(106, 17, 203, .06), rgba(37, 117, 252, .04));
    border-color: rgba(106, 17, 203, .18);
    box-shadow: 0 4px 16px rgba(106, 17, 203, .08);
}

.result-stat-label {
    grid-column: 1 / -1;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
}

.result-stat-icon {
    grid-row: 2;
    width: 36px;
    height: 36px;
}

.result-stat-icon svg { width: 100%; height: 100%; }

.result-stat-name {
    grid-row: 2;
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
}

.result-stat-pct {
    grid-row: 2;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--stat-color, #6a11cb);
    line-height: 1;
}

/* Narrative / story */
.result-narrative {
    margin-bottom: 24px;
}

.result-narrative-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.result-story-intro {
    margin: 0;
    font-size: .95rem;
    line-height: 1.75;
    color: #475569;
    padding: 0 4px;
}

.result-story-quote {
    padding: 22px 24px 20px;
    background: linear-gradient(135deg, #faf5ff 0%, #f0f9ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, .15);
    position: relative;
}

.result-quote-label {
    display: block;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #8b5cf6;
    margin-bottom: 12px;
}

.result-story-quote blockquote {
    margin: 0;
    padding: 0 0 0 18px;
    border-left: 3px solid #8b5cf6;
}

.result-story-quote blockquote p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    font-weight: 500;
}

.result-story-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: .88rem;
    color: #64748b;
}

.result-story-secondary-icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.result-story-secondary strong {
    color: #334155;
}

.result-story-clarity {
    margin: 0;
    padding: 14px 16px;
    font-size: .84rem;
    line-height: 1.6;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 12px;
    text-align: center;
}

.result-insight-block {
    padding: 18px 20px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.result-insight-text {
    margin: 0;
    font-size: .9rem;
    line-height: 1.7;
    color: #475569;
}

.result-narrative-p {
    margin: 0 0 12px;
    font-size: .9rem;
    line-height: 1.7;
    color: #475569;
}

.result-narrative-p:last-child { margin-bottom: 0; }

.result-narrative-p.result-lead {
    font-size: .95rem;
    color: #334155;
    font-weight: 500;
}

.result-narrative-p.result-highlight {
    padding: 12px 14px;
    background: linear-gradient(135deg, #faf5ff, #f5f3ff);
    border-radius: 10px;
    border-left: 3px solid #8b5cf6;
    color: #334155;
}

.result-narrative-p strong { color: #6a11cb; font-weight: 700; }

/* Traits cards */
.result-traits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 560px) {
    .result-traits { grid-template-columns: 1fr; }
}

.result-trait-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid transparent;
}

.result-trait-card--good {
    background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
    border-color: #bbf7d0;
}

.result-trait-card--warn {
    background: linear-gradient(180deg, #fffbeb, #fff7ed);
    border-color: #fed7aa;
}

.result-trait-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-trait-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
}

.result-trait-card--good .result-trait-icon {
    background: #dcfce7;
    color: #047857;
}

.result-trait-card--warn .result-trait-icon {
    background: #ffedd5;
    color: #c2410c;
}

.result-trait-head h4 {
    margin: 0;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
    font-weight: 800;
}

.trait-chips { display: flex; flex-wrap: wrap; gap: 6px; }

.trait-chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .75);
    color: #047857;
    border: 1px solid rgba(4, 120, 87, .15);
}

.trait-chip-warn {
    color: #c2410c;
    border-color: rgba(194, 65, 12, .15);
}

/* Distribution section */
.result-section { margin-bottom: 8px; }

.result-section-title {
    margin: 0 0 16px;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #64748b;
}

.result-combo {
    margin: 20px 0 0;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #6a11cb;
}

.result-combo h4 {
    margin: 0 0 8px;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6a11cb;
    font-weight: 800;
}

.result-combo p {
    margin: 0;
    font-size: .88rem;
    line-height: 1.65;
    color: #475569;
}

.result-closing {
    margin: 20px 0 0;
    padding: 14px 16px;
    text-align: center;
    font-size: .82rem;
    line-height: 1.55;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
}

.result-actions {
    text-align: center;
    margin-top: 20px;
}

.result-actions .btn {
    width: auto;
    max-width: 320px;
    margin: 0 auto;
}

.result-upsell {
    margin-top: 28px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.result-upsell--first {
    margin-top: 0;
}

.result-ready-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #faf5ff, #eff6ff);
    border: 1px solid rgba(106, 17, 203, 0.15);
    border-radius: 16px;
    text-align: left;
}

.result-ready-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.12);
}

.result-ready-icon svg {
    width: 28px;
    height: 28px;
}

.result-ready-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1.3;
}

.result-ready-temp {
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
}

.result-free-gate {
    text-align: center;
    padding: 8px 0 28px;
    margin-bottom: 8px;
    border-bottom: 2px dashed rgba(148, 163, 184, 0.35);
}

.result-free-gate.is-hidden {
    display: none;
}

.result-free-gate-note {
    font-size: 0.76rem;
    color: #64748b;
    margin: 10px 0 0;
    font-weight: 500;
}

.btn-ver-resultado {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    padding: 16px 24px;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    color: #6a11cb;
    background: #fff;
    border: 2px solid #c4b5fd;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    box-shadow: 0 4px 16px rgba(106, 17, 203, 0.1);
}

.btn-ver-resultado:hover {
    transform: translateY(-2px);
    background: #faf5ff;
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.18);
}

.result-free-block {
    display: none;
}

.result-free-block.is-visible {
    display: block;
    animation: resultFreeReveal 0.45s ease forwards;
}

@keyframes resultFreeReveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.result-upsell-card {
    position: relative;
    text-align: center;
    padding: 26px 22px 22px;
    border-radius: 22px;
    background: linear-gradient(165deg, #f0fdf4 0%, #f8fafc 42%, #ecfdf5 100%);
    border: 2px solid rgba(16, 185, 129, 0.22);
    box-shadow:
        0 12px 36px rgba(16, 185, 129, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    animation: upsellCardGlow 3.2s ease-in-out infinite;
}

.result-upsell-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.55), rgba(5, 150, 105, 0.15), rgba(34, 197, 94, 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: upsellBorderSpin 6s linear infinite;
}

.result-upsell-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #047857;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.28);
    animation: upsellTagPop 2.4s ease-in-out infinite;
}

.result-upsell-title {
    margin: 0 0 10px;
    font-size: 1.22rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.result-upsell-lead {
    margin: 0 0 18px;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.result-upsell-benefits {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.result-upsell-benefits li {
    position: relative;
    padding: 9px 0 9px 30px;
    font-size: 0.86rem;
    color: #334155;
    line-height: 1.45;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.result-upsell-benefits li:last-child { border-bottom: none; }

.result-upsell-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #059669);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

.result-upsell-cta {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
}

.result-upsell-cta::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(360px, 92%);
    height: 64px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.45) 0%, transparent 70%);
    filter: blur(10px);
    animation: upsellCtaHalo 2.2s ease-in-out infinite;
    pointer-events: none;
}

.result-upsell-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 18px 28px;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 45%, #059669 100%);
    box-shadow:
        0 10px 28px rgba(22, 163, 74, 0.42),
        0 0 0 0 rgba(34, 197, 94, 0.5);
    overflow: hidden;
    animation: upsellCtaPulse 2s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-upsell-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: skewX(-18deg);
    animation: upsellCtaShine 3s ease-in-out infinite;
}

.result-upsell-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 16px 36px rgba(22, 163, 74, 0.5),
        0 0 0 4px rgba(34, 197, 94, 0.2);
    animation: none;
}

.result-upsell-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.result-upsell-note {
    margin: 14px 0 0;
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 600;
}

.result-upsell-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.result-upsell-price {
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid rgba(16, 185, 129, 0.35);
    border-radius: 16px;
    padding: 14px 16px;
    margin: 0 auto 18px;
    max-width: 280px;
}

.result-upsell-price-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #047857;
    margin-bottom: 4px;
}

.result-upsell-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    line-height: 1;
}

.result-upsell-price-currency {
    font-size: 1.1rem;
    font-weight: 800;
    color: #047857;
    margin-top: 0.3em;
}

.result-upsell-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #047857;
    letter-spacing: -0.03em;
}

.result-upsell-price-note {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 6px;
    font-weight: 500;
}

.result-upsell-testimonials {
    margin: 0 0 20px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.result-upsell-testimonials-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    text-align: center;
    margin-bottom: 10px;
}

.result-upsell-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-upsell-quote {
    margin: 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    text-align: left;
}

.result-upsell-quote-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.result-upsell-quote-head .testimonial-avatar {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
}

.result-upsell-quote p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #334155;
    margin: 0;
}

.result-upsell-quote footer {
    font-size: 0.68rem;
    color: #64748b;
}

.result-upsell-quote footer strong {
    color: #0f172a;
}

.result-upsell-guarantee {
    margin: 10px 0 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #047857;
}

@keyframes upsellCardGlow {
    0%, 100% { box-shadow: 0 12px 36px rgba(16, 185, 129, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.8) inset; }
    50% { box-shadow: 0 16px 44px rgba(16, 185, 129, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.9) inset; }
}

@keyframes upsellBorderSpin {
    to { filter: hue-rotate(18deg); }
}

@keyframes upsellTagPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes upsellCtaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 28px rgba(22, 163, 74, 0.42), 0 0 0 0 rgba(34, 197, 94, 0.45);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 14px 34px rgba(22, 163, 74, 0.52), 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

@keyframes upsellCtaShine {
    0% { left: -120%; }
    40%, 100% { left: 140%; }
}

@keyframes upsellCtaHalo {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .result-upsell-card,
    .result-upsell-tag,
    .result-upsell-btn,
    .result-upsell-cta::before,
    .result-upsell-card::before {
        animation: none !important;
    }
}

@media (max-width: 640px) {
    .result-upsell-btn {
        max-width: 100%;
        font-size: 1rem;
        padding: 18px 20px;
    }
    .result-upsell-price-value { font-size: 2.15rem; }
}

.result-email-notice {
    margin: 14px auto 0;
    max-width: 520px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(4, 120, 87, 0.08);
    border: 1px solid rgba(4, 120, 87, 0.2);
    color: #047857;
    font-size: .82rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.result-email-notice strong {
    color: #065f46;
    font-weight: 800;
}

.bars { margin: 0; }

.bar-row {
    margin-bottom: 14px;
    animation: barRowIn .45s ease-out both;
}

@keyframes barRowIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.bar-row--lead .bar-label { font-weight: 700; }
.bar-row--lead .bar-pct { color: #6a11cb; font-weight: 800; }
.bar-row--lead .bar-track { box-shadow: inset 0 0 0 2px rgba(106, 17, 203, .12); }

.bar-pct { font-weight: 700; font-size: .88rem; }

.bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.bar-label-icon { display: flex; align-items: center; gap: 8px; }
.bar-label-icon svg { width: 24px; height: 24px; }

.bar-track {
    height: 12px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s cubic-bezier(.4, 0, .2, 1);
    width: 0;
}

.bar-fill[data-t="colerico"] { background: linear-gradient(90deg, #fca5a5, #ef4444); }
.bar-fill[data-t="sanguineo"] { background: linear-gradient(90deg, #fcd34d, #f59e0b); }
.bar-fill[data-t="melancolico"] { background: linear-gradient(90deg, #c4b5fd, #8b5cf6); }
.bar-fill[data-t="fleumatico"] { background: linear-gradient(90deg, #6ee7b7, #10b981); }

.teaser-box {
    margin-top: 24px;
    padding: 18px;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    text-align: center;
    font-size: .88rem;
    color: var(--muted);
}

.share { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.share .btn { flex: 1; min-width: 120px; font-size: .88rem; padding: 14px 12px; width: auto; }

.share-block {
    margin-top: 20px;
    padding-top: 8px;
}

.share-block--collapse {
    border-top: 1px solid #e2e8f0;
}

.share-block-summary {
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-align: center;
    list-style: none;
    padding: 10px 0;
    user-select: none;
}

.share-block-summary::-webkit-details-marker {
    display: none;
}

.share-block-body {
    padding-top: 4px;
}

.share-block-title {
    margin: 0 0 16px;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #64748b;
    text-align: center;
}

.share-preview-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(106, 17, 203, .15);
    border: 1px solid rgba(106, 17, 203, .1);
    max-width: 100%;
}

.share-preview-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.share-lead {
    margin: 14px 0 0;
    font-size: .88rem;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
}

.btn-fb-connect {
    display: inline-flex !important;
    margin: 8px auto 0;
    width: auto;
    max-width: 320px;
    font-size: .82rem;
}

.btn-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
    border: none !important;
}

.btn-whatsapp:hover { filter: brightness(1.05); }

.btn-facebook {
    background: #1877f2 !important;
    color: #fff !important;
    border: none !important;
}

.btn-facebook:hover { filter: brightness(1.05); }

/* Captura pós-teste */
.unlock-preview {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(106,17,203,.06), rgba(37,117,252,.06));
    border-radius: 16px;
    margin-bottom: 24px;
}

.unlock-preview .lock-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    color: #2575fc;
}

.unlock-preview .lock-icon svg { width: 100%; height: 100%; }

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: .88rem;
    display: none;
}

.alert-error.show { display: block; }

.loading-dots::after {
    content: '';
    animation: dots 1.2s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}

.spinner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top-color: #2575fc;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.fade-in { animation: fadeIn .5s ease-out; }

/* Motion system — todas as páginas */
@keyframes pageEnter {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.page-enter .wrap,
body.page-enter > .wrap {
    animation: pageEnter 0.45s ease-out;
}

.funil-motion-ready .motion-in {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0s);
}

.funil-motion-ready .motion-in.motion-in--child {
    transform: translateY(14px) scale(0.98);
}

.funil-motion-ready .motion-in.is-visible,
.funil-motion-ready .motion-in.motion-in--now {
    opacity: 1;
    transform: none;
}

.funil-motion-ready .funil-header.motion-in {
    transform: translateY(-8px);
}

.funil-motion-ready .funil-header.motion-in.is-visible,
.funil-motion-ready .funil-header.motion-in--now {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .funil-motion-ready .motion-in,
    body.page-enter .wrap,
    .hero-temp-orbit,
    .pulse-ring,
    .float-y {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Intro funnel (slides por temperamento) ===== */
.intro-funnel { display: flex; flex-direction: column; }

.intro-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 4px;
}

.intro-progress-track {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.intro-progress-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 999px;
    transition: width .45s cubic-bezier(.4, 0, .2, 1);
    width: 0%;
}

.intro-progress-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--muted);
    white-space: nowrap;
}

.intro-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.intro-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all .3s;
    cursor: pointer;
}

.intro-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--grad);
}

.intro-dot.done { background: #6ee7b7; }

.intro-stage {
    position: relative;
    flex: 1;
    overflow: visible;
    min-height: 0;
}

.intro-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    position: relative;
    overflow: visible;
    padding-right: 0;
}

.intro-extra-box {
    margin: 8px 0;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid var(--accent, #2575fc);
    text-align: left;
}

.intro-extra-box h4 {
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-extra-box .box-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent, #2575fc);
    display: inline-flex;
}

.intro-extra-box .box-icon svg { width: 100%; height: 100%; display: block; }

.intro-extra-box p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.intro-bullets {
    text-align: left;
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.intro-bullets li {
    position: relative;
    padding: 10px 12px 10px 36px;
    margin-bottom: 8px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.5;
    animation: chipIn .4s ease-out both;
}

.intro-bullets li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 10px;
    width: 18px;
    height: 18px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-welcome-note {
    margin-top: 16px;
    padding: 14px;
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    border-radius: 14px;
    font-size: .82rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
}

.intro-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px) scale(.98);
    pointer-events: none;
    transition: opacity .4s ease, transform .45s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.intro-slide.exit-left {
    opacity: 0;
    transform: translateX(-40px) scale(.98);
}

.intro-slide-hero {
    text-align: center;
    padding: 12px 0 20px;
}

.intro-slide-hero .big-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    animation: introPop .6s cubic-bezier(.34, 1.56, .64, 1);
}

.intro-slide-hero .big-icon svg { width: 100%; height: 100%; }

@keyframes introPop {
    from { transform: scale(0) rotate(-8deg); opacity: 0; }
    to { transform: scale(1) rotate(0); opacity: 1; }
}

.intro-slide h1 {
    font-size: clamp(1.4rem, 4vw, 1.85rem);
    margin-bottom: 10px;
    text-align: center;
}

.intro-slide .intro-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.intro-text strong { color: var(--ink); }

.intro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
    justify-content: center;
}

.intro-chip {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    background: #f1f5f9;
    border: 1px solid var(--border);
    animation: chipIn .4s ease-out both;
}

.intro-chip.warn {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.intro-chip .chip-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    flex-shrink: 0;
}

.intro-chip .chip-icon svg { width: 100%; height: 100%; display: block; }

.intro-icon-tile {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 20px;
    color: #2575fc;
}

.intro-icon-tile svg { width: 36px; height: 36px; }

@keyframes chipIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.intro-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: auto;
    padding-top: 20px;
    min-height: 52px;
}

.intro-nav .btn-primary {
    flex: 0 1 auto;
    width: min(100%, 380px);
    max-width: 380px;
    margin: 0 auto;
}

.intro-nav .btn-back {
    position: absolute;
    left: 0;
    top: 20px;
    flex: 0 0 auto;
    width: auto;
    min-width: auto;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid var(--border);
    color: var(--ink);
    box-shadow: none;
}

@media (max-width: 480px) {
    .intro-nav .btn-back {
        position: static;
        order: 2;
        width: 100%;
        margin-top: 8px;
    }

    .intro-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .intro-nav .btn-primary {
        width: 100%;
        max-width: none;
        order: 1;
    }
}

.intro-welcome-icon {
    width: min(200px, 72vw);
    height: auto;
    margin: 0 auto 20px;
    position: relative;
    animation: introPop .7s cubic-bezier(.34, 1.56, .64, 1);
}

.intro-welcome-icon .intro-welcome-logo,
.intro-welcome-icon .welcome-hub {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(106, 17, 203, 0.18));
}

.intro-ready {
    text-align: center;
    padding: 20px 0;
}

.intro-ready .check-burst {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introPop .6s cubic-bezier(.34, 1.56, .64, 1);
}

.intro-ready .check-burst svg { width: 44px; height: 44px; color: #10b981; }

/* Index extras */
.info-block {
    margin: 20px 0;
    padding: 18px;
    background: linear-gradient(135deg, rgba(106,17,203,.04), rgba(37,117,252,.04));
    border-radius: 16px;
    border: 1px solid var(--border);
}

.info-block h3 { font-size: .95rem; margin-bottom: 8px; }
.info-block p { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.55; }

.temp-forcas {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
    justify-content: center;
}

.temp-forca {
    font-size: .65rem;
    padding: 3px 8px;
    background: #f1f5f9;
    border-radius: 999px;
    font-weight: 600;
    color: #475569;
}

.temp-card.reveal {
    animation: cardReveal .5s ease-out both;
}

@keyframes cardReveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.wheel-preview {
    max-width: 280px;
    margin: 0 auto 20px;
    animation: floatY 4s ease-in-out infinite;
}

.wheel-preview svg { width: 100%; height: auto; display: block; }

/* Ad slots — ocultos até ativar AdSense (adicione class="ads-on" no body) */
.ad-slot {
    display: none;
    margin: 28px auto;
    padding: 12px;
    min-height: 90px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .72rem;
    color: #94a3b8;
    max-width: 100%;
}

body.ads-on .ad-slot { display: flex; }

.ad-slot.ad-leader { min-height: 120px; }
.ad-slot.ad-rect { min-height: 250px; max-width: 336px; }

.section-block {
    margin: 32px 0;
    padding-top: 8px;
}

.section-block h2 {
    text-align: center;
    margin-bottom: 8px;
}

.section-block .section-lead {
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 24px 0;
}

@media (max-width: 600px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

.stat-box {
    text-align: center;
    padding: 16px 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.stat-box .stat-n {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .stat-l {
    font-size: .68rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
}

@media (max-width: 560px) {
    .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform .2s, box-shadow .2s;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.benefit-card .b-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    color: #2575fc;
}

.benefit-card .b-icon svg { width: 24px; height: 24px; display: block; }
.benefit-card h3 { font-size: .92rem; margin-bottom: 6px; }
.benefit-card p { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.5; }

.temp-detail-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }

.temp-detail {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    align-items: flex-start;
}

@media (max-width: 520px) {
    .temp-detail { flex-direction: column; align-items: center; text-align: center; }
}

.temp-detail-icon { width: 72px; height: 72px; flex-shrink: 0; }
.temp-detail-icon svg { width: 100%; height: 100%; }

.temp-detail h3 { font-size: 1.05rem; margin-bottom: 6px; }
.temp-detail .temp-detail-tag { font-size: .72rem; font-weight: 700; margin-bottom: 10px; opacity: .85; }
.temp-detail p { font-size: .84rem; color: var(--muted); line-height: 1.55; margin-bottom: 8px; }
.temp-detail p:last-child { margin-bottom: 0; }

.compare-wrap {
    width: 100%;
    overflow: visible;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    background: #f8fafc;
    font-weight: 700;
    font-size: .72rem;
}

.compare-table tr:last-child td { border-bottom: 0; }

.compare-table td:first-child { font-weight: 600; color: var(--ink); }

.faq-list { margin: 20px 0; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.faq-item summary {
    padding: 14px 16px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: #2575fc;
    font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 16px 14px;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.cta-banner {
    margin: 32px 0 16px;
    padding: 28px 24px;
    background: var(--grad);
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.cta-banner h2 { color: #fff; margin-bottom: 8px; font-size: 1.35rem; }
.cta-banner p { opacity: .92; font-size: .9rem; margin-bottom: 20px; }
.cta-banner .btn { background: #fff; color: #2575fc; box-shadow: 0 8px 24px rgba(0,0,0,.15); max-width: 340px; margin: 0 auto; }

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

@media (max-width: 700px) {
    .content-two-col { grid-template-columns: 1fr; }
}

/* =============================================================================
   Responsivo global — funil Moodz4U (mobile-first)
   ============================================================================= */

@media (max-width: 640px) {
    .card { padding: 22px 18px; border-radius: 20px; }

    .wrap-wide { max-width: 100%; }

    .free-banner {
        flex-direction: column;
        padding: 12px 14px;
        gap: 8px;
    }

    .free-banner strong { font-size: .95rem; }
    .free-banner span { font-size: .8rem; }

    .hero-panel { padding: 24px 16px 28px; border-radius: 22px; }
    .hero-logo-core { width: 96px; height: 96px; margin: -48px 0 0 -48px; }
    .hero-meta-pill { font-size: .76rem; padding: 8px 12px; }
    .btn-hero { min-width: 0; width: 100%; }

    .badge-pill { font-size: .75rem; padding: 7px 12px; }

    .temp-card {
        padding: 18px 16px;
        text-align: left;
    }

    .temp-icon { width: 56px; height: 56px; margin: 0 0 10px; }
    .temp-name { font-size: 1rem; }
    .temp-tag { font-size: .72rem; }
    .temp-desc { font-size: .82rem; }
    .temp-forcas { justify-content: flex-start; }

    .share { flex-direction: column; }
    .share .btn { width: 100%; min-width: 0; flex: none; }

    .stats-row { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-box { padding: 12px 8px; }
    .stat-box .stat-n { font-size: 1.2rem; }

    .compare-wrap { overflow: visible; margin: 0; }

    .compare-table {
        display: block;
        min-width: 0;
        border: 0;
        margin: 16px 0 0;
        background: transparent;
    }

    .compare-table thead { display: none; }

    .compare-table tbody {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .compare-table tr {
        display: block;
        padding: 14px 16px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    }

    .compare-table td {
        display: block;
        padding: 0;
        border: 0;
        font-size: .84rem;
        line-height: 1.45;
    }

    .compare-table td:first-child {
        font-size: 1rem;
        font-weight: 800;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid #f1f5f9;
    }

    .compare-table td:not(:first-child) {
        padding: 5px 0 0;
        color: var(--muted);
    }

    .compare-table td:not(:first-child)::before {
        content: attr(data-label);
        display: block;
        font-size: .68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--ink);
        margin-bottom: 2px;
    }

    .intro-slide-hero .big-icon { width: 96px; height: 96px; }
    .intro-chips { justify-content: flex-start; }

    .result-stats { gap: 10px; }
    .sticky-cta { padding-bottom: max(12px, env(safe-area-inset-bottom)); }

    h1 { font-size: clamp(1.45rem, 5.5vw, 2rem); }
    .lead { font-size: .9rem; }
}

@media (max-width: 380px) {
    .wrap { padding-left: 12px; padding-right: 12px; }

    .temp-grid { gap: 12px; }

    .stats-row { grid-template-columns: 1fr; }

    .step-item { padding: 6px; }

    .btn { font-size: .92rem; padding: 14px 18px; }

    .lang-btn { font-size: .68rem; padding: 3px 8px; }
}

@media (min-width: 641px) and (max-width: 899px) {
    .wrap-wide .temp-grid { grid-template-columns: repeat(2, 1fr); }
}

.estudo-section { margin-top: 1.25rem; }
.estudo-text {
    color: var(--text-muted, #475569);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    white-space: pre-wrap;
}

/* Mega resultado teste completo */
.mega-quote {
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--primary, #6a11cb);
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
}

.mega-traits { margin-bottom: 1rem; }

.mega-intro { margin-bottom: 0.5rem; }

.mega-part-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mega-section-sub {
    color: #64748b;
    font-size: 0.88rem;
    margin: -0.25rem 0 1rem;
    line-height: 1.5;
}

.mega-area-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.mega-area-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.mega-area-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--area-color, #6a11cb) 12%, white);
    color: var(--area-color, #6a11cb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-area-icon-svg { width: 18px; height: 18px; }

.mega-area-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.mega-area-resumo {
    margin: 0 0 1rem;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
}

.mega-area-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0.75rem;
}

@media (max-width: 640px) {
    .mega-area-cols { grid-template-columns: 1fr; }
}

.mega-list {
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.86rem;
}

.mega-list--good {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.mega-list--warn {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.mega-list-title {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.mega-list ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #334155;
    line-height: 1.55;
}

.mega-list li { margin-bottom: 0.35rem; }

.mega-subtitle {
    margin: 0.75rem 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.mega-compat-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

@media (max-width: 640px) {
    .mega-compat-mini-grid { grid-template-columns: 1fr; }
}

.mega-compat-mini {
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    border-left: 3px solid var(--compat-color, #6a11cb);
}

.mega-compat-mini-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.mega-compat-mini-head .mega-compat-icon,
.mega-compat-mini-head svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.mega-compat-mini p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

.mega-compat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 640px) {
    .mega-compat-grid { grid-template-columns: 1fr; }
}

.mega-compat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
    border-top: 3px solid var(--compat-color, #6a11cb);
}

.mega-compat-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.mega-compat-card-head .mega-compat-icon,
.mega-compat-card-head svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: block;
}

.mega-compat-card p {
    margin: 0;
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.6;
}

.mega-combo {
    display: block;
    margin: 1rem 0;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, #faf5ff, #eff6ff);
    border-radius: 14px;
    border: 1px solid #e9d5ff;
}

.mega-combo h4 {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6a11cb;
}

.mega-combo p {
    margin: 0;
    color: #334155;
    line-height: 1.65;
    font-size: 0.92rem;
}

.mega-four-temps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 640px) {
    .mega-four-temps-grid { grid-template-columns: 1fr; }
}

.mega-four-temp-card {
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 3px solid var(--temp-color, #6a11cb);
}

.mega-four-temp-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.mega-four-temp-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
}

.mega-four-temp-pct {
    margin-left: auto;
    font-weight: 700;
    color: var(--temp-color, #6a11cb);
    font-size: 0.85rem;
}

.mega-four-temp-card p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
    font-size: 0.88rem;
}

.mega-blind-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #334155;
    line-height: 1.65;
}

.mega-blind-list li { margin-bottom: 0.45rem; }

.mega-dev-section { margin-top: 0.5rem; }

.mega-action-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-action-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.mega-action-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-action-item strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.mega-action-item p {
    margin: 0;
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.5;
}

.card-result.mega-result { max-width: 720px; }

/* =============================================================================
   Landing page — Facebook Ads retarget (mapa-completo.html)
   ============================================================================= */

.lp-mapa-page {
    background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 35%, #f8fafc 100%);
}

.lp-mapa-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 88px;
}

.lp-mapa-header .funil-header-row {
    justify-content: space-between;
    align-items: center;
}

.lp-mapa-header-badge {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    white-space: nowrap;
}

.lp-mapa-main {
    padding: 8px 16px 32px;
}

.lp-mapa-hero {
    text-align: center;
    padding: 28px 20px 32px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    margin-bottom: 24px;
}

.lp-mapa-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.lp-mapa-price-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 2px solid #a7f3d0;
    border-radius: 18px;
    padding: 18px 16px;
    margin-bottom: 20px;
    text-align: center;
}

.lp-mapa-price-box--compact {
    padding: 12px 16px;
    margin: 16px 0 0;
}

.lp-mapa-price-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #047857;
    margin-bottom: 6px;
}

.lp-mapa-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.lp-mapa-price-currency {
    font-size: 1.25rem;
    font-weight: 800;
    color: #047857;
    margin-top: 0.35em;
}

.lp-mapa-price-value {
    font-size: clamp(2.4rem, 8vw, 3rem);
    font-weight: 800;
    color: #047857;
    letter-spacing: -0.03em;
}

.lp-mapa-price-note {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 8px;
    font-weight: 500;
}

.lp-mapa-benefits {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 24px 18px;
    margin-bottom: 24px;
}

.lp-mapa-benefits h2 {
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #0f172a;
}

.lp-mapa-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.lp-mapa-benefit-card {
    padding: 16px 14px;
    background: linear-gradient(135deg, #faf5ff, #eff6ff);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-align: left;
}

.lp-mapa-benefit-icon {
    font-size: 1.35rem;
    display: block;
    margin-bottom: 8px;
}

.lp-mapa-benefit-card h3 {
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0f172a;
    line-height: 1.3;
}

.lp-mapa-benefit-card p {
    font-size: 0.74rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.lp-mapa-testimonials {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 24px 18px;
    margin-bottom: 24px;
}

.lp-mapa-testimonials h2 {
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
    color: #0f172a;
}

.lp-mapa-testimonials-lead {
    text-align: center;
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.lp-mapa-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.lp-mapa-testimonial-card {
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.lp-mapa-testimonial-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lp-mapa-testimonial-head .testimonial-avatar {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.1);
}

.lp-mapa-testimonial-head .lp-mapa-testimonial-meta {
    flex: 1;
    min-width: 0;
}

.lp-mapa-testimonial-head .lp-mapa-testimonial-temp {
    margin-left: 0;
}

.lp-mapa-testimonial-quote {
    font-size: 0.84rem;
    line-height: 1.55;
    color: #0f172a;
}

.lp-mapa-testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    font-size: 0.68rem;
}

.lp-mapa-testimonial-name { font-weight: 700; }

.lp-mapa-testimonial-local { color: #64748b; }

.lp-mapa-testimonial-temp {
    font-weight: 700;
    margin-left: auto;
    padding: 3px 8px;
    background: #fff;
    border-radius: 999px;
    white-space: nowrap;
}

.lp-mapa-table td.no {
    color: #cbd5e1;
    font-weight: 600;
}

.lp-mapa-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    border: 2px solid #10b981;
    margin-bottom: 16px;
    background: #fff;
}

.lp-mapa-title {
    font-size: clamp(1.55rem, 5vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 16px;
}

.lp-mapa-title span {
    background: linear-gradient(135deg, #047857, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-mapa-lead {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: left;
}

.lp-mapa-cta-main {
    display: inline-block;
    width: 100%;
    max-width: 380px;
    text-decoration: none;
}

.lp-mapa-trust {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 14px;
    line-height: 1.5;
}

.lp-mapa-compare {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 24px 18px;
    margin-bottom: 24px;
}

.lp-mapa-compare h2 {
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #0f172a;
}

.lp-mapa-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.lp-mapa-table th,
.lp-mapa-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
}

.lp-mapa-table th {
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
}

.lp-mapa-table td.yes {
    color: #047857;
    font-weight: 800;
}

.lp-mapa-upsell {
    margin-top: 0;
    margin-bottom: 24px;
}

.lp-mapa-faq {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 20px 18px;
    margin-bottom: 24px;
}

.lp-mapa-faq h2 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
}

.lp-mapa-faq-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 4px 0;
}

.lp-mapa-faq-item summary {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 0;
    cursor: pointer;
    color: #0f172a;
}

.lp-mapa-faq-item p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    padding-bottom: 12px;
    margin: 0;
}

.lp-mapa-footer-cta {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border-radius: 24px;
    border: 1px solid #a7f3d0;
}

.lp-mapa-footer-cta h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.lp-mapa-footer-cta p {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.lp-mapa-secondary {
    margin-top: 16px;
    font-size: 0.82rem;
}

.lp-mapa-secondary a {
    color: #6a11cb;
    font-weight: 600;
    text-decoration: none;
}

.lp-mapa-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    z-index: 200;
    display: flex;
    justify-content: center;
}

.lp-mapa-sticky .btn {
    width: 100%;
    max-width: 400px;
    text-decoration: none;
    text-align: center;
}

@media (max-width: 480px) {
    .lp-mapa-hero { padding: 22px 16px 26px; }
    .lp-mapa-table { font-size: 0.78rem; }
    .lp-mapa-header-badge { font-size: 0.62rem; padding: 5px 10px; }
    .lp-mapa-benefits-grid { grid-template-columns: 1fr; }
    .lp-mapa-testimonial-meta { flex-direction: column; align-items: flex-start; }
    .lp-mapa-testimonial-temp { margin-left: 0; }
    .lp-mapa-price-value { font-size: 2.2rem; }
}

@media (min-width: 560px) {
    .lp-mapa-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Resultado v2 (conversão) ── */
.result-layout--v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-layout--v2 .result-ready-strip {
    margin-bottom: 0;
}

.result-layout--v2 .result-free-summary {
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-layout--v2 .result-bridge {
    margin-bottom: 0;
}

.result-layout--v2 .result-upsell--v2 {
    margin-top: 0;
}

.result-free-summary {
    text-align: center;
    padding: 4px 4px 24px;
    margin-bottom: 22px;
    --temp-color: #6a11cb;
    --temp-bg: #f5f3ff;
}

.result-free-summary[data-temp="colerico"] { --temp-color: #ef4444; --temp-bg: #fef2f2; }
.result-free-summary[data-temp="sanguineo"] { --temp-color: #f59e0b; --temp-bg: #fffbeb; }
.result-free-summary[data-temp="melancolico"] { --temp-color: #8b5cf6; --temp-bg: #f5f3ff; }
.result-free-summary[data-temp="fleumatico"] { --temp-color: #10b981; --temp-bg: #ecfdf5; }

.result-free-hero {
    padding: 20px 16px 18px;
    margin-bottom: 16px;
    background: linear-gradient(180deg, var(--temp-bg) 0%, #fff 72%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.result-free-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-free-icon svg,
.result-temp-hero-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.result-free-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--temp-color);
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--temp-color) 28%, transparent);
}

.result-free-prefix {
    font-size: 0.92rem;
    font-weight: 600;
    color: #475569;
    margin: 0 0 4px;
    line-height: 1.4;
}

.result-free-temp-name {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    color: var(--temp-color);
}

.result-free-resumo {
    font-size: 0.84rem;
    line-height: 1.55;
    color: #475569;
    margin: 0 auto;
    max-width: 32em;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 3px solid var(--temp-color);
    border-radius: 0 10px 10px 0;
    text-align: left;
    font-style: normal;
    font-weight: 500;
}

.result-free-traits {
    display: grid;
    gap: 12px;
    text-align: left;
}

.result-free-trait-block {
    padding: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.result-free-trait-block--warn {
    background: #fffbeb;
    border-color: #fde68a;
}

.result-free-trait-block h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin: 0 0 10px;
}

.result-free-trait-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    color: #fff;
    background: var(--temp-color);
}

.result-free-trait-block--warn .result-free-trait-icon {
    background: #f59e0b;
}

.result-free-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.result-free-chip {
    display: inline-block;
    padding: 7px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    background: color-mix(in srgb, var(--temp-color) 10%, #fff);
    border: 1px solid color-mix(in srgb, var(--temp-color) 22%, transparent);
    border-radius: 999px;
    line-height: 1.2;
}

.result-free-chip--warn {
    color: #92400e;
    background: #fff;
    border-color: #fcd34d;
}

.result-email-notice--compact {
    font-size: 0.76rem;
    margin-top: 16px;
}

.result-free-pct-badge {
    display: inline-block;
    margin: 8px auto 14px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--temp-color, #6a11cb);
    background: var(--temp-bg, #f5f3ff);
    border: 1px solid color-mix(in srgb, var(--temp-color, #6a11cb) 25%, transparent);
    text-align: center;
}

.result-secondary-teaser {
    margin-top: 16px;
    padding: 16px 14px;
    border-radius: 14px;
    text-align: center;
    background: linear-gradient(135deg, #faf5ff 0%, #f8fafc 100%);
    border: 1px solid #ddd6fe;
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.result-secondary-teaser:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.12);
}

.result-secondary-teaser-label {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.result-secondary-teaser-glyphs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    margin-bottom: 8px;
}

.result-secondary-teaser-lock {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.9;
}

.result-secondary-glyph {
    display: block;
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, #cbd5e1, #94a3b8);
    opacity: 0.85;
}

.result-secondary-glyph:nth-child(2) { width: 42px; }
.result-secondary-glyph:nth-child(3) { width: 64px; height: 13px; }
.result-secondary-glyph:nth-child(4) { width: 34px; }

.result-secondary-teaser-hint {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.45;
    color: #64748b;
}

.result-pct-teaser {
    margin-top: 18px;
    padding: 14px 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
}

.result-pct-teaser-title {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}

.result-pct-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-pct-bar-row {
    display: grid;
    grid-template-columns: 28px minmax(72px, 1fr) 1fr 42px;
    align-items: center;
    gap: 6px;
}

.result-pct-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.result-pct-bar-icon--temp svg {
    width: 22px;
    height: 22px;
    display: block;
}

.result-pct-bar-icon--lock {
    font-size: 0.72rem;
    opacity: 0.75;
}

.result-pct-bar-label-blur {
    display: inline-block;
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    color: #64748b;
}

.result-pct-bar-row.is-locked .result-pct-bar-label {
    color: #94a3b8;
}

.result-pct-bar-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
}

.result-pct-bar-track {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.result-pct-bar-fill {
    display: block;
    height: 100%;
    width: var(--h, 40%);
    border-radius: inherit;
    background: linear-gradient(90deg, #7c3aed, #6a11cb);
}

.result-pct-bar-row.is-locked .result-pct-bar-fill {
    background: linear-gradient(90deg, #cbd5e1, #94a3b8);
    filter: blur(1px);
    opacity: 0.65;
}

.result-pct-bar-val {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    text-align: right;
}

.result-pct-bar-row.is-locked .result-pct-bar-val {
    color: #94a3b8;
    letter-spacing: 0.04em;
}

.result-pct-teaser-hint {
    margin: 12px 0 0;
    font-size: 0.74rem;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
}

.result-curiosity {
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 55%, #fff 100%);
    border: 1px solid #fcd34d;
    cursor: pointer;
    text-align: left;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.result-curiosity:hover,
.result-curiosity:focus-visible {
    transform: translateY(-1px);
    border-color: #f59e0b;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.18);
    outline: none;
}

.result-curiosity--upsell {
    margin: 0 0 14px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #c4b5fd;
}

.result-curiosity--upsell:hover,
.result-curiosity--upsell:focus-visible {
    border-color: #8b5cf6;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15);
}

.result-curiosity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #b45309;
    margin-bottom: 6px;
}

.result-curiosity--upsell .result-curiosity-badge {
    color: #7c3aed;
}

.result-curiosity-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    font-weight: 600;
    color: #1e293b;
}

.result-curiosity-cta {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #6a11cb;
}

.result-early-cta {
    margin-top: 16px;
    padding-top: 4px;
}

.result-checkout-btn--early,
.result-checkout-btn--bridge {
    animation: resultCtaPulse 2.4s ease-in-out infinite;
}

@keyframes resultCtaPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(106, 17, 203, 0.28); }
    50% { box-shadow: 0 8px 28px rgba(106, 17, 203, 0.42); }
}

.result-bridge-cta {
    margin-top: 14px;
}

.result-locked-tap {
    font-size: 0.62rem;
    font-weight: 700;
    color: #7c3aed;
    margin-top: auto;
}

.result-upsell-testimonial {
    margin: 0 0 16px;
}

.result-authority-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 16px;
    padding: 12px 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    border: 1px solid #dbeafe;
}

.result-authority-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    padding: 4px 6px;
}

.result-authority-value {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.result-authority-label {
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.3;
    color: #64748b;
}

.result-upsell-testimonials {
    margin: 0 0 16px;
}

.result-testimonials-title {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    text-align: center;
}

.result-testimonials-carousel {
    position: relative;
}

.result-testimonials-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.result-testimonials-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.result-testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 2px 4px;
    box-sizing: border-box;
}

.result-testimonial-card {
    padding: 20px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #faf5ff 0%, #f8fafc 100%);
    border: 1px solid #e9d5ff;
    text-align: left;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.result-carousel-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #fff;
    color: #6a11cb;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.result-carousel-btn:hover {
    background: #f5f3ff;
    border-color: #c4b5fd;
}

.result-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    max-width: 220px;
}

.result-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.result-carousel-dot.is-active {
    background: #7c3aed;
    transform: scale(1.2);
}

.result-section-icon {
    display: inline-block;
    margin-right: 2px;
}

.result-pct-teaser-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.result-bridge-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.result-benefit-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 16px;
}

.result-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.result-benefit-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(106, 17, 203, 0.08);
}

.result-benefit-card__text {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    font-weight: 600;
    color: #334155;
    padding-top: 2px;
}

.result-testimonial-name--blur {
    display: inline-block;
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.result-testimonial-stars {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #f59e0b;
    margin-bottom: 10px;
}

.result-testimonial-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.result-testimonial-head .testimonial-avatar {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    box-shadow: 0 3px 12px rgba(106, 17, 203, 0.12);
}

.result-testimonial-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
    max-width: 42em;
}

.result-locked-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.result-locked-card {
    position: relative;
    overflow: hidden;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    color: inherit;
    text-align: left;
    width: 100%;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.result-locked-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.result-locked-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 10px;
    background: #f5f3ff;
}

.result-locked-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.3;
}

.result-locked-tap {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    color: #7c3aed;
}

.result-preview-card h4 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-preview-card__icon {
    font-size: 0.9rem;
    line-height: 1;
}

.result-upsell-card--v2 .result-upsell-lead {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: none;
}

.result-upsell-card--v2 .result-upsell-title {
    font-size: 1.12rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.result-bridge-lead {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 18px;
    text-align: center;
    max-width: none;
}

.result-bridge-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.4;
    text-align: center;
}

@media (min-width: 768px) {
    .result-upsell-card--v2 .result-upsell-lead,
    .result-bridge-lead {
        max-width: 38em;
        margin-left: auto;
        margin-right: auto;
    }

    .result-benefit-card__text {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .result-testimonial-text {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .result-preview-lead {
        max-width: 36em;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 480px) {
    .result-benefit-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .result-locked-grid {
        grid-template-columns: 1fr 1fr;
    }

    .result-authority-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .result-authority-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2px;
    }
}

@media (min-width: 640px) {
    .result-authority-label {
        font-size: 0.68rem;
    }
}

/* removed: 3-column testimonials — sempre empilhado */

.result-preview-lead {
    margin: -6px 0 12px;
    font-size: 0.74rem;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
}

.result-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.result-testimonial-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: #0f172a;
}

.result-testimonial-local {
    font-size: 0.66rem;
    color: #64748b;
}

.result-testimonial-temp {
    font-size: 0.64rem;
    font-weight: 700;
}

.result-upsell-testimonial .result-upsell-quote {
    margin: 0;
    padding: 14px;
    border-radius: 12px;
    background: #faf5ff;
    border: 1px solid #ede9fe;
}

.funil-purchase-toast {
    position: fixed;
    left: 12px;
    bottom: 72px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: min(320px, calc(100vw - 24px));
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.funil-purchase-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.funil-purchase-toast.is-hiding {
    opacity: 0;
    transform: translateY(8px);
}

.funil-purchase-toast__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.funil-purchase-toast__text {
    flex: 1;
    font-size: 0.72rem;
    line-height: 1.35;
    color: #334155;
    font-weight: 600;
}

.funil-purchase-toast__time {
    font-size: 0.62rem;
    color: #94a3b8;
    white-space: nowrap;
}

body.has-result-sticky .funil-purchase-toast {
    bottom: 84px;
}

.result-upsell-testimonial .result-upsell-quote {
    margin: 0;
    padding: 14px;
    border-radius: 12px;
    background: #faf5ff;
    border: 1px solid #ede9fe;
}

.result-upsell-testimonial .result-upsell-quote p {
    margin: 0 0 8px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #334155;
}

.result-upsell-guarantee {
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.45;
    color: #166534;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    text-align: center;
}

.result-bridge--compact .result-bridge-lead {
    margin-bottom: 12px;
}

.result-bridge {
    margin-bottom: 0;
    padding: 20px 16px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.result-bridge-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.result-bridge-lead {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 18px;
    text-align: center;
}

.result-locked-card:hover,
.result-locked-card:focus-visible {
    transform: translateY(-1px);
    border-color: #c4b5fd;
    box-shadow: 0 4px 14px rgba(106, 17, 203, 0.12);
    outline: none;
}

.result-upsell--v2 {
    margin-top: 0;
}

.result-upsell-card--v2 {
    animation: none;
    padding: 20px 16px 22px;
    text-align: left;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: visible;
}

.result-upsell-card--v2::before {
    display: none;
}

.result-upsell-card--v2 .result-upsell-tag {
    animation: none;
    margin-bottom: 12px;
    font-size: 0.65rem;
    color: #6a11cb;
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.result-upsell-card--v2 .result-upsell-title {
    font-size: 1.08rem;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 8px;
}

.result-upsell-card--v2 .result-upsell-lead {
    font-size: 0.84rem;
    margin-bottom: 16px;
    text-align: center;
    max-width: none;
}

.result-upsell-card--v2 .result-upsell-benefits {
    margin: 0 0 18px;
    max-width: none;
    padding: 14px 14px 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.result-upsell-card--v2 .result-upsell-benefits li {
    font-size: 0.82rem;
    padding: 10px 0 10px 28px;
    border-bottom-color: #e2e8f0;
}

.result-upsell-card--v2 .result-upsell-benefits li::before {
    top: 10px;
    width: 20px;
    height: 20px;
    font-size: 0.62rem;
    box-shadow: none;
    background: #6a11cb;
}

/* Preço inline — antes do CTA */
.result-upsell-price--inline {
    margin: 0 0 16px;
    padding: 16px;
    background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
    border-radius: 14px;
    border: 1px solid rgba(106, 17, 203, 0.15);
    text-align: center;
    max-width: none;
}

.result-upsell-price--inline .result-upsell-price-row {
    justify-content: center;
}

.result-upsell-price--inline .result-upsell-price-value {
    font-size: 2rem;
}

.result-upsell-price-product {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6a11cb;
    margin-bottom: 6px;
}

/* CTA v2 — coluna, sem halo/pulse */
.result-upsell-cta--v2 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
}

.result-upsell-cta--v2::before {
    display: none !important;
}

.result-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed 0%, #6a11cb 50%, #5b21b6 100%);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.28);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    animation: none !important;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.result-checkout-btn::after {
    display: none !important;
}

.result-checkout-btn__text {
    display: block;
    max-width: 280px;
}

.result-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(106, 17, 203, 0.35);
}

.result-checkout-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(106, 17, 203, 0.25);
}

.result-upsell-btn-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin: 10px 0 0;
    font-weight: 600;
    text-align: center;
    line-height: 1.45;
    width: 100%;
}

.result-upsell-cta--bottom {
    margin-top: 8px;
    margin-bottom: 0;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.result-trust-list {
    list-style: none;
    margin: 0 0 0;
    padding: 14px;
    display: grid;
    gap: 10px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.result-trust-list li {
    font-size: 0.76rem;
    color: #475569;
    padding-left: 20px;
    position: relative;
    line-height: 1.45;
}

.result-trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6a11cb;
    font-weight: 800;
    font-size: 0.72rem;
}

.result-preview-section {
    margin: 0 0 18px;
    padding-top: 4px;
}

.result-preview-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    text-align: center;
}

.result-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.result-preview-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    overflow: hidden;
}

.result-preview-card h4 {
    font-size: 0.68rem;
    font-weight: 700;
    color: #475569;
    margin: 0 0 8px;
    line-height: 1.3;
}

.result-preview-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    height: 48px;
    padding-top: 4px;
}

.result-preview-bar {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(180deg, #c4b5fd, #8b5cf6);
    border-radius: 4px 4px 0 0;
    opacity: 0.55;
}

.result-preview-bar--lead {
    opacity: 1;
    background: linear-gradient(180deg, #a78bfa, #6a11cb);
}

.result-preview-lines span,
.result-preview-lines--list li {
    display: block;
    height: 6px;
    border-radius: 4px;
    background: #e2e8f0;
    margin-bottom: 6px;
}

.result-preview-lines span:nth-child(2) { width: 85%; }
.result-preview-lines span:nth-child(3) { width: 65%; }

.result-preview-lines--list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result-preview-lines--list li:nth-child(2) { width: 90%; }
.result-preview-lines--list li:nth-child(3) { width: 70%; }

.result-preview-card--chart {
    grid-column: span 2;
}

.result-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #7c3aed, #6a11cb);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(106, 17, 203, 0.35);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.result-sticky-cta__label {
    text-align: center;
    line-height: 1.3;
}

.result-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

body.has-result-sticky .funil-footer {
    padding-bottom: 72px;
}

body.has-result-sticky .card-result {
    padding-bottom: 8px;
}

@media (max-width: 640px) {
    .result-checkout-btn {
        font-size: 0.92rem;
        padding: 15px 16px;
        border-radius: 12px;
    }

    .result-checkout-btn__text {
        max-width: none;
    }

    .result-upsell-card--v2 {
        padding: 18px 14px 20px;
    }

    .card-result {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (min-width: 768px) {
    .result-sticky-cta {
        display: none;
    }

    body.has-result-sticky .funil-footer {
        padding-bottom: 0;
    }

    .result-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .result-preview-card--chart {
        grid-column: span 1;
    }
}

@media (max-width: 380px) {
    .result-preview-grid {
        grid-template-columns: 1fr;
    }

    .result-preview-card--chart {
        grid-column: span 1;
    }
}

/* ── Mapa completo (mega) entrega ── */
.result-layout--mega .result-hero--mega {
    text-align: center;
    padding-bottom: 8px;
}

.mega-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.mega-btn-print {
    width: auto;
    padding: 10px 16px;
    font-size: 0.82rem;
}

.mega-index {
    margin: 0 0 22px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.mega-index-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 4px;
    color: #0f172a;
}

.mega-index-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0 0 12px;
}

.mega-index-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mega-index-list a {
    display: block;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6a11cb;
    text-decoration: none;
}

.mega-index-list a:hover {
    background: #faf5ff;
    border-color: #ddd6fe;
}

.mega-pressure {
    margin-bottom: 24px;
}

.mega-pressure-grid {
    display: grid;
    gap: 12px;
}

.mega-pressure-card {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #6a11cb;
    border-radius: 12px;
}

.mega-pressure-card h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6a11cb;
    margin: 0 0 8px;
}

.mega-pressure-card p {
    font-size: 0.86rem;
    line-height: 1.55;
    color: #334155;
    margin: 0;
}

@media (min-width: 640px) {
    .mega-pressure-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Resultado v2: dobra compacta + animações ── */
.result-layout--v2 .result-ready-strip {
    display: none;
}

.card-result:has(.result-layout--v2) {
    padding: 14px 14px 22px;
}

.result-layout--v2 {
    gap: 14px;
}

.result-free-summary {
    padding: 0;
    margin-bottom: 0;
}

.result-free-hero {
    padding: 14px 14px 12px;
    margin-bottom: 10px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.result-free-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 8px;
}

.result-free-badge {
    margin-bottom: 6px;
    padding: 4px 10px;
    font-size: 0.64rem;
}

.result-free-prefix {
    font-size: 0.86rem;
    margin: 0 0 2px;
}

.result-free-temp-name {
    font-size: clamp(1.5rem, 6vw, 1.85rem);
    margin: 0 0 8px;
}

.result-free-pct-badge {
    margin: 4px auto 10px;
    padding: 4px 12px;
    font-size: 0.72rem;
}

.result-free-resumo {
    padding: 8px 10px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.result-free-traits {
    gap: 8px;
}

@media (min-width: 520px) {
    .result-free-traits {
        grid-template-columns: 1fr 1fr;
    }
}

.result-free-trait-block {
    padding: 10px 12px;
}

.result-free-trait-block h4 {
    margin: 0 0 6px;
}

.result-secondary-teaser,
.result-pct-teaser {
    margin-top: 10px;
    padding: 12px;
}

.result-early-cta {
    margin-top: 12px;
}

.result-bridge {
    padding: 14px 12px;
}

.result-bridge-lead {
    margin-bottom: 12px;
    font-size: 0.82rem;
}

.result-locked-grid {
    gap: 6px;
}

.result-locked-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
    min-height: 0;
}

.result-locked-card:nth-child(5) {
    grid-column: 1 / -1;
}

.result-locked-card-top {
    width: 100%;
}

.result-locked-label {
    font-size: 0.74rem;
    line-height: 1.35;
    flex: 1;
}

.result-locked-tap {
    align-self: flex-start;
    margin-top: 0;
    font-size: 0.58rem;
    white-space: nowrap;
}

.result-upsell-card--v2 {
    padding: 16px 14px 18px;
}

.result-authority-strip {
    margin-bottom: 12px;
    padding: 10px;
    gap: 6px;
}

.result-benefit-cards {
    gap: 6px;
    margin-bottom: 12px;
}

.result-benefit-card {
    padding: 10px;
}

.result-testimonials-viewport {
    margin: 0 -2px;
}

.result-testimonial-slide {
    padding: 0 2px;
}

.result-testimonial-card {
    min-height: 0;
    padding: 16px;
}

.result-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.result-reveal.is-revealed {
    opacity: 1;
    transform: none;
}

.result-free-icon svg,
.result-temp-hero-svg {
    animation: resultIconPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.15s;
}

.result-free-temp-name {
    animation: resultTextFade 0.5s ease both;
    animation-delay: 0.25s;
}

@keyframes resultIconPop {
    from { opacity: 0; transform: scale(0.82); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes resultTextFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-checkout-btn--early {
    animation: resultCtaPulse 2.4s ease-in-out infinite, resultTextFade 0.5s ease both;
}

.result-locked-card {
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.4s ease;
}

.result-layout--v2 .result-locked-card:nth-child(1) { transition-delay: 0.05s; }
.result-layout--v2 .result-locked-card:nth-child(2) { transition-delay: 0.1s; }
.result-layout--v2 .result-locked-card:nth-child(3) { transition-delay: 0.15s; }
.result-layout--v2 .result-locked-card:nth-child(4) { transition-delay: 0.2s; }
.result-layout--v2 .result-locked-card:nth-child(5) { transition-delay: 0.25s; }

@media (min-width: 768px) {
    .card-result:has(.result-layout--v2) {
        padding: 20px 24px 28px;
    }

    .result-layout--v2 {
        gap: 18px;
    }

    .result-free-icon {
        width: 92px;
        height: 92px;
    }

    .result-free-hero {
        padding: 16px 20px 14px;
    }

    .result-upsell-card--v2 {
        padding: 20px 22px 22px;
    }

    .result-testimonial-card {
        padding: 20px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .result-reveal,
    .result-free-icon svg,
    .result-free-temp-name,
    .result-checkout-btn--primary {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .result-reveal.is-revealed {
        opacity: 1;
        transform: none;
    }
}

/* ── Conversão resultado gratuito v3 ── */
.result-layout--convert {
    gap: 20px !important;
}

.result-layout--convert.result-layout--v2 {
    gap: 20px !important;
}

.card-result:has(.result-layout--convert) {
    padding: 16px 16px 28px;
}

.result-layout--convert .result-free-summary {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 2px;
    margin-bottom: 0;
}

.result-layout--convert .result-free-hero {
    margin-bottom: 14px;
    padding-bottom: 18px;
    overflow: visible;
}

.result-layout--convert .result-free-traits--solo {
    margin-top: 0;
    margin-bottom: 0;
}

.result-free-traits--solo {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.result-free-hero {
    margin-bottom: 12px;
}

.result-free-trait-block {
    margin-top: 4px;
}

.result-free-resumo {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Funil convert: resumo completo visível (sem line-clamp) */
#conteudo.result-layout--convert .result-free-resumo,
.result-layout--convert .result-free-resumo {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    overflow-wrap: break-word;
}

.result-plot-twist {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #fcd34d;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    text-align: left;
    margin-top: 0;
}

.result-plot-twist-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #b45309;
    margin-bottom: 8px;
}

.result-plot-twist-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #78350f;
    font-weight: 500;
}

.result-incomplete {
    padding: 18px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-align: center;
    margin-top: 0;
}

.result-incomplete-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.result-incomplete-lead,
.result-incomplete-sub {
    margin: 0 0 8px;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #64748b;
}

.result-progress-wrap {
    margin: 14px 0 12px;
}

.result-progress-bar {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.result-progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.result-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.result-progress-pct { color: #6a11cb; }
.result-progress-unlock { color: #64748b; }

.result-curiosity-hooks {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    text-align: left;
}

.result-curiosity-hooks li {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #475569;
    padding: 6px 0;
    border-top: 1px solid #f1f5f9;
}

.result-curiosity-hooks li span {
    color: #6a11cb;
    margin-right: 6px;
}

.result-secondary-v2 {
    padding: 18px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
    border: 1px solid #ddd6fe;
    text-align: left;
}

.result-secondary-v2-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.result-secondary-v2-lock {
    font-size: 1.25rem;
    line-height: 1;
}

.result-secondary-v2-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.result-secondary-v2-lead {
    margin: 0 0 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6a11cb;
}

.result-secondary-v2-list {
    margin: 0 0 12px;
    padding-left: 18px;
    font-size: 0.84rem;
    line-height: 1.55;
    color: #475569;
}

.result-secondary-v2-compare {
    margin: 0 0 14px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #64748b;
    font-style: italic;
}

.result-checkout-btn--secondary-reveal {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 4px;
}

.result-layout--convert .result-cta-slot {
    text-align: center;
    padding: 8px 4px 12px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

.result-cta-slot--final {
    padding: 20px 4px 8px;
}

.result-cta-sub {
    margin: 12px 0 0;
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.45;
}

.result-checkout-btn--primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 15px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    box-shadow: 0 8px 24px rgba(106, 17, 203, 0.35);
    animation: resultCtaPulse 2.4s ease-in-out infinite;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.result-checkout-btn--large {
    max-width: 100%;
    font-size: 1rem;
    padding: 16px 22px;
}

.result-blurred-section {
    text-align: center;
    padding: 4px 2px 8px;
}

.result-blurred-title {
    margin: 0 0 14px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #334155;
}

.result-blurred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.result-blurred-card {
    position: relative;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    overflow: hidden;
    min-height: 100px;
}

.result-blurred-card__lock {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    font-size: 0.85rem;
}

.result-blurred-card__content {
    filter: blur(6px);
    opacity: 0.55;
    pointer-events: none;
    padding: 12px 10px 28px;
    user-select: none;
}

.result-blurred-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 6px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #64748b;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid #e2e8f0;
}

.result-blurred-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 56px;
}

.result-blurred-chart span {
    width: 14px;
    height: var(--h, 50%);
    background: #c4b5fd;
    border-radius: 4px 4px 0 0;
}

.result-blurred-radar {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid #c4b5fd;
    position: relative;
}

.result-blurred-radar span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #8b5cf6;
    border-radius: 50%;
}

.result-blurred-radar span:nth-child(1) { top: 8px; left: 50%; transform: translateX(-50%); }
.result-blurred-radar span:nth-child(2) { right: 10px; top: 50%; }
.result-blurred-radar span:nth-child(3) { bottom: 8px; left: 50%; transform: translateX(-50%); }
.result-blurred-radar span:nth-child(4) { left: 10px; top: 50%; }

.result-blurred-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.result-blurred-map span {
    height: 18px;
    background: #ddd6fe;
    border-radius: 4px;
}

.result-blurred-table span {
    display: block;
    height: 8px;
    margin-bottom: 5px;
    background: #e2e8f0;
    border-radius: 4px;
}

.result-locked-grid--10 {
    grid-template-columns: 1fr;
    gap: 10px;
}

.result-layout--convert .result-locked-grid {
    gap: 10px;
}

.result-locked-card--v3 {
    position: relative;
    overflow: hidden;
    min-height: 56px;
    padding: 12px 14px;
    gap: 6px;
}

.result-locked-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 40%, rgba(248, 250, 252, 0.85) 100%);
    pointer-events: none;
}

.result-unlock-section {
    padding: 18px 16px;
    border-radius: 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    margin: 0;
}

.result-unlock-title {
    margin: 0 0 12px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
}

.result-unlock-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result-unlock-list li {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #334155;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.result-unlock-check {
    flex-shrink: 0;
}

.result-upsell--convert .result-upsell-card--convert {
    padding: 20px 16px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-price-block {
    text-align: center;
    padding: 18px 16px;
    margin-bottom: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
    border: 1px solid #e9d5ff;
}

.result-price-product {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6a11cb;
}

.result-price-intro {
    margin: 8px 0 4px;
    font-size: 0.88rem;
    color: #64748b;
}

.result-price-perks {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
}

.result-social-proof-block {
    text-align: center;
    margin-bottom: 0;
    padding: 16px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.result-social-proof-lead {
    margin: 0 0 12px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
}

.result-social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.result-social-proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.result-social-proof-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #6a11cb;
}

.result-social-proof-stars {
    font-size: 0.95rem;
    color: #f59e0b;
    letter-spacing: 1px;
}

.result-social-proof-label {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 600;
}

.result-guarantee-block {
    margin: 0;
    padding: 14px 16px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    text-align: center;
}

.result-guarantee-title {
    margin: 0 0 6px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #334155;
}

.result-guarantee-text {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #64748b;
}

.result-trust-disclaimer {
    margin: 12px 0 0;
    font-size: 0.65rem;
    color: #94a3b8;
    text-align: center;
    line-height: 1.4;
}

.result-bridge--convert .result-bridge-title {
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.result-bridge--convert {
    padding: 18px 14px 20px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.result-layout--convert .result-upsell-testimonials {
    margin: 0;
}

.result-layout--convert .result-testimonials-title {
    margin: 0 0 14px;
}

.result-layout--convert .result-testimonials-controls {
    margin-top: 14px;
    gap: 14px;
}

.result-layout--convert .result-testimonials-viewport {
    margin: 0;
}

.result-layout--convert .result-testimonial-card {
    min-height: 0;
}

@media (min-width: 640px) {
    .result-locked-grid--10 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .result-blurred-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.result-layout--convert .result-checkout-btn--primary {
    max-width: 100%;
    width: 100%;
}

.result-layout--convert .result-locked-card {
    padding: 12px 14px;
    gap: 8px;
    min-height: 56px;
}

.result-layout--convert .result-secondary-v2 {
    padding: 20px 18px;
}

@media (min-width: 768px) {
    .result-layout--convert,
    .result-layout--convert.result-layout--v2 {
        gap: 24px !important;
    }

    .card-result:has(.result-layout--convert) {
        padding: 24px 28px 36px;
    }

    .result-blurred-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .result-upsell--convert .result-upsell-card--convert {
        padding: 24px 22px 26px;
        gap: 22px;
    }

    .result-layout--convert .result-cta-slot {
        padding: 22px 8px 26px;
    }
}

/* ── Refinamentos conversão (copy + CTA + mobile) ── */
.result-free-precision {
    margin: 6px 0 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #059669;
    text-align: center;
    line-height: 1.4;
}

.result-cta-lead {
    margin: 0 0 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #334155;
    text-align: center;
    line-height: 1.45;
}

.result-cta-trust {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
}

.result-secondary-v2 .result-cta-trust {
    margin-top: 12px;
}

.result-price-block--hero {
    padding: 22px 18px;
    border: 2px solid #c4b5fd;
    box-shadow: 0 8px 28px rgba(106, 17, 203, 0.12);
}

.result-price-block--hero .result-price-product {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.result-upsell-price-row--hero .result-upsell-price-value {
    font-size: 2.75rem;
    line-height: 1;
}

.result-upsell-price-row--hero .result-upsell-price-currency {
    font-size: 1.35rem;
}

.result-price-perks--stack {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.78rem;
}

.result-price-installments {
    margin: 10px 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

.result-guarantee-block--hotmart {
    padding: 16px 18px;
    border: 2px solid #86efac;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-style: solid;
}

.result-guarantee-block--hotmart .result-guarantee-title {
    font-size: 0.92rem;
    color: #166534;
}

.result-guarantee-block--hotmart .result-guarantee-text {
    font-size: 0.78rem;
    color: #15803d;
    line-height: 1.5;
}

.result-locked-grid--6 {
    grid-template-columns: 1fr;
    gap: 10px;
}

.result-unlock-bullet {
    color: #6a11cb;
    font-weight: 800;
    margin-right: 4px;
}

@keyframes result-lock-glow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 0 transparent); }
    50% { opacity: 1; filter: drop-shadow(0 0 5px rgba(106, 17, 203, 0.5)); }
}

@keyframes result-cta-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(106, 17, 203, 0.32); }
    50% { box-shadow: 0 6px 24px rgba(106, 17, 203, 0.48); }
}

.result-layout--convert .result-locked-card.is-revealed .result-locked-icon {
    animation: result-lock-glow 2.8s ease-in-out infinite;
}

.result-layout--convert .result-checkout-btn--primary {
    animation: result-cta-pulse 3.2s ease-in-out infinite;
}

.result-layout--convert .result-locked-card:nth-child(1) { transition-delay: 0.05s; }
.result-layout--convert .result-locked-card:nth-child(2) { transition-delay: 0.1s; }
.result-layout--convert .result-locked-card:nth-child(3) { transition-delay: 0.15s; }
.result-layout--convert .result-locked-card:nth-child(4) { transition-delay: 0.2s; }
.result-layout--convert .result-locked-card:nth-child(5) { transition-delay: 0.25s; }
.result-layout--convert .result-locked-card:nth-child(6) { transition-delay: 0.3s; }

@media (max-width: 639px) {
    .result-layout--convert,
    .result-layout--convert.result-layout--v2 {
        gap: 16px !important;
    }

    .card-result:has(.result-layout--convert) {
        padding: 12px 12px 24px;
    }

    .result-layout--convert .result-free-hero {
        margin-bottom: 8px;
    }

    .result-free-icon {
        transform: scale(0.88);
        transform-origin: center top;
    }

    .result-layout--convert .result-free-resumo {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
        font-size: 0.84rem;
        margin-bottom: 0;
    }

    .result-layout--convert .result-plot-twist {
        padding: 12px 14px;
    }

    .result-layout--convert .result-incomplete {
        padding: 14px 12px;
    }

    .result-layout--convert .result-secondary-v2 {
        padding: 14px 12px;
    }

    .result-secondary-v2-compare {
        display: none;
    }

    .result-layout--convert .result-cta-slot {
        padding: 14px 4px 18px;
    }

    .result-layout--convert .result-cta-slot#ctaAfterResult {
        scroll-margin-top: 12px;
    }
}

@media (min-width: 480px) {
    .result-locked-grid--6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .result-layout--convert .result-locked-card.is-revealed .result-locked-icon,
    .result-layout--convert .result-checkout-btn--primary {
        animation: none;
    }
}

@media print {
    .no-print,
    .funil-header,
    .funil-footer,
    .lang-switch,
    .mega-toolbar {
        display: none !important;
    }

    .wrap {
        max-width: none;
        padding: 0;
    }

    .card-result {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .mega-area-card,
    .mega-pressure-card,
    .mega-compat-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ── Resultado: carregamento progressivo ── */
.result-loading {
    max-width: 420px;
    margin: 0 auto;
    padding: 32px 20px 36px;
    text-align: center;
    gap: 14px;
}

.result-loading__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2px;
}

.result-loading__spinner {
    width: 52px;
    height: 52px;
    border-width: 3px;
    border-color: #e2e8f0;
    border-top-color: #6a11cb;
    border-right-color: rgba(106, 17, 203, 0.2);
    animation: spin 1s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite;
}

.result-loading__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.result-loading__message {
    margin: 0;
    min-height: 1.35em;
    font-size: 0.86rem;
    font-weight: 600;
    color: #6a11cb;
    line-height: 1.45;
    transition: opacity 0.18s ease;
}

.result-loading__message.is-fading {
    opacity: 0.35;
}

.result-loading__progress-wrap {
    width: 100%;
    max-width: 340px;
    margin: 4px auto 0;
}

.result-loading__track {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.result-loading__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    transition: width 0.35s ease;
    will-change: width;
}

.result-loading__pct {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.02em;
}

.result-loading__steps {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    width: 100%;
    max-width: 340px;
    text-align: left;
}

.result-loading__step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #64748b;
}

.result-loading__step.is-done {
    color: #334155;
    font-weight: 600;
}

.result-loading__step-icon {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #94a3b8;
}

.result-loading__step.is-done .result-loading__step-icon {
    color: #059669;
    font-weight: 800;
}

.result-loading__step-label {
    flex: 1;
}

.result-loading__hint {
    margin: 4px 0 0;
    max-width: 340px;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #94a3b8;
    text-align: left;
}

@media (max-width: 639px) {
    .result-loading {
        padding: 24px 16px 28px;
        gap: 12px;
        width: 100%;
    }

    .result-loading__progress-wrap,
    .result-loading__steps,
    .result-loading__hint {
        max-width: 100%;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .result-loading__title {
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .result-loading__spinner {
        animation: none;
        border-top-color: #6a11cb;
        border-right-color: #e2e8f0;
    }

    .result-loading__fill {
        transition: none;
    }

    .result-loading__message {
        transition: none;
    }
}

/* Espaçamento cards resultado — só quando o conteúdo estiver visível */
#conteudo[hidden] {
    display: none !important;
}

.card-result.is-result-loading #conteudo {
    display: none !important;
}

#conteudo.result-layout--convert:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
}

/* Margem explícita entre blocos — não depende só de gap */
#conteudo.result-layout--convert:not([hidden]) > * + * {
    margin-top: 20px !important;
}

#conteudo.result-layout--convert .result-free-summary {
    gap: 0 !important;
}

#conteudo.result-layout--convert .result-free-summary .result-free-hero {
    margin-bottom: 14px !important;
    padding-bottom: 18px;
    overflow: visible;
}

#conteudo.result-layout--convert .result-free-summary .result-free-traits--solo {
    margin-top: 0 !important;
}

#conteudo.result-layout--convert .result-free-trait-block {
    margin-top: 0;
}

@media (max-width: 639px) {
    #conteudo.result-layout--convert:not([hidden]) {
        gap: 16px !important;
    }

    #conteudo.result-layout--convert:not([hidden]) > * + * {
        margin-top: 16px !important;
    }

    #conteudo.result-layout--convert .result-free-summary .result-free-hero {
        margin-bottom: 12px !important;
    }
}

@media (min-width: 768px) {
    #conteudo.result-layout--convert:not([hidden]) {
        gap: 24px !important;
    }

    #conteudo.result-layout--convert:not([hidden]) > * + * {
        margin-top: 24px !important;
    }

    #conteudo.result-layout--convert .result-free-summary .result-free-hero {
        margin-bottom: 16px !important;
    }
}

/* ── Resultado convert: CTA laranja + animações da tela ── */
:root {
    --cta-convert-grad: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #ea580c 100%);
    --cta-convert-shadow: rgba(234, 88, 12, 0.42);
    --cta-convert-shadow-soft: rgba(249, 115, 22, 0.28);
}

.card-result.is-result-live:has(.result-layout--convert) {
    animation: resultCardEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes resultCardEnter {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.result-layout--convert.is-result-live .result-free-hero {
    animation: resultHeroLand 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.12s;
}

@keyframes resultHeroLand {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.result-layout--convert.is-result-live .result-reveal {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.result-layout--convert.is-result-live .result-reveal.is-revealed {
    opacity: 1;
    transform: none;
}

.result-layout--convert .result-checkout-btn--primary,
.result-layout--convert .result-checkout-btn--secondary-reveal,
.result-layout--convert .result-checkout-btn--large,
body:has(.result-layout--convert) .result-sticky-cta {
    background: var(--cta-convert-grad) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 8px 26px var(--cta-convert-shadow-soft);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: resultCtaPulseOrange 2.6s ease-in-out infinite;
}

.result-layout--convert .result-checkout-btn--primary::before,
.result-layout--convert .result-checkout-btn--secondary-reveal::before,
.result-layout--convert .result-checkout-btn--large::before,
body:has(.result-layout--convert) .result-sticky-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    animation: resultCtaShineSweep 3.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.result-layout--convert .result-checkout-btn__text,
body:has(.result-layout--convert) .result-sticky-cta__label {
    position: relative;
    z-index: 1;
}

.result-layout--convert .result-checkout-btn--primary:hover,
.result-layout--convert .result-checkout-btn--secondary-reveal:hover,
.result-layout--convert .result-checkout-btn--large:hover,
body:has(.result-layout--convert) .result-sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--cta-convert-shadow);
    filter: brightness(1.04);
}

.result-layout--convert .result-cta-slot {
    position: relative;
}

.result-layout--convert .result-cta-slot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100%, 420px);
    height: 54px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.22), transparent 72%);
    animation: resultCtaHaloOrange 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.result-layout--convert .result-cta-slot .result-checkout-btn {
    z-index: 1;
}

@keyframes resultCtaPulseOrange {
    0%, 100% {
        box-shadow: 0 8px 24px var(--cta-convert-shadow-soft);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 36px var(--cta-convert-shadow);
        transform: scale(1.02);
    }
}

@keyframes resultCtaShineSweep {
    0%, 100% { left: -120%; }
    45%, 55% { left: 140%; }
}

@keyframes resultCtaHaloOrange {
    0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.96); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

.result-layout--convert.is-result-live .result-free-icon svg,
.result-layout--convert.is-result-live .result-temp-hero-svg {
    animation: resultIconPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.2s;
}

.result-layout--convert.is-result-live .result-free-temp-name {
    animation: resultTextFade 0.65s ease both;
    animation-delay: 0.35s;
}

.result-layout--convert.is-result-live .result-free-precision {
    animation: resultTextFade 0.55s ease both;
    animation-delay: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
    .card-result.is-result-live:has(.result-layout--convert),
    .result-layout--convert.is-result-live .result-free-hero,
    .result-layout--convert .result-checkout-btn--primary,
    .result-layout--convert .result-checkout-btn--secondary-reveal,
    .result-layout--convert .result-cta-slot::after,
    body:has(.result-layout--convert) .result-sticky-cta {
        animation: none !important;
    }

    .result-layout--convert .result-checkout-btn--primary::before,
    .result-layout--convert .result-checkout-btn--secondary-reveal::before,
    body:has(.result-layout--convert) .result-sticky-cta::before {
        display: none;
    }
}

/* ── Vídeo mapa completo (pós-resultado) ── */
.result-video {
    margin: 8px 0 22px;
    text-align: center;
}

.result-video-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.35;
}

.result-video-lead {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 auto 14px;
    max-width: 34em;
}

.result-video-frame {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
    border: 1px solid #e2e8f0;
    aspect-ratio: 9 / 16;
}

.result-video-player {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    background: #0f172a;
    vertical-align: middle;
}

.result-video-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.result-video-cta .result-checkout-btn {
    width: 100%;
}

.result-video-cta .result-cta-trust {
    justify-content: center;
    margin: 0;
}

@media (max-width: 480px) {
    .result-video-title {
        font-size: 0.95rem;
    }

    .result-video-lead {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .result-video-frame {
        border-radius: 12px;
    }
}

