/* HEADER */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&family=Julius+Sans+One&display=swap');
.hiden{
    display: none;
}
header{
    font-family: "DM Serif Display", serif;
    width: 100%;
    box-shadow: 0 0 20px #000f;
    position: fixed;
    z-index: 1000;
    top: 0;
}

.container{
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 10px;
    
}

header .container{
    display: flex;
    width: 100%;
    padding: 10px 40px;
    align-items: center;
    justify-content: space-between;
}

header .logo_principal{
    width: 80px;
    display: flex;
    align-items: center;
}

.logo_principal img{
    min-width: 20px;
    max-width: 100%;
    object-fit: cover;
}

header nav ul .nav-container{
    display: flex;
    gap: 30px;
}

header nav ul .nav-container li{
    font-size: 25px;
    color: #aaa;
    transition: all .3s ease;
    position: relative;
    padding: 10px 0;
}

header nav ul .nav-container li:hover{
    color: #fff;
    scale: 1.1;
    font-size: 25px;
    text-shadow: 0 0 5px #eea133;
}

header nav ul.nav-container li:before{
    content: "";
    position: absolute;
    bottom: 0px;
    width: 0px;
    max-width: 105px;
    height: 1px;
    background-color: #eea133;
    transition: width 0.3s;
}

header nav ul .nav-container li:hover::before{
    width: 100%;
}

nav .nav_abrir{
    opacity: 1;
    background-color: #000b;
    backdrop-filter: blur(10px);
    position: fixed;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    transition: all 500ms cubic-bezier(0.175, .885, .320, 1.275);
}

.bars__menu{
    display: none;
}

.activeline1__bars-menu{
    transform: rotate(45deg) translate(-2px, 1px);
}

.activeline2__bars-menu{
    opacity: 0;
    margin-left: -30px;
}

.activeline3__bars-menu{
    transform: rotate(-45deg) translate(-4px, 2px);;
}

@media (max-width: 700px){
    header .container{
        padding: 5px 30px;
    }

    header .logo_principal{
        width: 60px;
    }

    .nav-list{
        opacity: 0;
        height: 0;
        width: 0;
    }

    .bars__menu{
        min-width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 20;
        display: block;
    }
    
    .bars__menu span{
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        margin-top: 6px;
        transform-origin: 0px 100%;
        transition: all .3s ease;
    }

    header nav ul .nav-container{
        flex-direction: column;
        text-align: center;
        border-top: 1px solid #8B6220;
        border-bottom: 1px solid #8B6220;
        width: 60%;
        padding: 40px 10px;
        gap: 15px;
    }

}