@media (max-width: 600px) {
    .quiz-container {
        padding: 12px 10px;
        margin-top: 5px;
    }

    h2 {
        font-size: 1.35rem;
        margin-bottom: 16px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 12px 14px;
    }

    .nav-btns {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-next,
    .btn-prev {
        width: 100%;
        padding: 14px;
        justify-content: center;
    }

    .grid-options,
    .premium-grid,
    .options-grid,
    .options-grid-2,
    .options-grid-3 {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    .option-btn,
    .premium-btn,
    .select-card {
        padding: 10px 4px !important;
        font-size: 0.8rem !important;
        min-height: 65px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .option-btn i,
    .premium-btn i,
    .select-card i {
        font-size: 1.1rem !important;
        margin-bottom: 4px !important;
    }

    .premium-btn small,
    .select-card small {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        margin-top: 2px !important;
    }
}

/* Polimento Visual Extra */
.form-input:focus,
.form-textarea:focus {
    border-color: #9b59b6;
    box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.1);
    outline: none;
    transition: all 0.3s ease;
}

.reveal-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reveal-card-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    background-color: #fff;
    /* Reset para branco no quiz conforme print */
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Header Customizado */
.quiz-custom-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 10px 0;
}

.quiz-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 6px;
    line-height: 1.25;
}

