.aq-quiz-container {
    background-color: #fff;
    border: 3px solid #8b4513;
    border-radius: 12px;
    padding: 30px;
    max-width: 650px;
    margin: 30px auto;
    font-family: 'Georgia', serif;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    color: #333;
}

.aq-quiz-container h3 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.4em;
    line-height: 1.4;
}

.aq-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aq-option-btn {
    background-color: #fdf5e6; /* Cor de papel envelhecido suave */
    border: 2px solid #8b4513;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: left;
    font-size: 17px;
    color: #8b4513 !important; /* Força a cor do texto para marrom */
    font-weight: 600;
    width: 100%;
    display: block;
}

.aq-option-btn:hover {
    background-color: #8b4513;
    color: #ffffff !important; /* Texto branco apenas no hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.aq-option-btn:disabled {
    cursor: default;
    transform: none;
    box-shadow: none;
}

.aq-option-btn.correct {
    background-color: #28a745 !important;
    color: #ffffff !important;
    border-color: #1e7e34;
}

.aq-option-btn.wrong {
    background-color: #dc3545 !important;
    color: #ffffff !important;
    border-color: #bd2130;
}

.aq-btn {
    display: block;
    width: 100%;
    background-color: #8b4513;
    color: #ffffff !important;
    border: none;
    padding: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.aq-btn:hover {
    background-color: #5d2e0d;
}

#aq-score-text {
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    margin: 25px 0;
    color: #8b4513;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 480px) {
    .aq-quiz-container {
        padding: 15px;
    }
    .aq-option-btn {
        font-size: 15px;
        padding: 12px;
    }
}
