body{
    
    background-color: var(--cor-azul-escuro);
    
}

.rwg-rodape{
    
    margin-top: 0px!important;
}

/* SECAO-HOME */

.secao-home{

    width: 100vw;
    height: 100vh;
    overflow: hidden;

    scroll-snap-align: start;

}

.home-fundo-geral{
    
    width: 100vw;
    height: 100vh;
    background: var(--cor-azul-escuro);
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    overflow: hidden;
}

.home-fundo{

    background-image: url(/uploads/bannerPrincipal.webp);
    background-position: 0vw 25px;
    background-repeat: no-repeat;
    background-size: cover;

}

.home-colunas{
    
    display: flex;
    height: calc(100vh - 150px);
    width: 100vw;
    margin-top: 150px;
    align-items: center;
}

.home-coluna-1{
    
    width: 40%;
    margin-top: -150px;
    cursor: default;

}

.home-coluna-1 a{
    
        
    transition: transform 0.5s, color 0.5;
    
}

.home-coluna-1 p{
    
    text-align: left;
    color: var(--cor-branco-30);
    font-size: 25px;
    font-weight: 500;
    font-style: italic;
    line-height: 28px;
    letter-spacing: .2px;
    text-shadow: 0px 0px 8px rgb(8 11 42 / 70%);
    
    margin-top: 10px;
    margin-bottom: 65px;
    
}

.home-titulo{
    
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    line-height: 63px;
    letter-spacing: -1px;
    text-shadow: 0px 0px 15px rgb(8 11 42 / 50%);
    
}

.home-coluna-2{
    
    height: 100%;
    width: 60%;
    position: relative;
    
    
}

.home-coluna-2 img{
    
    position: absolute;
    bottom: 0px;
    right: -6vw;
    z-index: 2;
    max-height: calc(100vh - 100px);
    
}


/* SECAO-SOBRE */

.secao-sobre{

    width: 100vw;
    /*height: 100vh;*/
    
    background: var(--cor-branco);

}

.content{
    padding-top: 5em;
    text-align: center;
    height: 100vh;
    transition: 1s;
}

@media screen and (max-width: 768px) {
    .navigation_header{
        position: absolute;
        flex-direction: column !important;
        top: 0;
        background: var(--color-dark5);
        height: 100%;
        width: 35vw;
        padding: 1em;
        animation-duration: 1s;
        margin-left: -100vw;
    }
    .btn_icon_header{
        display: block;
    }
}
@keyframes showSidebar {
    from {margin-left: -100vw;}
    to {margin-left: -10vw;}
}

/* Mobile Geral */
@media (max-width: 1199px) { 
    .home-coluna-2{
        display:none;
    } 

    .home-titulo{
        font-size: 36px;
        line-height: 39px;
        letter-spacing: 0px;
    }

    .home-coluna-1 p{
        font-size: 15px;
        line-height: 18px;
    }

    .home-coluna-1{
        width: 100%;
        padding: 0px 30px;
    }

    .home-coluna-1 a{
        font-size: 15px!important;
    }

    .home-fundo{
        background-position: -15vw 0vh;
        background-repeat: no-repeat;
        background-size: cover;
        height: 105%!important;
    }
}