* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}

:root {
    --bg-color: #0c0e12;
    --primary-color: #eab308;
    --primary-dark: #ca8a04;
    --text-main: #ffffff;
    --text-muted: #d1d5db;
    --card-bg: #ffffff;
    --warning-bg: rgba(254, 249, 195, 0.9);
    --warning-border: #fde047;
}

body {
    background: url('imgi_1_bg_divino.d0e06856.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Centralização Vertical */
    overflow-x: hidden;
    padding: 20px 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay para legibilidade */
    z-index: -1;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: #d1d5db;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.progress-bar {
    width: 15%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.5s ease;
}

.container {
    max-width: 600px;
    width: 95%;
    margin: 0 auto;
    /* Removido margin-top fixo */
    text-align: center;
    padding: 25px;
    padding-bottom: 40px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.headline {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

.highlight {
    background-color: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
}

.warning-box {
    background-color: var(--warning-bg);
    border: 1px solid var(--warning-border);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.warning-icon {
    font-size: 1.5rem;
}

.warning-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #854d0e;
}

.selection-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.option-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.option-card:active {
    transform: scale(0.98);
}

.card-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.card-label {
    background-color: var(--primary-color);
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    text-align: left;
    display: flex;
    align-items: center;
}

/* Existing styles... */

.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.list-item {
    background: var(--card-bg);
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    text-align: left;
    display: flex;
    align-items: center;
}

.list-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    background: #fffcf0;
}

/* Calculating Screen */
/* Full Screen Calculating Screen */
.full-screen-calc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    z-index: 1000;
    background: radial-gradient(circle at center, rgba(162, 123, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 70%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.calculating-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('imgi_1_bg_divino.d0e06856.png') no-repeat center center;
    background-size: cover;
}

.calculating-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.calculating-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 80%;
    max-width: 400px;
}

.calculating-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: 'Sora', sans-serif;
}

.calculating-loader {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.calculating-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #eab308, #fbbf24, #fff);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.6);
    animation: loaderFill 6s ease-in-out forwards;
}

@keyframes loaderFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* VSL Styles */
.vsl-container {
    max-width: 800px;
    margin: 0 auto;
}

.vsl-headline {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.vsl-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.video-container {
    background: #000;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-container {
    margin-top: 40px;
    animation: fadeIn 1s ease;
}

.main-button {
    display: inline-block;
    background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
    color: #fff;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4);
    transition: transform 0.2s;
    border-bottom: 4px solid #14532d;
}

.main-button:hover {
    transform: scale(1.05);
}

.secure-payment {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vsl-warning {
    margin-top: 40px;
    justify-content: center;
}


.footer-info {
    margin-top: 20px;
}

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.social-proof {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container>* {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive - Global Mobile Optimizations */
@media (max-width: 600px) {
    .container {
        width: 100%;
        margin: auto;
        border-radius: 0;
        border: none;
        padding: 15px;
        background: transparent;
        backdrop-filter: none;
    }

    .headline {
        font-size: 1rem;
        padding: 0 10px;
    }

    .selection-title {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    /* Grids Adjustment */
    .months-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .small-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }

    .status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quiz-options {
        gap: 12px;
    }

    /* Typography & Buttons */
    .vsl-headline {
        font-size: 1.4rem;
        padding: 0 5px;
    }

    .main-button {
        width: 100%;
        padding: 18px 10px;
        font-size: 1.1rem;
    }

    .back-button {
        width: 100%;
    }

    .custom-input,
    .continue-button {
        max-width: 100%;
    }
}

/* Very Small Devices */
@media (max-width: 380px) {
    .months-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .small-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .status-card {
        padding: 15px 5px;
    }

    .status-icon {
        font-size: 1.4rem;
    }
}

/* Global Transitions */
#quizContainer {
    transition: opacity 0.4s ease;
}

/* Quiz UI Enhancements */
.months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.month-item {
    background: #fff;
    padding: 15px 5px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.month-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.blue-title {
    background-color: #1d4ed8;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
}

.back-button {
    background-color: #fca5a5;
    color: #1e40af;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}

/* Day Selection Grid (Small Grid) */
.small-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 8px;
    margin-bottom: 25px;
    margin-top: 10px;
}

.small-item {
    background: #fff;
    padding: 10px 2px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.small-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}


/* Status Cards Step */
.yellow-title {
    background-color: #eab308;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.1rem !important;
    width: 100%;
    margin-bottom: 30px !important;
    font-weight: 700;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.status-card {
    background-color: #e1cf9d;
    padding: 20px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-card:hover {
    transform: translateY(-5px);
    background-color: #f1dfb1;
}

.status-icon {
    font-size: 1.8rem;
}

.status-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


/* Input Fields & Continue Button */
.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 20px 0;
}

.custom-input {
    width: 100%;
    max-width: 400px;
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s;
    background: #fff;
    color: #1a1a1a;
    text-align: center;
}

.custom-input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.continue-button {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
    transition: all 0.3s;
}

.continue-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(22, 163, 74, 0.4);
}

.continue-button:active {
    transform: scale(0.98);
}