*{
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
    margin:0;
    padding:0;
}

#logo{
    width: auto;
    height:100px;
   /* margin-top:-20px;*/
}

.toggleLobo{
    display:none;
}

.navbarLobo{
    position: fixed!important;
    margin-top:-90px;
    width: 100%;
    z-index:999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#07090a;
    height: 90px;
    color:#fff;
}
.name{
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3rem;
    padding:1rem;
}
.logo{
    padding:1rem;
}
.toggleLobo{
    padding:1rem;
}

.navbarLobo-links ul{
    margin:0;
    padding:0;
    display:flex;
    list-style: none;
    
}
#trabalhos{
    padding-top:100px;
}
.navbarLobo-links li{
    list-style: none;
   
}
.navbarLobo-links li a{
    text-decoration: none;
    text-transform: uppercase;
    color:white;
    padding:1rem;
    display:block;
    font-weight:600;
   

}
.navbarLobo-links li a:hover{
    color:#ce1d00;
    text-decoration: none;
    
}

.toggleLobo-button{
    position:absolute;
    top:1.3rem;
    right:1rem;
    display:none;
    flex-direction:column;
    justify-content: space-between;
    width: 30px;
    height:21px;
    cursor:pointer;
}

.toggleLobo-button .bar{
    height: 3px;
    width:100%;
    background-color: white;
    border-radius: 10px;
}
@media (max-width: 414px){
#logoMobile{
    width: auto;
    height:80px;
   
   }
   .name{
    width:calc(100% - 100px);
    text-align: center;
   }
#logo{
    display:none;
    }

.toggleLobo{
    display:initial;
    }

.toggleLobo-button{
    display:flex;
    /*justify-content: space-between;*/
}
.navbarLobo-links{
   display:none;
    width: 100%;
  
    }

    .name{
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1rem;
    justify-content: space-around;
    margin-left:13%;
    text-align: center;
    }
    .navbarLobo{
     flex-direction: column;
     align-items: flex-start;
     height:70px;
    }
    .navbarLobo-links ul{
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color:rgba(7, 9, 10, .7);
    backdrop-filter: blur(8px);
    margin-top: -60px;
    }
    .navbarLobo-links li{
        text-align: center;
        
    }
    .navbarLobo-links li a{
        padding: 1rem 1rem;
    }
    .navbarLobo-links.active{
        
        display:flex;
    }
    
}