/* Centraliza o conteúdo na tela */
.full-screen-wrapper {
    min-height: 100vh; /* Ocupa 100% da altura da tela */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
}

.modal-window {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); /* Sombreamento */
    width: 100%;
    max-width: 500px; /* Tamanho máximo */
}

/* Responsividade - Ajusta o tamanho da janela para telas pequenas */
@media (max-width: 576px) {
    .modal-window {
        padding: 20px;
    }
}

/* Personalização para os quadros das perguntas */
.question-box {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 15px;
}

.logo-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 200px;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        margin-top: 20px;
    }
}

.card.custom-gradient-energy {
    background: linear-gradient(90deg, #faf095, #faf3b3); 
}

.card.custom-gradient-vision {
    background: linear-gradient(90deg, #e0cce4, #f8e7fc); 
}

.card.custom-gradient-personality {
    background: linear-gradient(90deg, #a3eaf3, #ddf8fc); 
}

.card.custom-gradient-player {
    background: linear-gradient(90deg, #E0E0E0, #fafafa); 
}

.card.custom-gradient-power {
    background: linear-gradient(90deg, #b8e2b8, #dff7df); 
}

.btn-confirmar {
    background-color: #000000; /* Verde suave */
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-confirmar:hover {
    background-color: #363636; /* Tom mais escuro de verde para o hover */
    color: #ffffff;
}

.btn-confirmar:focus,
.btn-confirmar:active {
    background-color: #000000 !important; /* Mantém o preto ao clicar */
    color: white !important;
    outline: none;
    box-shadow: none;
}


.btn-retornar {
    background-color: #ffffff; /* Cinza claro */
    border: none;
    color: #000000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-retornar:hover {
    background-color: #c9c9c9; /* Tom mais escuro de verde para o hover */
    color: #000000;
}
















.scroll-down-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Garante que fique acima de outros elementos */
}

.scroll-down-btn:hover {
    background-color: #363636;
    transform: scale(1.1); /* Pequeno efeito ao passar o mouse */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .scroll-down-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .scroll-down-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 10px;
        right: 10px;
    }
}
