html, body {
    height: 100vh;
    overflow: hidden;
    background-color: #032942;
    color: white;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #032942;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

#quiz-container {
    max-width: 90%;
    margin: 0 auto;
    background-color: #032942;
}

.box {
    padding: 3rem;
    margin: 2rem;
    background-color: #032942 !important;
    box-shadow: none;
    color: white;
}

.has-text-centered {
    background-color: #032942;
    color: white;
}

.button.is-primary {
    background-color: #4A9BCF !important;
    color: white !important;
}

.button.is-primary:hover {
    background-color: #3d8ab9 !important;
}

.navbar.is-primary {
    background-color: #4A9BCF !important;
}

.notification.is-success {
    background-color: #4A9BCF;
    color: white;
}

.title.is-1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.subtitle.is-3 {
    color: white;
    font-size: 1.8rem;
}

.title, .label {
    color: white !important;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: fadeOut 0.5s ease-in-out 3s forwards;
}

.button.is-large {
    font-size: 1.8rem;
    height: auto;
    padding: 1.5rem;
}

/* Remover esta regra duplicada */
/* #pergunta {
    margin-bottom: 2rem;
} */

.buttons button {
    margin: 0.8rem 0;
    transition: all 0.3s ease;
    background-color: #2cd195;
    color: white;
}

.buttons button:hover {
    transform: scale(1.02);
    background-color: #25b380;
}

.button.is-primary {
    background-color: #2cd195 !important;
    color: white !important;
}

.button.is-primary:hover {
    background-color: #25b380 !important;
}

.navbar.is-primary {
    background-color: #2cd195 !important;
}

/* Manter apenas esta regra completa para #pergunta */
#pergunta.title.is-2 {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #2cd195;
    color: #032942 !important;
    border-radius: 8px;
    font-size: 2.2rem;
    line-height: 1.4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resultado-final {
    text-align: center;
    padding: 1.5rem;
    margin: 1.5rem auto;
    background-color: #2cd195;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: apareceResultado 1s ease-out;
    max-width: 60%;
}

.resultado-final .nota {
    font-size: 2rem;
    color: white;
    margin: 0.8rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulsaNota 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.resultado-final .frase {
    font-size: 2rem;
    color: white;
    margin: 1.5rem 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Animações */
@keyframes apareceResultado {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulsaNota {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.resultado-final .button.is-white {
    background-color: white;
    color: #2cd195;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resultado-final .button.is-white:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Ajustes para TV */
@media screen and (min-width: 1920px) {
    .resultado-final {
        padding: 2rem;
        margin: 2rem auto;
    }

    .resultado-final .nota {
        font-size: 4rem;
        margin: 1rem 0;
    }

    .resultado-final .frase {
        font-size: 2rem;
        margin: 1.5rem 0;
    }
    
    .resultado-final .button.is-white {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

.spacement{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-direction: column;
}

.logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}