body {
    font-family: Arial, sans-serif;
    background: #252525;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

*{
    color: #fff;
}

.quiz-container {
    background: #000000;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    margin-top: 20px;
}

.quiz-header {
    padding: 20px;
    text-align: center;
}

.quiz-header h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.quiz-header p {
    font-size: 14px;
    color: #c4c4c4;
}

.quiz-image {
    width: 100%;
    object-fit: cover;
}

.quiz-image_guide {
    width: 100%;
    object-fit: cover;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.option-btn {
    padding: 12px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.option-btn:hover {
    background: #218838;
}

/* Animação de Zoom In/Out */
@keyframes pulse {
    0% {
        transform: scale(1); /* Tamanho normal */
    }
    50% {
        transform: scale(1.03); /* Leve zoom in */
    }
    100% {
        transform: scale(1); /* Volta ao tamanho normal */
    }
}


.start-btn {
    display: block;
    width: 95%;
    margin: 20px auto;
    padding: 15px;
    font-size: 18px;
    background: #0da025;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bolder;

    /* APLICAÇÃO DA ANIMAÇÃO */
    animation: pulse 2s infinite ease-in-out; /* Nome da animação, duração, repetição infinita, tipo de easing */
}

.start-btn:hover {
    background: #00693d;
    animation: none; /* Desativa a animação ao passar o mouse, se desejar */
}


.result-btn {
    display: block;
    width: 95%;
    margin: 20px auto;
    padding: 15px;
    font-size: 18px;
    background: #0da025;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bolder;

    /* APLICAÇÃO DA ANIMAÇÃO */
    animation: pulse 2s infinite ease-in-out; /* Mesma animação do start-btn */
}

/* CORREÇÃO DO HOVER para .result-btn */
.result-btn:hover { /* Removido o espaço, era .result-btn :hover */
    background: #00693d;
    animation: none; /* Desativa a animação ao passar o mouse, se desejar */
}

.progress-bar {
    height: 15px;
    background: #28a745;
    transition: 0.3s;
}