/*LIMPANDO FORMATAÇÕES*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: calibri;
}

/*FORMATAÇÃO HEADER*/
header{
    background: linear-gradient(rgb(31, 22, 36) 25%, rgba(41, 41, 41, 1) 100%);
    min-height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0px 0px 5px #00000070; /*SOMBRA PROJETADA SUAVE*/

}

/*MENU DE NAVEGAÇÃO*/
nav{
    max-width: 100%;
}

/*FOMATAÇÃO LINKS*/
.nav-link{
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #e3e3e3;
    border-radius: 25px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:visited{
    text-decoration: none;
    color: #e3e3e3;
}

.nav-li{
    border-radius: 25px;
}

.nav-link:hover{
    background-color: #e3e3e3;
    color: #292929;
}

/*AJUSTE DO MENU*/
#nav-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap; /*Quebra a linha em telas pequenas*/
    justify-content: center;
    gap: 0.5rem;
}

/*RESPONSIVIDADE*/

@media (max-width: 768px) {
    header{
        justify-content: center;
    }

    #nav-list{
        gap: 0.3rem
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem;
        background: none;
        box-shadow: none;
    }
    #nav-list{
        flex-direction: column;
        align-items: center;
    }
    .nav-link{
        display: block;
        width: 100%;
        text-align: center;
        color: #292929;
    }
    .nav-link:visited{
        text-decoration: none;
        color: #292929;
    }


    .nav-li{
        background-color: #e3e3e3;
    }
}