* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FAFAFA;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-dash {
    width: 25px;
    height: 4px;
    background-color: #E22176;
    margin-bottom: 25px;
    border-radius: 2px;
}

h1 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
    color: #000;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.main-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #111;
    margin-bottom: 25px;
}

.cta-btn {
    background-color: #df2b7b;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    padding: 20px 0;
    width: 100%;
    max-width: 550px;
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 6px 0 #bd1861;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.cta-btn:hover {
    animation: pulse-ring 1.5s infinite;
}

.cta-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 #bd1861;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 6px 0 #bd1861, 0 0 0 0 rgba(223, 43, 123, 0.5);
    }
    70% {
        box-shadow: 0 6px 0 #bd1861, 0 0 0 15px rgba(223, 43, 123, 0);
    }
    100% {
        box-shadow: 0 6px 0 #bd1861, 0 0 0 0 rgba(223, 43, 123, 0);
    }
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .cta-btn {
        font-size: 16px;
        padding: 16px 0;
    }
}

/* Header de Progresso (adicionado na index) */
.quiz-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.progress-bar-container {
    width: 300px;
    max-width: 50%;
    height: 6px;
    background-color: #F1E2E8;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #df2b7b;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .progress-bar-container {
        max-width: 100%;
        width: 100%;
    }
}
