.rwg-cabecalho{
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    height: 130px;
    margin-bottom: -130px;

    z-index: 3;
}

.rwg-cabecalho-logo{

    z-index: 1;

}

.rwg-cabecalho-logo-img{

    height: 55px;

    filter: brightness(0) invert(1);
    transition: 0.5s;
    
}

.rwg-cabecalho-logo-img:hover, .rwg-cabecalho-logo-img:focus, .rwg-cabecalho-logo-img:active{

    transform: scale(1.1);
}



.rwg-cabecalho, .rwg-cabecalho-navegacao{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.rwg-cabecalho-navegacao{
    gap: 30px;
    z-index: 2;
}

.rwg-cabecalho-navegacao a{
    text-decoration: none;

    font-weight: 800;
    font-size: 25px;
    font-style: italic;
    color: var(--cor-branco);

    transition: transform 0.5s, color 0.5;

}

.rwg-cabecalho-navegacao-icones{
    font-size: 40px!important;
    width: 38px;
    margin-top: 6px;

}

.rwg-cabecalho-pagina{

    opacity: 1;
    transition: transform 0.5s;
}

.rwg-cabecalho-pagina:hover{

    color: var(--cor-branco);
    transform: scale(1.2);

    opacity: 1;

}

/* MOBILE */
@media (max-width: 767px) { .secao-cabecalho{display:none;} } /* MOBILE*/
@media (min-width: 768px) { .secao-cabecalho-mobile{display:none;} } /* DESKTOP */

.rwg-cabecalho-mobile{
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    height: 130px;
    margin-bottom: -130px;
    
    padding-right: 30px;
    padding-left: 30px;
}

.rwg-cabecalho-mobile-icone{

    z-index: 2;
    color: var(--cor-branco);
    font-size: 42px;

    cursor: pointer!important;

}

.rwg-cabecalho-mobile-logo{

    z-index: 2;
    text-align: center;
    width: 100%;
}

.rwg-cabecalho-mobile-logo-img{

    height: 55px;

    filter: brightness(0) invert(1);
    transition: transform 0.5s;
    
}

.secao-cabecalho-mobile .rwg-cabecalho-logo-btn{
    width: 100%;
}

.rwg-cabecalho-mobile-logo-img:hover, .rwg-cabecalho-mobile-logo-img:focus, .rwg-cabecalho-mobile-logo-img:active{

    transform: scale(1.1);
}

.rwg-cabecalho-mobile, .rwg-cabecalho-mobile-navegacao{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.rwg-cabecalho-mobile-navegacao{
    z-index: 1;
    background: var(--cor-branco);
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0px;
    right: 0px;

    display: block;

    padding-top: calc(130px + 70px);
    padding-right: 30px;
    padding-left: 30px;

    overflow: hidden;

    transform: translateX(100vw);
    opacity: 0;
    transition: transform 0.3s;

    box-shadow: 1px -13px 61px -13px var( --cor-azul-escuro-30 ) !important;
}

.rwg-cabecalho-mobile-navegacao a{
    text-decoration: none;

    font-weight: 700;
    font-size: 22px;
    font-style: italic;
    color: var(--cor-branco);

    transition: opacity 0.5s;

    width: calc(100vw - 60px);

}

.rwg-cabecalho-mobile-pagina{

    font-weight: 900!important;
    font-size: 32px!important;

    color: var(--cor-azul-escuro)!important;
    opacity: 0.6;
    text-align: center!important;

    height: 120px;
    line-height: 120px;
    display: inline-block;

}

.rwg-cabecalho-mobile-pagina:hover{

    opacity: 1;

}