.quiz-main-subtitle {
    font-size: 0.92rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Progresso */
.progress-section {
    margin-bottom: 35px;
}

.progress-labels {
    display: none !important;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #8e44ad;
    width: 0%;
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Steps */
.step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
}

.text-center {
    text-align: center;
}

/* Inputs e Labels */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.subtitle {
    font-weight: 400;
    font-size: 0.85rem;
    color: #777;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #8e44ad;
    outline: none;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

/* Opções (Botões) */
.grid-options {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

.flex-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
    text-align: center;
    flex: 1;
}

.option-btn:hover {
    background: #fdfbfd;
    border-color: #8e44ad;
}

.option-btn.selected {
    background: #8e44ad;
    color: #fff;
    border-color: #8e44ad;
}

/* Botões de Navegação */
.nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.btn-next,
.btn-prev {
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: 0.3s;
}

.btn-prev {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}

.btn-prev:hover {
    background: #f5f5f5;
}

.btn-next {
    background: #8e44ad;
    color: #fff;
    flex: 1;
    /* Ocupa o resto do espaço */
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.btn-next.finish-btn {
    background: linear-gradient(90deg, #e91e63, #8e44ad);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.5);
    background-color: #71368a;
}

/* Erros */
.error-msg {
    color: #e74c3c;
    font-size: 0.85rem;
    display: none;
    margin-top: 5px;
}

.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
    background: #fdeaea;
}

/* Step Final */
.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
}

.payment-box {
    border: 2px solid #8e44ad;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fbf6ff;
    margin-bottom: 30px;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-info i {
    font-size: 2rem;
    color: #8e44ad;
}

.payment-info div {
    display: flex;
    flex-direction: column;
}

.payment-info strong {
    color: #333;
}

.payment-info span {
    font-size: 0.8rem;
    color: #666;
}

.payment-price {
    text-align: right;
}

.payment-price .old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    display: block;
}

.payment-price .new {
    font-weight: 700;
    color: #8e44ad;
    font-size: 1.2rem;
}

.new-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge {
    background: #2ecc71;
    color: #fff;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Responsividade Mobile */
@media screen and (max-width: 600px) {
    .grid-options {
        grid-template-columns: 1fr 1fr;
    }

    .payment-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-price {
        text-align: center;
    }

    .new-row {
        justify-content: center;
    }

}

/* Loading Screen - Global Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    /* Sombra suave */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.spinner-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #f3e5f5;
    border-top: 4px solid #8e44ad;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    /* Giro com efeito elástico */
}

.spinner-icon {
    font-size: 2.5rem;
    color: #8e44ad;
    animation: pulse-icon 2s ease-in-out infinite;
    z-index: 2;
}

.loading-text {
    font-size: 1.4rem;
    color: #4a4a4a;
    font-weight: 700;
    /* Mais destaque conforme pedido */
    margin-bottom: 15px;
    min-height: 1.5em;
    position: relative;

    /* Padrão para animação */
    opacity: 0;
    transform: translateY(15px);
}

.loading-text.animate-in {
    animation: textPass 1.9s ease-in-out forwards;
    /* 1.9s para caber no intervalo de 2s */
}

.loading-subtext {
    color: #8e44ad;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Animações Keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(142, 68, 173, 0.5));
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Animação de "Passar pela tela" */
@keyframes textPass {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    15% {
        opacity: 1;
        transform: translateY(0);
    }

    85% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-15px);
    }
}/* --- PREMIUM GRID OPTIONS --- */
.premium-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

.premium-btn {
    background: #fff;
    border: 2px solid #e1bee7;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    min-height: 80px;
    color: #4a148c;
}

.premium-btn small {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 5px;
    font-weight: 400;
    line-height: 1.2;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(142, 68, 173, 0.1);
    border-color: #8e44ad;
    background: #fbf6ff;
}

.premium-btn.selected {
    background: linear-gradient(135deg, #8e44ad, #6c3483);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.3);
    transform: translateY(-2px);
}

.premium-btn.selected small {
        opacity: 0.9;
        color: #fff;
    }

    @media screen and (max-width: 600px) {
        .premium-grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 10px !important;
        }

        .option-btn,
        .premium-btn,
        .select-card {
            padding: 14px 10px !important;
            font-size: 0.88rem !important;
            min-height: 72px !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
        }

        .option-btn i,
        .premium-btn i,
        .select-card i {
            font-size: 1.25rem !important;
            margin-bottom: 5px !important;
        }

        .premium-btn small,
        .select-card small {
            font-size: 0.72rem !important;
            line-height: 1.2 !important;
            margin-top: 3px !important;
        }
    }

/* --- SUMMARY BOX (STEP 5) --- */
.summary-box {
    background: #fbf6ff;
    border: 1px solid #e1bee7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}
/* Botões de Navegação */
.nav-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    gap: 16px;
}

.btn-next,
.btn-prev {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.btn-prev {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    padding: 14px 24px;
    font-size: 0.95rem;
}

.btn-prev:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #334155;
    transform: translateY(-2px);
}

.btn-next {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #ffffff;
    flex: 1;
    box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.4), 0 8px 10px -6px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-next::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-next:hover::after {
    left: 140%;
}

.btn-next.finish-btn,
.btn-next.magic-btn {
    background: linear-gradient(135deg, #e11d48 0%, #9333ea 100%);
    box-shadow: 0 12px 28px -5px rgba(225, 29, 72, 0.45);
}

.btn-next:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 32px -6px rgba(236, 72, 153, 0.5), 0 10px 16px -6px rgba(139, 92, 246, 0.4);
}

.btn-next:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 6px 15px rgba(236, 72, 153, 0.3);
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3e5f5;
}
.summary-item:last-child {
    border-bottom: none;
}
.summary-text {
    font-size: 0.95rem;
    color: #4a148c;
}
.summary-text strong {
    font-weight: 600;
    margin-right: 5px;
}
.btn-edit {
    background: transparent;
    border: none;
    color: #8e44ad;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}
.btn-edit:hover {
    color: #6c3483;
}
/* --- CHECKLIST LOADING --- */
.loading-overlay .checklist-mode {
    background: #fdfaf6;
    border: 1px solid #efe8e1;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    margin: 0 auto;
}
.checklist-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: #a87e5b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.loading-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.loading-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #b0a59a;
    transition: all 0.3s ease;
}
.loading-checklist li i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}
.loading-checklist li.active {
    color: #4a2c11;
    font-weight: 600;
}
.loading-checklist li.active i {
    color: #c97a7e;
    animation: spin 1.5s linear infinite;
}
.loading-checklist li.done {
    color: #a89f96;
    text-decoration: line-through;
}
.loading-checklist li.done i {
    color: #c97a7e;
}
/* --- NEW LOADING SCREEN AESTHETICS --- */
.new-loading-style {
    background: linear-gradient(135deg, #fdfbfd 0%, #f3e8ff 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.new-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    padding: 20px;
}
.progress-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 10px auto;
}
.progress-ring {
    transform: rotate(-90deg);
}
.progress-ring__track {
    stroke: #e2d9e6;
}
.progress-ring__circle {
    stroke-dasharray: 440; /* 2 * PI * 70 */
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 0.5s ease;
}
.progress-circle-inner {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@keyframes pulseHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); box-shadow: 0 4px 25px rgba(233, 67, 100, 0.6); }
    100% { transform: scale(1); }
}

