body {
    font-family: 'Roboto', sans-serif; /* Fonte mais moderna */
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Fundo mais suave */
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px; /* Maior largura máxima */
    margin: 30px auto;
    background-color: #ffffff;
    padding: 30px; /* Mais padding */
    border-radius: 12px; /* Bordas mais arredondadas */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Sombra mais pronunciada */
}

h1 {
    color: #1a2a44; /* Cor mais escura para títulos */
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.5em; /* Título maior */
    font-weight: 700;
}

h2 {
    color: #1a2a44;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

p {
    text-align: center;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.button {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 12px 28px; /* Mais padding para botões */
    background-color: #007bff; /* Azul primário */
    color: white;
    text-decoration: none;
    border-radius: 25px; /* Botões mais arredondados */
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #0056b3; /* Azul mais escuro no hover */
    transform: translateY(-2px); /* Efeito sutil no hover */
}

.primary-button {
    background-color: #28a745; /* Botão principal verde */
}

.primary-button:hover {
    background-color: #218838;
}

.hero-section {
    text-align: center;
    padding: 60px 20px; /* Mais padding vertical */
    background: linear-gradient(135deg, #e0f7fa 0%, #bbdefb 100%); /* Gradiente suave */
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero-section h1 {
    color: #1a2a44;
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section .subtitle {
    font-size: 1.4em;
    color: #4a658a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    margin-top: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #007bff;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-item p {
    color: #555;
    font-size: 0.95em;
}

.question-block {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: #fdfdfe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.question-block p {
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.1em;
    color: #343a40;
}

.question-block label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 1em;
    color: #495057;
    transition: color 0.2s ease;
}

.question-block label:hover {
    color: #007bff;
}

.question-block input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.1); /* Rádios um pouco maiores */
}