/* ===== QUIZ DESIGN SYSTEM — Páscoa Gourmet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;600;700&display=swap');

:root {
    /* Palette (same as PV) */
    --amarelo: #FFE08A;
    --rosa: #F6A6B2;
    --marrom: #5A3825;
    --creme: #FFF6EB;
    --rosa-dark: #e8899a;
    --marrom-light: #7a5640;
    --ouro: #C9A84C;
    --ouro-dark: #A78B3D;
    --branco: #FFFFFF;
    --sombra: rgba(90, 56, 37, .12);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Sizing */
    --max-w: 720px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--marrom);
    background: var(--creme);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100vw;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: all .35s ease;
    background: linear-gradient(135deg, var(--marrom), #3d2518);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(255, 224, 138, .2);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(90, 56, 37, .4);
    border-bottom-color: rgba(255, 224, 138, .35);
}

.header .container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--creme);
}

.header-logo span {
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== STEP DOTS ===== */
.header-steps-indicator {
    display: flex;
    gap: 6px;
    align-items: center;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 246, 235, .2);
    border: 2px solid rgba(255, 246, 235, .3);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.step-dot.active {
    background: var(--amarelo);
    border-color: var(--amarelo);
    box-shadow: 0 0 10px rgba(255, 224, 138, .5);
}

.step-dot.current {
    background: var(--rosa);
    border-color: var(--rosa);
    box-shadow: 0 0 14px rgba(246, 166, 178, .6);
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* ===== PROGRESS BAR ===== */
.progress-bar-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(90, 56, 37, .1);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--ouro));
    border-radius: 0 4px 4px 0;
    transition: width .6s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 12px rgba(246, 166, 178, .4);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 10px;
    height: 10px;
    background: var(--rosa);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(246, 166, 178, .6);
    animation: glow-dot 1.5s ease-in-out infinite;
}

@keyframes glow-dot {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(246, 166, 178, .4);
    }

    50% {
        box-shadow: 0 0 20px rgba(246, 166, 178, .8);
    }
}

/* ===== QUIZ MAIN ===== */
.quiz-main {
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.quiz-main>.container {
    width: 90%;
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* ===== QUIZ STEP ===== */
.quiz-step {
    display: none;
    animation: fadeInUp .6s cubic-bezier(.4, 0, .2, 1) forwards;
}

.quiz-step.active {
    display: block;
}

.quiz-step.exit {
    animation: fadeOutUp .5s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-30px) scale(.96);
    }
}

/* ===== QUIZ CARD ===== */
.quiz-card {
    background:
        linear-gradient(var(--branco), var(--branco)) padding-box,
        linear-gradient(135deg, var(--amarelo), var(--rosa), var(--ouro)) border-box;
    border: 3px solid transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(90, 56, 37, .1);
    position: relative;
}

.quiz-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(246, 166, 178, .06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quiz-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 224, 138, .06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quiz-card-header {
    background: linear-gradient(135deg, var(--marrom), #3d2518);
    padding: 32px 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quiz-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--amarelo));
}

.quiz-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 224, 138, .15);
    color: var(--amarelo);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255, 224, 138, .25);
    margin-bottom: 8px;
}

.quiz-step-badge--gold {
    background: linear-gradient(135deg, var(--amarelo), var(--ouro));
    color: var(--marrom);
    border: none;
    font-size: .85rem;
    padding: 10px 26px;
    box-shadow: 0 4px 16px rgba(201, 168, 76, .3);
}

.quiz-icon {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-float 3s ease-in-out infinite;
}

.quiz-icon svg {
    filter: drop-shadow(0 2px 8px rgba(255, 224, 138, .3));
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ===== HEADLINE HEADER (STEP 1) ===== */
.quiz-card-header--headline {
    padding: 36px 36px 32px;
    background: linear-gradient(135deg, #3d2518, var(--marrom), #3d2518);
}

.quiz-urgency-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--ouro), var(--ouro-dark));
    color: var(--branco);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 40px;
    margin-bottom: 18px;
    animation: pulse-urgency 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
}

.quiz-urgency-tag svg {
    vertical-align: middle;
    margin-right: 4px;
    margin-top: -2px;
}

@keyframes pulse-urgency {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(201, 168, 76, .3), 0 0 0 8px rgba(201, 168, 76, .1);
    }
}

.quiz-headline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 700;
    color: var(--creme);
    line-height: 1.5;
    margin-bottom: 14px;
}

.quiz-headline em {
    font-style: italic;
    color: var(--rosa);
    text-decoration: underline;
    text-decoration-color: var(--rosa);
    text-underline-offset: 4px;
}

.quiz-headline-sub {
    font-size: .95rem;
    color: rgba(255, 246, 235, .75);
    line-height: 1.7;
}

.quiz-headline-sub strong {
    color: var(--amarelo);
}

/* ===== OPTION LETTER (A/B/C) ===== */
.option-letter {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 224, 138, .15), rgba(246, 166, 178, .15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--marrom);
    transition: all .35s ease;
}