.heart-icon {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 5px;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
    animation: pulseHeart 1s infinite ease-in-out alternate;
}
.progress-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}
.progress-text small {
    font-size: 1rem;
    color: #718096;
    margin-left: 2px;
}

.loading-message {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: #1a202c;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 6px;
}

.loading-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}
.loading-step {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.loading-step .step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8rem;
}
.loading-step.done {
    background: #ebfcf4;
    border: 1px solid #c3f1da;
    color: #059669;
}
.loading-step.done .step-icon {
    background: #059669;
    color: white;
}
.loading-step.active {
    background: #fff0f5;
    border: 1px solid #fce7f3;
    color: #e11d48;
}
.loading-step.active .step-icon {
    background: #e11d48;
    color: white;
}
.loading-step.active .step-icon i {
    animation: spin 1s linear infinite;
}
.loading-step.pending {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #94a3b8;
}
.loading-step.pending .step-icon {
    background: transparent;
    color: #cbd5e1;
}

.loading-warning {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- Checkout Styles --- */
.checkout-header {
    text-align: center;
    margin-bottom: 25px;
}
.checkout-header h2 {
    color: #4a148c;
    margin-bottom: 10px;
}
.checkout-header h2 i {
    color: #c93051;
}
.payment-tabs {
    display: flex;
    background: #fdfbfd;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 25px;
    border: 1px solid #e1bee7;
}
.payment-tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #a0aec0;
    transition: all 0.3s ease;
}
.payment-tab.active {
    background: #c93051;
    color: white;
    box-shadow: 0 4px 10px rgba(201, 48, 81, 0.3);
}
.payment-tab i {
    margin-right: 8px;
}
.payment-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.payment-content.active {
    display: block;
}

/* --- Payment Status Modal --- */
.payment-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.payment-modal-overlay.show {
    display: flex;
    opacity: 1;
}
.payment-modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.payment-modal-overlay.show .payment-modal-content {
    transform: scale(1);
}
.payment-status-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}
.payment-status-icon.loading {
    color: #8b5cf6;
}
.payment-status-icon.success {
    color: #10b981;
}
.payment-status-icon.error {
    color: #ef4444;
}
.payment-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}
.payment-modal-text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
}
.payment-modal-error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}
.payment-modal-btn {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    display: none;
}
.payment-modal-btn:hover {
    background: #7c3aed;
}
/* --- Checkout Offer Card Style (Glamour Premium Roxo & Rosa) --- */
.checkout-offer-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 24px;
    margin-bottom: 25px;
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.12), 0 4px 15px rgba(236, 72, 153, 0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #6366f1 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Banner de Escassez - Psicologia das Cores para Urgência (Degradê Vermelho/Laranja de Alta Conversão) */
.scarcity-banner {
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 100%);
    border: 1px solid #fca5a5;
    border-radius: 22px;
    padding: 20px 15px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.scarcity-header {
    color: #e11d48;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.scarcity-header i {
    color: #dc2626;
    animation: clockPulse 1.5s ease-in-out infinite;
}

@keyframes clockPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.scarcity-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}
.timer-colon {
    font-size: 2rem;
    font-weight: 900;
    color: #e11d48;
    line-height: 1;
    margin-top: -12px;
    animation: blinkColon 1s step-start infinite;
}

@keyframes blinkColon {
    50% { opacity: 0.3; }
}

