.cabecalho {
    background-color: rgba(15, 24, 146, 0.801);
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 98;

    width: 100%;
    height: 100px;
}

.cabecalho .top-sup {
    display: flex;
    justify-content:space-between;
    padding: 20px 40px;
}
.cabecalho .logo  a img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cabecalho .titulo h1 {
    text-transform: uppercase;
    color: rgb(246, 246, 246);
    font-size: 45px;
}

.cabecalho .menu {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    
}

.top-sup .menu ul li a {
    text-decoration: none;
}

.cabecalho .top-inf {
    background-color: rgba(15, 24, 146, 0.801);
    position: fixed;
    top: 140px;
    left: 0;
    z-index: 100;

    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    
}

.cabecalho .top-inf ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.top-inf ul li a span,
.top-inf ul li i{
    color: rgb(246, 246, 246);
    font-size: 25px;
    transition: all 0.2s ease-in-out;
    
}

.top-inf ul li {
    border-right: 3px solid rgb(241, 136, 9);
    padding: 0 20px;
}

.top-inf ul li:last-child {
    border: none;
    
}

.oculto {
    display: none;
}

.top-inf ul li a:hover span{
    color: rgb(235, 95, 7);
}

.cabecalho .menu-lateral {
    position: absolute;
    width: 100%;
    top: 154px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 0.4s ease-in-out;
}

.cabecalho .menu-lateral ul {
    margin-left: 100px;
    width: 200px;
    height: 200px;
    padding: 10px 5px;
    margin-right: 15px;
    background-color: rgba(2, 159, 202, 0.3); 
    border-radius: 10px;
    display:flex;
    flex-direction: column;
}

.cabecalho .menu-lateral ul li {
    margin-bottom: 5px;
    width: 100%;
    height: 20px;
    padding-left: 10px;
    transition: all 0.3s ease-in-out;
}

.cabecalho .menu-lateral ul li:hover{
    background-color: rgba(2, 159, 202, 0.712); 
       
}


.menu-lateral ul li:hover a {
    color: rgb(251, 98, 19);
}

.menu-lateral.remover {
    display: none;
}   

.aparecer {
    text-decoration: none;
}