.cabecalho{
    top: 0;
	position: sticky;
	display: none;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
    height: 10vh;
    width: 100vw;
    padding: 20px;
    z-index: 9999;
    color:white;
    transition: .3s ease-out;
    background-color:#051f38!important;
}.cabecalho-imagem{
    height: 75%;
}.cabecalho-imagem img{
	max-height: 100%;
}.cabecalho-menu{
	display: flex;
	flex-direction: row;
    align-items: center;
    z-index: 9999;
}.cabecalho-menu-item{
    color: white!important;
    transition: 0.3s;
    letter-spacing: .5px;
    padding: 0 15px;
}.cabecalho-menu-item:hover{
    color: white;
    opacity: 0.7;
}.cabecalho-bg{
    background-color:#051f38!important;
    color: white!important;
}.mobile-menu{
    cursor: pointer;
    display: none;
}.mobile-menu div{
    width: 32px;
    height: 2px;
    margin: 8px;
    background-color: white;
    transition: 0.3s;
}.mobile-menu.active .line1{
    transform: rotate(-45deg) translate(-8px,8px);
}.mobile-menu.active .line2{
    opacity: 0;
}.mobile-menu.active .line3{
    transform: rotate(45deg) translate(-5px,-7px);
}
@media (max-width: 1300px){
    body{
        overflow-x: hidden;           
    }.cabecalho{

        display: flex;
    }
    .cabecalho-menu{
        position: fixed;
        top: 10vh;
        left: 0;
        width: 100vw;
        min-height: 10vh;
        background-color:#051f38;
        flex-direction: column;
        align-items: center;
        gap:20px;
        justify-content: space-around;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in;
        z-index: -99;
        padding: 20px
    }.cabecalho-menu.active{
        transform: translateX(0);
    }.cabecalho-menu-item{
        margin: 0;
        opacity: 0;
    }.mobile-menu{
        display: block;
    }
    @keyframes navLinkFade{
        from{
            opacity: 0;
            transform: translateX(50px);
        }to{
            opacity: 1;
            transform: translateX(0);
        }
    }
}