.timer-unit {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 18px;
    min-width: 72px;
    border: 1px solid #fecdd3;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timer-num {
    font-size: 2.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e11d48 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.timer-label {
    font-size: 0.75rem;
    color: #be123c;
    font-weight: 800;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.scarcity-subtext {
    font-size: 0.85rem;
    color: #9f1239;
    font-weight: 700;
}

/* Título e Subtítulo */
.offer-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.25;
    margin-bottom: 12px;
    text-align: left;
}
.offer-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left;
}

/* Grid 2x2 de Benefícios Glamour */
.offer-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}
.feature-pill {
    background: #ffffff;
    border: 1px solid #fae8ff;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.04);
}
.feature-pill .icon-pink {
    color: #ec4899;
    font-size: 1.05rem;
}
.feature-pill span {
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
}

/* Preço Glamour */
.offer-price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}
.old-price {
    font-size: 1.15rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}
.main-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.price-suffix {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

/* Botão CTA Glamour */
.btn-checkout-glamour {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-checkout-glamour:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 32px rgba(16, 185, 129, 0.45);
}

.checkout-footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: #64748b;
}
.checkout-footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 480px) {
    .offer-features-grid {
        grid-template-columns: 1fr;
    }
    .offer-title {
        font-size: 1.4rem;
    }
}
/* --- Animated Musical Note & Soundwave Equalizer (Loading Circle) --- */
.music-note-svg {
    animation: noteFloat 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.25));
}

@keyframes noteFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-4px) scale(1.04);
    }
}

.soundwave-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 22px;
    margin-top: 6px;
}

.soundwave-container .bar {
    width: 4px;
    background: #8b5cf6;
    border-radius: 4px;
    height: 6px;
    animation: soundwaveBounce 1.1s ease-in-out infinite alternate;
}

.soundwave-container .bar:nth-child(1) { height: 12px; animation-delay: 0.1s; }
.soundwave-container .bar:nth-child(2) { height: 8px;  animation-delay: 0.35s; }
.soundwave-container .bar:nth-child(3) { height: 16px; animation-delay: 0.05s; }
.soundwave-container .bar:nth-child(4) { height: 10px; animation-delay: 0.45s; }
.soundwave-container .bar:nth-child(5) { height: 20px; animation-delay: 0.2s; }
.soundwave-container .bar:nth-child(6) { height: 11px; animation-delay: 0.5s; }
.soundwave-container .bar:nth-child(7) { height: 15px; animation-delay: 0.15s; }

@keyframes soundwaveBounce {
    0% {
        height: 5px;
        transform: scaleY(0.4);
        opacity: 0.7;
    }
    100% {
        height: 22px;
        transform: scaleY(1);
        opacity: 1;
    }
}
/* --- Vinyl Audio Player (Reference Image Design) --- */
.vinyl-player-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f9 100%);
    border: 1px solid #ffe4e6;
    border-radius: 28px;
    padding: 35px 25px 25px 25px;
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.06);
    overflow: hidden;
    margin-bottom: 25px;
    text-align: center;
}

/* Ambient Sound Wave Lines Background in Low Opacity */
.ambient-spectrum-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.wave-lines-svg {
    width: 100%;
    height: 140px;
}

.wave-line-1 {
    animation: wavePulse1 4s ease-in-out infinite alternate;
}

.wave-line-2 {
    animation: wavePulse2 6s ease-in-out infinite alternate;
}

@keyframes wavePulse1 {
    0% { transform: translateY(-6px) scaleY(0.85); }
    100% { transform: translateY(6px) scaleY(1.15); }
}

@keyframes wavePulse2 {
    0% { transform: translateY(6px) scaleY(1.15); }
    100% { transform: translateY(-6px) scaleY(0.85); }
}

/* Vinyl Disc Container & Disc */
.vinyl-disc-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.vinyl-disc {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, #1e293b 0%, #0f172a 70%, #020617 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: spinVinyl 14s linear infinite;
    animation-play-state: paused;
}
.vinyl-disc.playing {
    animation-play-state: running;
}

@keyframes spinVinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Vinyl Grooves Texture */
.vinyl-grooves {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.03), 
                inset 0 0 0 16px rgba(255, 255, 255, 0.02),
                inset 0 0 0 24px rgba(255, 255, 255, 0.03),
                inset 0 0 0 32px rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

