    :root {
        --red: #C9302A;
        --red-glow: rgba(201, 48, 42, .45);
        --warm: #D4724A;
        --paper: #F5F1EC;
        --gold: #E8B86D;
        --gold-dim: #c49540;
        --ink: #0E0E10;
        --card: #131416;
        --border: rgba(255, 255, 255, .11);
        --radius: 22px;
        --font-head: 'Sora', sans-serif;
        --font-body: 'DM Sans', sans-serif;
        --red: #BA2C28;
        --red-dark: #93120F;
        --warm: #BE6546;
        --paper: #F6F6F6;
        --ink: #101214;
        --muted: #A7ABB1;
        --card: #111315;
        --card-2: #0B0D0E;
        --border: rgba(255, 255, 255, .14);
        --shadow: 0 18px 40px rgba(0, 0, 0, .35);
        --radius: 22px;



        /* novo */
        --pink: #e91e8c;
        --pink-light: #f472b6;
        --pink-soft: #fce7f3;
        --dark: #1a0a12;
        --gray: #4b3040;
        --light: #fff9fc;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    .wrap {
        width: min(540px, 100%)
    }

    /* ── CARD ── */
    .card {
        background: linear-gradient(165deg, #191B1D 0%, #111213 100%);
        border: 1px solid var(--border);
        border-radius: 28px;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset,
            0 32px 64px rgba(0, 0, 0, .6),
            0 0 80px -20px var(--red-glow);
        overflow: hidden;
    }

    /* ── HEADER ── */
    .head {
        padding: 22px 24px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        /* background: radial-gradient(ellipse 600px 180px at 30% 0%, rgba(201, 48, 42, .28), transparent 55%); */
        display: flex;
        gap: 14px;
        align-items: center;
    }

    .logo-badge {
        width: 52px;
        height: 52px;
        flex: 0 0 auto;
        background: linear-gradient(135deg, #2C1210, #1A0C0B);
        border: 1px solid rgba(201, 48, 42, .35);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 8px 24px rgba(201, 48, 42, .22);
    }

    .head-text {}

    .kicker {
        font-family: var(--font-head);
        font-size: 10px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--pink);
        font-weight: 700;
        margin-bottom: 5px;
    }

    .head-title {
        font-family: var(--font-head);
        font-size: 17px;
        font-weight: 800;
        color: var(--dark);
        line-height: 1.15;
    }

    .head-sub {
        font-size: 12px;
        color: var(--dark);
        margin-top: 4px;
        line-height: 1.4;
    }

    /* ── BODY ── */
    .body {
        padding: 22px 24px 24px
    }

    /* ── PROGRESS ── */
    .prog-wrap {
        margin-bottom: 20px
    }

    .prog-bar {
        height: 5px;
        background: rgba(255, 255, 255, .09);
        border-radius: 999px;
        overflow: hidden;
    }

    .prog-fill {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, var(--red), var(--warm), var(--gold));
        border-radius: 999px;
        transition: width .45s cubic-bezier(.4, 0, .2, 1);
    }

    .prog-meta {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        color: rgba(255, 255, 255, .4);
        margin-top: 8px;
        font-family: var(--font-head);
        letter-spacing: .04em;
    }

    .prog-step {
        color: var(--dark);
        font-weight: 700
    }

    /* ── QUESTION ── */
    .q-wrap {
        animation: qIn .28s cubic-bezier(.4, 0, .2, 1);
    }

    @keyframes qIn {
        from {
            opacity: 0;
            transform: translateY(12px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .q-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 10px;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--warm);
        font-weight: 700;
        font-family: var(--font-head);
        margin-bottom: 10px;
    }

    .q-label span {
        width: 16px;
        height: 16px;
        background: rgba(212, 114, 74, .18);
        border: 1px solid rgba(212, 114, 74, .3);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
    }

    .q-title {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .q-help {
        font-size: 15px;
        color: #9b7a8a;
        margin-bottom: 28px;
        font-weight: 400;
    }

    /* ── OPTIONS ── */
    .options {
        display: grid;
        gap: 9px
    }

    .opt {
        width: 100%;
        background: rgba(255, 255, 255, .055);
        border: 1px solid rgba(255, 255, 255, .10);
        color: rgba(255, 255, 255, .85);
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 600;
        font-family: var(--font-body);
        cursor: pointer;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all .18s ease;
        position: relative;
        overflow: hidden;
    }


    .opt {
        background: #FCE7F3
    }

    .opt::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--pink), var(--pink-light));
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .opt:hover {
        border-color: var(--pink-light);
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(233, 30, 140, 0.15);
    }

    .opt-check {
        width: 20px;
        height: 20px;
        flex: 0 0 auto;
        border: 1.5px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        transition: all .18s;
    }

    .opt.selected {
        background: linear-gradient(135deg, var(--pink), var(--pink-light));
        border-color: rgba(255, 255, 255, .22);
        color: #fff;
        box-shadow: 0 8px 24px rgba(201, 48, 42, .25);
    }

    .opt.selected .opt-check {
        background: rgba(255, 255, 255, .22);
        border-color: rgba(255, 255, 255, .4);
    }

    .opt.selected .opt-check::after {
        content: '✓'
    }

    /* multi-select confirm */
    .confirm-btn {
        margin-top: 14px;
        width: 100%;
        background: linear-gradient(90deg, var(--red), var(--warm));
        border: 1px solid rgba(255, 255, 255, .2);
        color: #fff;
        padding: 14px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 800;
        font-family: var(--font-head);
        cursor: pointer;
        letter-spacing: .02em;
        box-shadow: 0 10px 28px rgba(201, 48, 42, .28);
        display: none;
        transition: transform .1s, box-shadow .2s;
    }

    .confirm-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 36px rgba(201, 48, 42, .38)
    }

    .confirm-btn:active {
        transform: translateY(0)
    }

    .confirm-btn.visible {
        display: block;
        animation: qIn .22s ease
    }

    /* ── SLIDER ── */
    .slider-wrap {
        margin-top: 4px
    }

    .slider-display {
        text-align: center;
        margin-bottom: 18px;
    }

    .slider-val {
        font-family: var(--font-head);
        font-size: 52px;
        font-weight: 800;
        background: var(--dark);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .slider-unit {
        font-size: 14px;
        color: rgba(255, 255, 255, .4);
        font-family: var(--font-head);
        letter-spacing: .08em;
        margin-top: 4px;
    }

    .range-row {
        display: flex;
        align-items: center;
        gap: 12px
    }

    .range-min,
    .range-max {
        font-size: 11px;
        color: var(--dark);
        font-family: var(--font-head);
        flex: 0 0 auto
    }

    input[type=range] {
        -webkit-appearance: none;
        appearance: none;
        flex: 1;
        height: 6px;
        background: var(--pink);
        border-radius: 999px;
        outline: none;
        cursor: pointer;
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--red), var(--warm));
        border: 2px solid rgba(255, 255, 255, .3);
        box-shadow: 0 4px 14px rgba(201, 48, 42, .45);
        cursor: pointer;
        transition: transform .1s;
    }

    input[type=range]::-webkit-slider-thumb:hover {
        transform: scale(1.12)
    }

    input[type=range]::-moz-range-thumb {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--red), var(--warm));
        border: 2px solid rgba(255, 255, 255, .3);
        box-shadow: 0 4px 14px rgba(201, 48, 42, .45);
        cursor: pointer;
    }

    .slider-continue {
        margin-top: 20px;
        width: 100%;
        background: linear-gradient(90deg, var(--red), var(--warm));
        border: 1px solid rgba(255, 255, 255, .2);
        color: #fff;
        padding: 14px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 800;
        font-family: var(--font-head);
        cursor: pointer;
        letter-spacing: .02em;
        box-shadow: 0 10px 28px rgba(201, 48, 42, .28);
        transition: transform .1s;
    }

    .slider-continue:hover {
        transform: translateY(-1px)
    }

    /* ── INPUT ── */
    .input-wrap {
        margin-top: 4px
    }

    .styled-input {
        width: 100%;
        background: rgba(255, 255, 255, .055);
        border: 1.5px solid rgba(255, 255, 255, .12);
        color: #fff;
        border-radius: 14px;
        padding: 14px 16px;
        font-size: 18px;
        font-weight: 700;
        font-family: var(--font-head);
        outline: none;
        transition: border-color .2s, box-shadow .2s;
    }

    .styled-input::placeholder {
        color: rgba(255, 255, 255, .25);
        font-weight: 400
    }

    .styled-input:focus {
        border-color: rgba(201, 48, 42, .6);
        box-shadow: 0 0 0 4px rgba(201, 48, 42, .14);
    }

    .input-hint {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        color: rgba(255, 255, 255, .38);
        margin-top: 8px;
    }

    .input-continue {
        margin-top: 14px;
        width: 100%;
        background: linear-gradient(90deg, var(--red), var(--warm));
        border: 1px solid rgba(255, 255, 255, .2);
        color: #fff;
        padding: 14px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 800;
        font-family: var(--font-head);
        cursor: pointer;
        letter-spacing: .02em;
        box-shadow: 0 10px 28px rgba(201, 48, 42, .28);
        transition: transform .1s, opacity .2s;
    }

    .input-continue:hover {
        transform: translateY(-1px)
    }

    .input-continue[disabled] {
        opacity: .35;
        cursor: not-allowed;
        transform: none
    }

    /* ── BACK NAV ── */
    .back-row {
        margin-top: 14px;
        display: flex;
        justify-content: flex-start
    }

    .back-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: rgba(255, 255, 255, .38);
        font-size: 13px;
        font-family: var(--font-body);
        padding: 4px 0;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color .15s;
    }

    .back-btn:hover {
        color: rgba(255, 255, 255, .7)
    }

    .back-btn:disabled {
        opacity: .25;
        cursor: not-allowed
    }

    /* ── ERROR ── */
    .error-msg {
        margin-top: 12px;
        color: #ffd0d0;
        background: rgba(201, 48, 42, .16);
        border: 1px solid rgba(201, 48, 42, .3);
        border-radius: 12px;
        padding: 10px 14px;
        font-size: 13px;
        display: none;
    }

    /* ──────────────────────────────────────
       FINAL CARD
    ────────────────────────────────────── */
    .final-card {
        display: none;
        animation: qIn .4s ease;
        text-align: center;
    }

    .formula-badge {
        position: relative;
        margin: 0 auto 20px;
        width: 80px;
        height: 80px;
    }

    .formula-badge .ring {
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1.5px solid transparent;
        background: conic-gradient(var(--gold), var(--red), var(--warm), var(--gold)) border-box;
        -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: spin 4s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    .formula-badge .inner {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: radial-gradient(circle at 35% 35%, #3D1210, #1C0A09);
        border: 1px solid rgba(201, 48, 42, .4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        box-shadow: 0 0 40px rgba(201, 48, 42, .3), 0 8px 24px rgba(0, 0, 0, .5);
    }

    .final-tag {
        display: inline-block;
        background: linear-gradient(90deg, rgba(232, 184, 109, .15), rgba(232, 184, 109, .08));
        border: 1px solid rgba(232, 184, 109, .3);
        color: var(--gold);
        font-size: 10px;
        letter-spacing: .22em;
        text-transform: uppercase;
        font-family: var(--font-head);
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 999px;
        margin-bottom: 12px;
    }

    .final-title {
        font-family: var(--font-head);
        font-size: 26px;
        font-weight: 800;
        color: var(--dark);
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .final-title em {
        font-style: normal;
        background: linear-gradient(90deg, var(--gold), var(--warm));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .final-sub {
        font-size: 14px;
        color: #000;
        line-height: 1.6;
        max-width: 36ch;
        margin: 0 auto 22px;
    }

    .profile-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-bottom: 22px;
    }

    .pill {
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 999px;
        padding: 6px 14px;
        font-size: 12px;
        color: rgba(255, 255, 255, .7);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .pill strong {
        color: #000
    }

    .discount-box {
        background: linear-gradient(135deg, rgba(232, 184, 109, .12), rgba(232, 184, 109, .06));
        border: 1px solid rgba(232, 184, 109, .28);
        border-radius: 18px;
        padding: 18px 20px;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
    }

    .discount-box::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 184, 109, .12), transparent 65%);
    }

    .discount-pct {
        font-family: var(--font-head);
        font-size: 42px;
        font-weight: 800;
        background: linear-gradient(90deg, var(--gold), #f5d08a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 2px;
    }

    .discount-label {
        font-size: 13px;
        color: rgba(255, 255, 255, .55);
        margin-bottom: 10px;
    }

    .discount-code {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 0, 0, .3);
        border: 1px dashed rgba(232, 184, 109, .4);
        border-radius: 10px;
        padding: 8px 14px;
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: .12em;
        cursor: pointer;
        transition: background .2s;
    }

    .discount-code:hover {
        background: rgba(232, 184, 109, .1)
    }

    .discount-code .copy-icon {
        font-size: 13px;
        opacity: .7
    }

    .copy-feedback {
        font-size: 11px;
        color: rgba(255, 255, 255, .4);
        margin-top: 8px;
        height: 16px;
        transition: opacity .3s;
    }

    .cta-btn {
        width: 100%;
        background: linear-gradient(90deg, var(--red) 0%, #B5341E 50%, var(--warm) 100%);
        border: 1px solid rgba(255, 255, 255, .2);
        color: #fff;
        padding: 16px 20px;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 800;
        font-family: var(--font-head);
        cursor: pointer;
        letter-spacing: .02em;
        box-shadow: 0 12px 36px rgba(201, 48, 42, .35);
        transition: transform .12s, box-shadow .2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 44px rgba(201, 48, 42, .45)
    }

    .cta-btn:active {
        transform: translateY(0)
    }

    .final-footer {
        font-size: 11px;
        color: rgba(255, 255, 255, .3);
        line-height: 1.5;
    }

    .final-footer a {
        color: rgba(255, 255, 255, .45);
        text-decoration: none
    }

    /* ── BACK from final ── */
    .final-back {
        background: none;
        border: none;
        cursor: pointer;
        color: rgba(255, 255, 255, .3);
        font-size: 12px;
        font-family: var(--font-body);
        margin-bottom: 20px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: color .15s;
    }

    .final-back:hover {
        color: rgba(255, 255, 255, .6)
    }

    @media(max-width:480px) {
        .head {
            padding: 18px 16px 14px
        }

        .body {
            padding: 18px 16px 20px
        }

        .q-title {
            font-size: 19px
        }

        .final-title {
            font-size: 22px
        }
    }



    .quiz-status {
        display: none;
        max-width: 960px;
        margin: 24px auto;
        padding: 18px 24px;

        background: linear-gradient(180deg,
                var(--red-dark),
                var(--card));

        border-radius: var(--radius);
        box-shadow: var(--shadow);
        border: 1px solid var(--border);

        display: flex;
        align-items: center;
        gap: 14px;
    }

    .quiz-status.show {
        display: flex;
    }

    /* ícone */
    .quiz-status .status-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        color: var(--red-dark);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 18px;
        font-weight: 800;
        flex-shrink: 0;
    }

    /* texto */
    .quiz-status .status-text strong {
        color: #fff;
        font-size: 17px;
        font-weight: 700;
    }

    .quiz-status .status-text span {
        color: rgba(255, 255, 255, .85);
        font-size: 17px;
    }