/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
}

/* Cabeçalho */
header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

header h1 {
    font-size: 2.5rem;
    color: #00ffff;
}

/* Conteúdo principal */
main {
    text-align: center;
    margin-top: 40px;
}

main h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0ff;
}

main p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Rodapé */
footer {
    margin-top: auto;
    text-align: center;
    padding: 30px 10px;
    border-top: 1px solid #444;
}

.escolha h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Lista de botões */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

nav li button {
    width: 120px;
    height: 50px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pílulas */
#blue-pill button {
    background-color: #007BFF;
    box-shadow: 0 0 15px #007BFFAA;
}

#red-pill button {
    background-color: #FF0033;
    box-shadow: 0 0 15px #FF0033AA;
}

/* Efeitos hover */
nav li button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* Responsividade */
@media (max-width: 500px) {
    header h1 {
        font-size: 2rem;
    }

    main h2 {
        font-size: 1.5rem;
    }

    nav li button {
        width: 100px;
        height: 45px;
        font-size: 0.9rem;
    }
}