/* Vinyl Center Label */
.vinyl-center-label {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff1f2 0%, #ffe4e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.vinyl-center-label .center-hole {
    width: 8px;
    height: 8px;
    background: #0f172a;
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.vinyl-center-label svg {
    position: relative;
    z-index: 1;
}

/* Status Line */
.player-status-line {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 22px;
}

.mini-equalizer {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}
.mini-equalizer span {
    width: 3px;
    background: #e11d48;
    border-radius: 2px;
    height: 4px;
    animation: miniEq 0.8s ease-in-out infinite alternate;
}
.mini-equalizer span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.mini-equalizer span:nth-child(2) { height: 12px; animation-delay: 0.3s; }
.mini-equalizer span:nth-child(3) { height: 8px; animation-delay: 0.05s; }
.mini-equalizer span:nth-child(4) { height: 10px; animation-delay: 0.2s; }

@keyframes miniEq {
    0% { height: 3px; }
    100% { height: 12px; }
}

/* Progress Section */
.player-progress-section {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}
.player-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    padding: 0 2px;
}
.player-progress-bar-track {
    width: 100%;
    height: 7px;
    background: #ffe4e6;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.player-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e11d48 0%, #f59e0b 100%);
    border-radius: 20px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Controls */
.player-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.btn-step-seek {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #fecdd3;
    color: #e11d48;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.btn-step-seek:hover {
    background: #fff1f2;
    transform: scale(1.05);
}

.btn-main-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 22px rgba(225, 29, 72, 0.35);
}
.btn-main-play:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(225, 29, 72, 0.45);
}
.btn-main-play i {
    margin-left: 2px;
}
.btn-main-play i.fa-pause {
    margin-left: 0;
}
/* --- Caixa de Aviso de Limite da Prévia (Degradê Rosa/Vermelho) --- */
.preview-limit-box {
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 14px 18px;
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 22px rgba(225, 29, 72, 0.3);
    animation: slideDownLimit 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    text-align: left;
}

.preview-limit-box .warning-icon-svg {
    flex-shrink: 0;
}

.preview-limit-box span {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}

@keyframes slideDownLimit {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- Ghost Questions Design (Perguntas Fantasma) --- */
.ghost-microcopy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff1f2 0%, #faf5ff 100%);
    border: 1px solid #f3e8ff;
    color: #9333ea;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.05);
}

.ghost-question-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.35;
    margin-bottom: 25px;
    text-align: left;
}

.ghost-choices-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.ghost-choice-btn {
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    width: 100%;
}

.ghost-choice-btn:hover {
    border-color: #ec4899;
    background: #fff5f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.1);
}

.ghost-choice-btn.selected {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.3);
    transform: translateY(-2px);
}

.ghost-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.ghost-choice-btn:hover .ghost-badge {
    background: #ffe4e6;
    color: #e11d48;
}

.ghost-choice-btn.selected .ghost-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.ghost-text {
    font-size: 0.98rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.ghost-choice-btn.selected .ghost-text {
    color: #ffffff;
}
/* --- EXIT OFFER MODAL --- */
.exit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.exit-modal-content {
    background: #ffffff;
    border-radius: 28px;
    max-width: 480px;
    width: 100%;
    padding: 35px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(236, 72, 153, 0.4);
    border: 2px solid #f472b6;
    animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.exit-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
}

.exit-modal-close:hover {
    color: #334155;
}

.exit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.exit-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.exit-subtitle {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
}

.exit-impact-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.exit-impact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #334155;
}

.exit-impact-item i {
    font-size: 1.1rem;
    margin-top: 2px;
}

