*{
    margin: 0px;
    padding: 0px;
}

body{
    background-color: #100F0F;
    font-family: 'Montserrat';
}

.box-cabe{
    display: flex;
    height: 85px;
    background-color: #3D3D3D;
    justify-content: space-between;
    align-items: center;
    padding: 10px;

    font-family: 'Montserrat';
    color: white;
}

.title{
    display: flex;
    align-items: center;
    margin-left: 5px;

    gap: 15px;
}

.title img{
    width: 90px;
}

.title2 h2{
    font-weight: 450;
    font-size: 25px;
}

.title2 h1{
    font-weight: 600;
    font-size: 28px;
}

.outros{
    margin-right: 5px;
}

.outros ul{
    display: flex;
    gap: 30px;
    list-style: none;
}

.hamb{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-right: 8px;

    background-color: transparent;
    border: none;
}

.hamb span{
    background-color: white;
    width: 100%;
    height: 3px;
    border-radius: 1px;
}

li .teste{
    display: flex;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    width: 86.1px;
    flex-direction: column;
    background-color: #2d2d2d;
    gap: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.teste li{
    text-align: center;
    padding: 5px;
}

.teste a{
    text-decoration: none;
    color: white;
}

.sub:hover > .teste{
    display: flex;
    opacity: 1;
    transition: 0.5s;
    visibility: visible;
}

@media (max-width: 800px){
    .sub:hover > .teste{
        display: none;
    }

    .outros ul{
        background-color: #2c2c2c;
    }

    .outros .sub{
        width: 100%;
    }

    .sub ul{
        width: 100%;
        background-color: #3D3D3D;
        margin-top: 280px;
    }

    .sub .teste.open{
        display: flex;
    }
}

@media (max-width: 800px){
    .outros{
        display: flex;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 60%;
        height: 100vh;
        background-color: #2c2c2c;
        margin-right: 0px;

        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s;
        z-index: 10;
    }

    .outros ul{
        width: 100%;
        flex-direction: column;
        padding-left: 0px;
    }

    .outros li{
        display: flex;
        width: 100%;
        height: 50px;
        padding-left: 0px;
        align-items: center;
    }

    .hamb{
        display: flex;
    }

    .outros.active{
        transform: translateX(0%);
        opacity: 1;
    }

    .title{
        gap: 8px;
        margin-left: 0px;
    }

    .title img{
        width: 80px;
    }

    .title2 h2{
        font-weight: 450;
        font-size: 22px;
    }

    .title2 h1{
        font-weight: 600;
        font-size: 25px;
    }



}

