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

/* Configuração do HTML e Body */
html, body {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif; /* Ajuste para sua fonte preferida */
    background-color: #f9fafb; /* Cor de fundo suave */
    color: #333; /* Cor do texto */
    height: 100%;
    width: 100%;
}