.text-pink { color: #ec4899; }
.text-purple { color: #8b5cf6; }
.text-gold { color: #d97706; }

.exit-price-highlight {
    margin-bottom: 22px;
}

.exit-price-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.exit-price-tag {
    font-size: 2.8rem;
    font-weight: 900;
    color: #16a34a;
    line-height: 1;
    margin-top: 4px;
}

.exit-price-tag small {
    font-size: 1.4rem;
    font-weight: 700;
}

.exit-price-suffix {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-top: 4px;
}

.btn-exit-accept {
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-exit-accept:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.exit-decline-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: underline;
    transition: 0.2s;
}

.exit-decline-link:hover {
    color: #64748b;
}
/* --- Botão Vermelho Menor de Desistir na Exit Offer --- */
.btn-exit-decline {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 12px 18px;
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #dc2626;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.btn-exit-decline:hover {
    background: #fee2e2;
    border-color: #f87171;
    color: #b91c1c;
    transform: translateY(-1px);
}

/* --- Modal Exit Offer Ultra-Compacto para Mobile --- */
@media (max-width: 768px) {
    .exit-modal-overlay {
        padding: 12px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .exit-modal-content {
        padding: 20px 16px 16px !important;
        border-radius: 20px !important;
        max-width: 95% !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }

    .exit-modal-close {
        top: 10px !important;
        right: 14px !important;
        font-size: 1.5rem !important;
    }

    .exit-badge {
        font-size: 0.7rem !important;
        padding: 4px 12px !important;
        margin-bottom: 8px !important;
    }

    .exit-title {
        font-size: 1.1rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .exit-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
        color: #64748b !important;
    }

    .exit-impact-box {
        padding: 10px 12px !important;
        gap: 6px !important;
        margin-bottom: 12px !important;
        border-radius: 12px !important;
    }

    .exit-impact-item {
        font-size: 0.78rem !important;
        gap: 8px !important;
        line-height: 1.3 !important;
    }

    .exit-impact-item i {
        font-size: 0.95rem !important;
        margin-top: 1px !important;
    }

    .exit-price-highlight {
        margin-bottom: 10px !important;
    }

    .exit-price-label {
        font-size: 0.72rem !important;
    }

    .exit-price-tag {
        font-size: 2rem !important;
        margin-top: 2px !important;
    }

    .exit-price-tag small {
        font-size: 1.1rem !important;
    }

    .exit-price-suffix {
        font-size: 0.75rem !important;
        margin-top: 2px !important;
    }

    .btn-exit-accept {
        padding: 13px 16px !important;
        font-size: 0.92rem !important;
        border-radius: 40px !important;
    }

    .btn-exit-decline {
        margin-top: 8px !important;
        padding: 9px 12px !important;
        font-size: 0.72rem !important;
        border-radius: 40px !important;
    }
}
/* --- Fake Activity Notifications (Passo de Loading) --- */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.notification-toast {
    background: #fff;
    border: 2px solid #9b59b6;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 320px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    pointer-events: none;
}

.notification-toast.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.notif-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #aa00ff, #ff0055);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.4;
}

.notif-content strong {
    font-weight: 700;
}

.notif-time {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
}

.notif-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #aaa;
    cursor: pointer;
}

.notif-close:hover {
    color: #555;
}

@media (max-width: 480px) {
    .notification-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
        width: 90%;
        max-width: 400px;
    }

    .notification-toast {
        min-width: auto;
        width: 100%;
    }
}
/* --- Download PDF Button --- */
.btn-download-pdf {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #ffffff !important;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1.02rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
    margin-top: 15px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-download-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.45);
}
/* --- PDF Modal & Template Wrapper --- */
#pdf-lyric-template-wrapper {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: -9999 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: #ffffff !important;
}

.pdf-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pdf-modal-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #eab308;
}

.pdf-modal-card .pdf-icon-glow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

/* Ocultar aviso/badge do Google reCAPTCHA */
.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* FORCE 2-COLUMN GRID ON ALL MOBILE DEVICES FOR OPTION CARDS */
#who-options,
#whoFor-options,
#occasion-options,
#style-options,
#voice-options,
.premium-grid,
.grid-options,
.options-grid,
.options-grid-2,
.options-grid-3 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#who-options .premium-btn,
#whoFor-options .premium-btn,
#occasion-options .premium-btn,
#style-options .premium-btn,
#voice-options .premium-btn,
.premium-btn,
.option-btn,
.select-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 8px !important;
    font-size: 0.88rem !important;
    min-height: 64px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    word-break: break-word !important;
}

