
.nav-menu {
    display: flex;
    gap: 2em;
}

.menu-topo{
    margin-right: 100px;
}

#burger {
    display: none;
    z-index: 2;
}

.hamburger{
    width: 30px;
    position: absolute;
    right: 10px;
    top: 5px;
}

.menu-item {
    font-family: var(--primary-font);
    font-size: 1rem;
    color: var(--black);
    list-style: none;
    margin-left: 0.5em;
    display: inline;
    text-decoration: none;
}

.menu-item a:hover{
    text-decoration: underline;
}
.menu-item a {
    text-decoration: none;
    color: var(--cor-cinza);
}
.menu-item a:hover{
    text-decoration: underline;
}

@media screen and (max-width: 768px) {

    .logo-topo{
        height: 90px;
    }
    .menu-item{
        font-size: 12px;
    }
}


@media screen and (max-width: 428px) {
    .nav-menu {
        
        display: flex;
        flex-direction: column;
        
    }    
    
    #itens {
        display: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 35%;
        height: 45vh;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 3em 1em;
        border-radius: 20px 0 0 20px;
    }
   
    .menu-item{
        text-align: right;
    }
    
    #burger {
        display: block;
        width: 100%;
        padding: 20px;
        text-align: right;
        margin-right: 1em;
        font-size: 30px;
    }
}