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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #eef2f5;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

h2 {
    color: #1a237e;
    text-align: center;
    margin-bottom: 5px;
}

p {
    color: #666;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
}

input, select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

input:focus, select:focus {
    border-color: #1a237e;
}

button {
    margin-top: 15px;
    padding: 12px;
    font-size: 16px;
    background-color: #1a237e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0d165c;
}

/* Área de Resultado */
#resultado {
    margin-top: 25px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e1e4e8;
}

.oculto {
    display: none;
}

h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 15px 0;
}

.destaque {
    font-size: 16px;
    font-weight: bold;
}

.texto-vermelho { color: #d32f2f; }
.texto-azul { color: #1976d2; font-size: 18px;} 