/* --- Ajustes de Estética & Alinhamento do Checkout Mobile --- */
.scarcity-header {
    color: #be123c !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    text-align: center !important;
    line-height: 1.4 !important;
    flex-wrap: wrap !important;
}

.scarcity-header i {
    color: #dc2626 !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.offer-price-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 18px 0 12px 0 !important;
    flex-wrap: wrap !important;
    text-align: center !important;
}

.offer-price-container .old-price {
    font-size: 1.1rem !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.offer-price-container .main-price {
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    color: #10b981 !important;
    background: none !important;
    -webkit-text-fill-color: #10b981 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.offer-price-container .price-suffix {
    font-size: 0.88rem !important;
    color: #64748b !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    width: 100% !important;
    display: block !important;
    margin-top: 2px !important;
    text-align: center !important;
}

/* --- Posicionamento Distinto das Notificações --- */
/* 1. Notificações de Vendas no Loading (EM BAIXO) */
#loading-notification-container,
.loading-notif-container {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 400px !important;
    z-index: 999999 !important;
    margin: 0 auto !important;
    pointer-events: none !important;
}

#loading-notification-container .notification-toast,
.loading-notif-container .notification-toast {
    pointer-events: auto !important;
    margin: 0 auto !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

/* 2. Notificações de Avaliações no Checkout (EM CIMA / TOPO & COMPACTAS) */
#checkout-notification-container,
.checkout-notif-container {
    position: fixed !important;
    top: 75px !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 380px !important;
    z-index: 999999 !important;
    margin: 0 auto !important;
    pointer-events: none !important;
}

#checkout-notification-container .notification-toast,
.checkout-notif-container .notification-toast {
    pointer-events: auto !important;
    min-width: unset !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 7px 12px !important;
    border-radius: 30px !important;
    font-size: 0.76rem !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.22) !important;
    background: linear-gradient(135deg, #ffffff, #fffbeb) !important;
    border: 1.5px solid #f59e0b !important;
    display: flex !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    .notif-content {
        text-align: left !important;
        flex: 1 !important;
    }

    .notif-content > div {
        text-align: center !important;
    }

    .notif-time {
        text-align: center !important;
        display: block !important;
    }
}

/* --- Esconder Título do Quiz ("Vamos compor a sua música") a partir do Passo de Revisão em Diante (todas as páginas) --- */
.quiz-container:has(#loading-screen:not([style*="display: none"])) .quiz-custom-header,
.quiz-container:has(#loading-screen:not([style*="display: none"])) .quiz-header,
.quiz-container.is-loading-active .quiz-custom-header,
.quiz-container.is-loading-active .quiz-header,
.quiz-container:has(.step[data-step="14"].active) .quiz-custom-header,
.quiz-container:has(.step[data-step="14"].active) .quiz-header,
.quiz-container:has(.step[data-step="15"].active) .quiz-custom-header,
.quiz-container:has(.step[data-step="15"].active) .quiz-header,
.quiz-container:has(.step[data-step="16"].active) .quiz-custom-header,
.quiz-container:has(.step[data-step="16"].active) .quiz-header,
.quiz-container:has(.step[data-step="17"].active) .quiz-custom-header,
.quiz-container:has(.step[data-step="17"].active) .quiz-header,
.quiz-container:has(.step-panel[data-step="15"].active) .quiz-custom-header,
.quiz-container:has(.step-panel[data-step="15"].active) .quiz-header,
.quiz-container:has(.step-panel[data-step="16"].active) .quiz-custom-header,
.quiz-container:has(.step-panel[data-step="16"].active) .quiz-header,
.quiz-container:has(.step-panel[data-step="17"].active) .quiz-custom-header,
.quiz-container:has(.step-panel[data-step="17"].active) .quiz-header,
.quiz-container:has(.step-panel[data-step="18"].active) .quiz-custom-header,
.quiz-container:has(.step-panel[data-step="18"].active) .quiz-header,
.quiz-container:has(.step-panel[data-step="19"].active) .quiz-custom-header,
.quiz-container:has(.step-panel[data-step="19"].active) .quiz-header {
    display: none !important;
}

/* --- Otimização de Tela de Carregamento Ultra-Compacta & Sem Saltos para Mobile --- */
@media (max-width: 768px) {
    .new-loading-content {
        padding: 4px 8px !important;
        max-width: 100% !important;
    }

    .progress-container {
        position: relative !important;
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 6px auto !important;
    }

    .progress-ring {
        width: 100% !important;
        height: 100% !important;
        overflow: visible !important;
    }

    .progress-text,
    #loading-percentage {
        font-size: 1.55rem !important;
        font-weight: 800 !important;
    }

    .progress-text small {
        font-size: 0.85rem !important;
    }

    .soundwave-container {
        height: 14px !important;
        margin-top: 2px !important;
        gap: 3px !important;
    }

    .soundwave-container .bar {
        width: 3px !important;
    }

    .loading-message,
    #loading-message-text {
        font-size: 1.02rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        text-align: center !important;
        min-height: 46px !important; /* Trava de altura para evitar saltos verticais */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.35 !important;
        margin: 4px auto 2px auto !important;
        padding: 0 6px !important;
    }

    .loading-warning {
        font-size: 0.76rem !important;
        margin: 0 auto 10px auto !important;
        line-height: 1.25 !important;
        color: #64748b !important;
    }

    .loading-steps {
        gap: 5px !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .loading-step {
        padding: 6px 12px !important;
        font-size: 0.82rem !important;
        border-radius: 30px !important;
        min-height: 34px !important;
    }

    .loading-step .step-icon {
        width: 20px !important;
        height: 20px !important;
        margin-right: 10px !important;
        font-size: 0.72rem !important;
    }

    /* --- Otimização de Espaçamento das Perguntas, Resposta Longa & Alternativas (Mobile) --- */
    .quiz-container,
    .step-card,
    .card-quiz {
        padding: 16px 14px !important;
        border-radius: 18px !important;
    }

    .quiz-title,
    .step-title,
    .quiz-container h2,
    .quiz-container h3,
    .step h2,
    .step h3 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        font-weight: 800 !important;
    }

    .quiz-subtitle,
    .step-subtitle,
    .quiz-container p.subtitle,
    .step p.subtitle {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
        color: #64748b !important;
    }

    .form-group {
        margin-bottom: 14px !important;
    }

    .form-group label {
        font-size: 0.88rem !important;
        margin-bottom: 6px !important;
        font-weight: 700 !important;
    }

    .form-textarea {
        min-height: 95px !important;
        padding: 12px 14px !important;
        font-size: 0.92rem !important;
        border-radius: 12px !important;
    }

    .form-input {
        padding: 12px 14px !important;
        font-size: 0.92rem !important;
        border-radius: 12px !important;
    }

    .char-count {
        margin-top: 4px !important;
        font-size: 0.75rem !important;
        margin-bottom: 6px !important;
    }

    #who-options,
    #whoFor-options,
    #occasion-options,
    #style-options,
    #voice-options,
    .premium-grid,
    .grid-options,
    .options-grid,
    .options-grid-2,
    .options-grid-3 {
        gap: 8px !important;
        margin-bottom: 14px !important;
    }

    #who-options .premium-btn,
    #whoFor-options .premium-btn,
    #occasion-options .premium-btn,
    #style-options .premium-btn,
    #voice-options .premium-btn,
    .premium-btn,
    .option-btn,
    .select-card {
        min-height: 48px !important;
        padding: 8px 6px !important;
        font-size: 0.84rem !important;
        border-radius: 12px !important;
    }

    .premium-btn i,
    .option-btn i,
    .select-card i {
        font-size: 1.05rem !important;
        margin-bottom: 2px !important;
    }

    .nav-buttons,
    .btn-container,
    .step-nav {
        margin-top: 14px !important;
        gap: 8px !important;
    }

    .btn-next,
    .btn-next-gradient,
    .btn-prev,
    .btn-back {
        padding: 12px 18px !important;
        font-size: 0.92rem !important;
        border-radius: 30px !important;
    }
}