body {
    max-width: 1440px;
    margin: 0px auto;
    box-sizing: border-box;
}

.header {
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container-logo {
    display: flex;
    align-items: center;
    gap: 5%;
    text-decoration: none;
}

.titulo-logo {
    font-family: var(--fonte);
    font-size: 18px;
    font-weight: 500;
    color: var(--cinza-escuro);
}

.navbar-lista {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.navbar-link a {
    font-family: var(--fonte);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: var(--cinza); 
}

.botao-entrar {
    all: unset; 
    cursor: pointer;
    font-family: var(--fonte);
    font-weight: 400;
    font-size: 18px;
    color: var(--cinza); 
    padding: 10px 18px;
    border-radius: 8px;
}

.botao-cadastrar {
    all: unset; 
    cursor: pointer;
    font-family: var(--fonte);
    font-weight: 300;
    font-size: 18px;
    color: var(--branco);
    background-color: var(--vermelho);
    padding: 10px 18px;
    border-radius: 8px;
}

/* Responsividade */
@media (max-width: 900px) {
    .header {
        box-sizing: border-box;
        height: 120px;
        flex-direction: column; 
        gap: 20%;
        padding-top: 3%;
    }

    .navbar {
        order: 3;
    }
}

@media (max-width: 410px) {
    .navbar-lista {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

