* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f0f8ff; /* Azul claro */
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #0275d8;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    border-color: #0275d8;
    box-shadow: 0 0 5px rgba(0, 117, 216, 0.5);
}

label {
    font-weight: bold;
    font-size: 1.1rem;
    color: #555;
    text-align: left;
}

button {
    background-color: #0275d8;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #025aa5;
}

.question {
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
}

.answer {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 15px;
}

input[type="radio"] {
    margin-right: 10px;
}

.radio-label {
    font-size: 1rem;
    color: #333;
}

footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

footer a {
    color: #0275d8;
    text-decoration: none;
    transition: color 0.3s
