*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    background-color: rgb(249 250 251 / 1);
    z-index: 1000;
    box-shadow: rgba(109, 74, 255, 0.16) 0px 8px 24px 0px;
}

#container-logo{
    display: flex;
    align-items: center;
}

#container-logo h3{
    margin-left: 10px;
    /* font-size: 1.875rem; */
}



#container-logo img{
    width: 50px;
    height: 50px;
}

/* Listas páginas */

nav > div > ul{
   display: flex;
    list-style: none;
}

nav > div > ul > li:not(:first-child){
    margin-left: 40px;
}

nav > div > ul >li >a{
    text-decoration: none;
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

nav > div > ul >li >a.active{
    color: rgb(26 86 219 / 1);
}


nav > div > ul >li > a:hover{
    color: rgb(26 86 219 / 1);
    text-decoration: none;  
}

/* Profile */
#profile{
    position: relative;
}



#profile button {
    border-radius: 100%;
    background-color: transparent;
    padding: 0px;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#profile button.outline{
    outline: 5px solid rgb(229, 231, 235);
}


#profile button img {
    height: 50px;
    width: 50px;
    max-width: 100%;
    border-radius: 100%;
}

#dropdown-user{
    position: absolute;
    top: 120%;
    right: 0;
    transform: translate(0%, 0%);
    border-radius: 0.5rem;
    background-color: #FFF;
    border:1px solid rgb(229, 231, 235);
    box-shadow: rgba(109, 74, 255, 0.16) 0px 8px 24px 0px;
    display: none;
}

#dropdown-user.visible{
    display: block;
}

#name-email{
    font-weight: 500;
    padding: 12px 16px;
    border-bottom:1px solid rgb(229, 231, 235)
}

#actions-user{
    padding: 8px 0;
}

#actions-user ul{
    list-style: none;
}
#actions-user ul li{
    padding: 8px 16px;
}

#actions-user ul li:hover{
    background-color: rgb(243 244 246 / 1);
}

#actions-user ul li a{
    text-decoration: none;
    color: rgb(55, 65, 81);
    font-weight: 500;
}

@media (max-width: 959px) {
    #nav-list {
        display: none;
    }
}