@charset "UTF-8";

body, ul {
    margin: 0;
    padding: 0;
}

.menu{
    position: absolute;
    display: flex;
    align-items: center;

    bottom: 15px;
    left: 50%;
    transform: translate(-50%);
    max-width: 800px;
    width: calc(100vw - 10px);
    
    margin: auto;
    padding-bottom: 3px;
    
}

.menu ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background: #333;
    padding: 15px 0;
    width: calc(100% - 6px);
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

@media screen and (min-width: 900px) {

    .menu ul{
        justify-content: center;
        border-radius: 20px;
    }

    .menu li{
        width: 120px;
    }
}

.menu li {
    text-align: center;
    padding: 0px 15px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    display: block;
    text-align: center;
}

/* Barra que se move no efeito hover */
.menu .highlight-bar {
    display: none;
    width: 100px;
    height: 3px;
    background: var(--color-light01);
    position: absolute;
    bottom: 10px;
    transition: left 0.3s ease;
    z-index: 1;
}

span .material-symbols-rounded{
    text-align: center;
    margin: auto;
}