.quiz-option:hover .option-letter {
    background: linear-gradient(135deg, rgba(255, 224, 138, .3), rgba(246, 166, 178, .3));
    transform: scale(1.08);
}

.quiz-option.selected .option-letter {
    background: linear-gradient(135deg, var(--ouro), var(--amarelo));
    color: var(--marrom);
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(201, 168, 76, .3);
}

.quiz-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--marrom);
    padding: 32px 36px 8px;
    position: relative;
    z-index: 1;
}

.quiz-desc {
    font-size: .95rem;
    color: var(--marrom-light);
    padding: 0 36px 24px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== QUIZ OPTIONS ===== */
.quiz-options {
    padding: 0 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: var(--branco);
    border: 2px solid rgba(246, 166, 178, .15);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.quiz-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 138, .08), transparent);
    transition: left .6s ease;
}

.quiz-option:hover {
    border-color: var(--rosa);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(246, 166, 178, .15);
    background: linear-gradient(135deg, rgba(255, 224, 138, .04), rgba(246, 166, 178, .04));
}

.quiz-option:hover::before {
    left: 100%;
}

.quiz-option.selected {
    border-color: var(--ouro);
    background: linear-gradient(135deg, rgba(255, 224, 138, .1), rgba(246, 166, 178, .08));
    box-shadow: 0 8px 30px rgba(201, 168, 76, .2), inset 0 0 0 1px rgba(201, 168, 76, .2);
    transform: translateX(8px);
}

.quiz-option.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--ouro), var(--amarelo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--marrom);
    font-weight: 700;
    animation: checkPop .4s cubic-bezier(.4, 0, .2, 1);
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.option-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 224, 138, .15), rgba(246, 166, 178, .15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.quiz-option:hover .option-icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(255, 224, 138, .25), rgba(246, 166, 178, .25));
}

.quiz-option.selected .option-icon {
    background: linear-gradient(135deg, var(--amarelo), var(--rosa));
    transform: scale(1.1);
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-text strong {
    font-size: .95rem;
    color: var(--marrom);
    font-weight: 600;
    line-height: 1.3;
}

.option-text small {
    font-size: .8rem;
    color: var(--marrom-light);
    font-weight: 400;
}

/* ===== QUIZ CARD VSL ===== */
.quiz-card--vsl .quiz-card-header {
    background: linear-gradient(135deg, var(--marrom), #3d2518, var(--marrom));
}

/* ===== CONFEITEIRA IMAGE ===== */
.confeiteira-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 36px 10px;
    position: relative;
    z-index: 1;
}

.confeiteira-img {
    width: 260px;
    max-width: 80%;
    height: auto;
    animation: confeiteira-float 3.5s ease-in-out infinite;
    filter: drop-shadow(0 12px 28px rgba(201, 168, 76, .25));
    border-radius: 20px;
}

@keyframes confeiteira-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 12px 28px rgba(201, 168, 76, .25));
    }

    50% {
        transform: translateY(-10px) scale(1.02);
        filter: drop-shadow(0 20px 36px rgba(246, 166, 178, .35));
    }
}

/* ===== LOADING SCREEN (STEP 7) ===== */
.quiz-card--loading {
    min-height: 360px;
}

.loading-content {
    padding: 40px 36px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quiz-icon--loading {
    margin-bottom: 10px;
    animation: loading-bounce 1.2s ease-in-out infinite;
}

.quiz-icon--loading svg {
    filter: drop-shadow(0 2px 12px rgba(246, 166, 178, .4));
}

@keyframes loading-bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-14px) scale(1.1);
    }
}

.loading-bar-wrapper {
    width: 100%;
    height: 12px;
    background: rgba(246, 166, 178, .12);
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0 20px;
    border: 1px solid rgba(246, 166, 178, .15);
}

.loading-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--ouro), var(--rosa));
    background-size: 200% 100%;
    border-radius: 12px;
    transition: width .4s ease;
    animation: loading-shimmer 2s linear infinite;
    box-shadow: 0 0 12px rgba(246, 166, 178, .4);
}

@keyframes loading-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.loading-detail {
    font-size: .9rem;
    color: var(--marrom-light);
    font-weight: 500;
    transition: opacity .3s ease;
    font-style: italic;
}

/* ===== RESULT CARD ===== */
.quiz-result-card {
    margin: 0 36px 28px;
    background:
        linear-gradient(var(--branco), var(--branco)) padding-box,
        linear-gradient(135deg, var(--ouro), var(--amarelo), var(--rosa)) border-box;
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.result-header {
    background: linear-gradient(135deg, rgba(255, 224, 138, .15), rgba(246, 166, 178, .1));
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(246, 166, 178, .1);
}

.result-icon {
    font-size: 1.6rem;
}

.result-header h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--marrom);
}

.result-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.result-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--marrom-light);
    min-width: 130px;
}

.result-value {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--marrom);
    font-size: 1.05rem;
}

.result-bar {
    flex: 1;
    height: 10px;
    background: rgba(246, 166, 178, .12);
    border-radius: 10px;
    overflow: hidden;
    min-width: 120px;
}

