/* Reset básico */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    text-align: center;
}

/* Estilo geral */
h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
    padding: 10px;
}

/* Container das opções */
#opcoes-container {
    display: flex;
    flex-direction: column; /* Exibe as opções em uma coluna */
    align-items: center; /* Centraliza as opções horizontalmente */
    margin: 20px auto;
    max-width: 800px; /* Define uma largura máxima para o container */
}

/* Estilo das opções */
.opcao {
    background: #ffffff;
    color: #333;
    font-size: 1.2rem;
    margin: 10px 0; /* Margem entre as opções */
    padding: 15px 20px;
    width: 100%; /* Ocupa toda a largura disponível do container */
    max-width: 500px; /* Define uma largura máxima para as opções */
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.opcao:hover {
    transform: scale(1.05);
    background: #f4f4f4;
}

/* Opção selecionada */
.opcao.selecionada {
    background: #4caf50;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* Botão "Finalizar" */
button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

button:disabled {
    background: #bdbdbd;
    cursor: not-allowed;
}

button:hover:enabled {
    background: #e68900;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 600px) {
    .opcao {
        font-size: 1rem;
        padding: 10px;
        max-width: 300px;
    }

    button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
