#qc-respostas .qc-option:nth-child(n+5) {
    display: none;
}


.qc-card {
    background-image: url('../img/fundo-quiz.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2f7d57; /* fallback */
    color: #fff;
    padding: 40px 160px;
    border-radius: 20px;
    font-family: "Kodchasan", Sans-serif;
}

/* Mobile */
@media (max-width: 768px) {
    .qc-card {
        background-image: none; /* remove imagem */
        background-color: #2f7d57; /* mantém só a cor */
        padding: 20px;
    }
}
.qc-card h2{
    margin-top: 0;
}

.qc-option {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 18px;
}

.qc-btn {
    background: #ff4b3a;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
}

.qc-result {
    margin-top: 10px;
    font-weight: bold;
    font-size: 32px;
}