.result-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--amarelo), var(--rosa), var(--ouro));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(246, 166, 178, .4);
}

.result-percent {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--marrom), var(--rosa-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== VSL WRAPPER ===== */
.vsl-wrapper {
    margin: 0 36px 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--marrom);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(90, 56, 37, .2);
    z-index: 1;
}

.vsl-placeholder {
    text-align: center;
    color: var(--amarelo);
}

.vsl-play {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(246, 166, 178, .4);
    cursor: pointer;
    transition: all .3s ease;
    animation: pulse-play 2s ease-in-out infinite;
}

@keyframes pulse-play {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(246, 166, 178, .4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 8px 30px rgba(246, 166, 178, .4), 0 0 0 14px rgba(246, 166, 178, .15);
        transform: scale(1.05);
    }
}

.vsl-play:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 12px 40px rgba(246, 166, 178, .5);
}

.vsl-placeholder p {
    font-size: .9rem;
    opacity: .8;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== MINI VSL AREA (Result Step) ===== */
.mini-vsl-area {
    margin: 20px 36px 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(90, 56, 37, .04), rgba(255, 224, 138, .08));
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.mini-vsl-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--marrom);
    margin-bottom: 16px;
    text-align: center;
}

.mini-vsl-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-vsl-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: var(--branco);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(246, 166, 178, .1);
    transition: all .3s ease;
}

.mini-vsl-step:hover {
    border-color: var(--ouro);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, .12);
}

.mini-vsl-letter {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--amarelo), var(--ouro));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--marrom);
    box-shadow: 0 2px 8px rgba(201, 168, 76, .25);
}

.mini-vsl-step div {
    font-size: .88rem;
    color: var(--marrom-light);
    line-height: 1.5;
}

.mini-vsl-step div strong {
    color: var(--marrom);
}

.vsl-cta-text {
    font-size: .9rem;
    font-weight: 600;
    color: var(--marrom-light);
    margin-bottom: 16px;
}

/* ===== CTA AREA ===== */
.vsl-cta-area {
    padding: 0 36px 36px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--marrom), var(--marrom-light));
    color: var(--amarelo);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 60px;
    letter-spacing: .5px;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 8px 30px rgba(90, 56, 37, .3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 138, .2), transparent);
    transition: left .6s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(90, 56, 37, .35);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn--rosa {
    background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(246, 166, 178, .4);
}

.cta-btn--rosa:hover {
    box-shadow: 0 14px 40px rgba(246, 166, 178, .5);
}

.cta-btn-sub {
    display: block;
    font-size: .75rem;
    font-weight: 400;
    opacity: .85;
    margin-top: 4px;
    letter-spacing: 0;
    text-transform: none;
}

/* ===== PULSE FOR CTA ===== */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(246, 166, 178, .4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(246, 166, 178, .4), 0 0 0 14px rgba(246, 166, 178, .15);
    }
}

.cta-pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    font-size: .8rem;
    color: var(--marrom-light);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: .7;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    background: var(--marrom);
    text-align: center;
    color: rgba(255, 246, 235, .5);
    font-size: .82rem;
    position: relative;
    z-index: 1;
}

.footer a {
    color: var(--amarelo);
    transition: color .3s ease;
}

.footer a:hover {
    color: var(--rosa);
}

.footer p {
    margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .quiz-main {
        padding: 80px 0 40px;
    }

    .quiz-card-header {
        padding: 24px 20px 20px;
    }

    .quiz-title {
        padding: 24px 20px 8px;
        font-size: 1.3rem;
    }

    .quiz-desc {
        padding: 0 20px 20px;
        font-size: .88rem;
    }

    .quiz-options {
        padding: 0 20px 28px;
        overflow: hidden;
    }

    .quiz-option {
        padding: 16px 18px;
        gap: 12px;
    }

    .option-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .option-text strong {
        font-size: .88rem;
    }

    .option-text small {
        font-size: .75rem;
    }

    .quiz-result-card {
        margin: 0 20px 24px;
    }

    .result-body {
        padding: 16px 18px;
    }

    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .result-label {
        min-width: auto;
    }

    .vsl-wrapper {
        margin: 0 20px 24px;
    }

    .vsl-cta-area {
        padding: 0 20px 28px;
    }

    .cta-btn {
        padding: 16px 28px;
        font-size: .95rem;
        max-width: 100%;
        word-break: break-word;
    }

    .header-logo {
        font-size: 1.3rem;
    }

    .step-dot {
        width: 10px;
        height: 10px;
    }

    .trust-badges {
        gap: 12px;
    }

    .mini-vsl-area {
        margin: 16px 20px 20px;
        padding: 18px;
    }

    .mini-vsl-step {
        padding: 10px 12px;
        gap: 10px;
    }

    .mini-vsl-letter {
        width: 30px;
        height: 30px;
        font-size: .95rem;
    }

    .mini-vsl-step div {
        font-size: .82rem;
    }
}

@media (max-width: 400px) {
    .quiz-emoji {
        font-size: 2.4rem;
    }

    .quiz-title {
        font-size: 1.15rem;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: .88rem;
    }
}