/* --- Reset Básico e Estilos Gerais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}


nav {
    background-color: #eaebec;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

nav ul {
    margin-left: 15px;
    display: flex;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 5px;
}

input {
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
}