/*
  MENU v 1.1;
  05/2023;
  João Diogo Pereira;
*/
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--white);
    padding: .5rem;
}

.logo-header a{
    display: block;
}

.logo-header h1{
    margin: 0;
    line-height: 0;
    padding: 0;
    border: 0;
}

.logo-header img{
    width: 150px;
    height: auto;
}

.profile a{
    display: block;
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: solid 4px var(--lightblue);
    overflow: hidden;
}

.profile a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.menu{
    width: 100%;
    margin: 0 auto;
    padding: .5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-wrap: nowrap;
    background-color: var(--white);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0px -6px 24px 0px rgba(42, 52, 55, 0.06);
}

.menu li{
    opacity: .5;
    margin: 0 .25rem;
    background-color: transparent;
    border-radius: 14px;
    transition: all .3s ease-in-out;
}

.menu li:hover, .menu li.current-menu-item{
    opacity: 1;
    background-color: var(--lightblue);
}

.menu li a{
    display: block;
    padding: .5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.87px;
    text-align: center;
    color: var(--blue);
    text-transform: uppercase;
}

.menu li a .icon{
    width: 18px;
    height: 18px;
    display: block;
    margin: 0 auto;
    margin-bottom: .25rem;
}

.menu li a .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu li a span{
    display: block;
    white-space: nowrap;
}