/* Resetando o estilo de margens e paddings */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Garantindo fontes consistentes */
body, button, input, select, textarea {
    font-family: 'Arial', sans-serif;
}

/* Remover estilos de links */
a {
    text-decoration: none;
    color: inherit;
}

/* Definindo estilo do body */
body {
    line-height: 1.6;
    font-size: 1rem;
    background-color: #EDDEBC; /* Bege Claro */
    color: #0A3B5C; /* Verde Petróleo Escuro */
}
