﻿
/*--------------------GERAL---------------------------*/

body {
}


a {
    text-decoration: none;
    color: inherit;
}

:root {
    --font-primary: 'Open Sans', sans-serif !important;
    --font-secundary: 'Poppins', sans-serif !important;
    --azul: #1860A5;
    --amarelo: #FACD13;
    --amarelo-escuro: #ECB62A;
    --bs-body-font-family: var(--font-primary);
    --bs-link-hover-color: var(--azul);
}

.btn-primary {
    --bs-btn-bg: var(--azul)
}

.texto-azul {
    color: var(--azul);
}

.texto-suave {
    color: rgba(0,0,0,0.5);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secundary);
}

.text-right {
    text-align: right;
}

.sem-borda {
    border: none !important;
}

ul.lista {
    padding-left: 0;
}


    ul.lista li {
        list-style: none;
    }

        ul.lista li:before {
            content: "\f058";
            font-family: 'Font Awesome 5 Free';
            display: inline-block;
            margin-right: 5px;
            color: var(--azul);
            font-size: 0.75rem;
        }


.titulo-secao {
    font-size: 40px;
    font-weight: 600;
}

#botaoTopo {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255,255,255,0.6);
    z-index: 9999;
    padding: 4px 8px;
    cursor: pointer;
    transition: all .2s linear;
}

    #botaoTopo:hover {
        background-color: rgba(255,255,255,1);
    }


.separador {
    position: relative;
    clear: both;
    border-top: 1px solid #DDD;
    margin: 4rem 0;
    width: 100%;
}

.botao-link {
    position: relative;
    color: #000 !important;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}

    .botao-link::after {
        content: '';
        background: url(/img/borda-azul.svg);
        position: absolute;
        margin: 0 auto;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 4px;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
    }

    .botao-link:hover {
        color: var(--azul) !important;
    }

        .botao-link:hover::after {
            bottom: -3px;
        }


.barra-titulo-pagina {
    width: 100%;
    min-height: 30vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 20px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

    .barra-titulo-pagina.compacta {
        min-height: auto;
    }

    .barra-titulo-pagina h2 {
        padding: 0;
        margin: 0;
        font-size: 40px;
        font-weight: 600;
        letter-spacing: 2px;
        color: rgba(255,255,255,0.9);
        line-height: 1;
        text-transform: uppercase;
    }

    .barra-titulo-pagina .conteudo {
        background-color: rgba(0,0,0,0.4);
        padding: 30px 20px;
        width: 100%;
    }

    .barra-titulo-pagina p {
        margin: 0;
        margin-top: 10px;
        font-weight: 300;
        color: rgba(255,255,255,0.7) !important;
    }

    .barra-titulo-pagina .breadcrumb a {
        color: rgba(255,255,255,0.7) !important;
        text-decoration: none;
    }

    .barra-titulo-pagina .breadcrumb .breadcrumb-item.active {
        font-weight: 700;
    }

.conteudo-resumido {
    margin: 20px;
}

    .conteudo-resumido h2 {
        border-bottom: 1px solid var(--azul);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .conteudo-resumido p {
        line-height: 1.2rem;
    }

#vantagens li {
    margin-bottom: 10px;
}


#logosClientes .row div {
    text-align: center;
}



div.logo-cliente 
{
    height:96px;
    position:relative;
   
}

    div.logo-cliente img {
        max-width:100%;
        max-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        
    }

#logosClientes div.logo-cliente {
    border: 1px solid #ededed;
}


.animacao {
    /*  opacity: 0;
    transition: all ease 0.5s;*/
}

    .animacao.ativa {
        /*  opacity: 1;
        transition: all ease 0.5s;*/
    }

#espacadormenu {
    height: 77px;
}


.card.barra-aluno .nav-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
}
/*--------------------GERAL---------------------------*/















/*--------------------MENU---------------------------*/
.navbar img#logo {
    max-height: 50px;
}

.navbar-brand {
    border-right: 1px solid rgba(255,255,255,0.2)
}

.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.2)
}

#menu {
    transition: all 0.9s ease;
}

    #menu.bg-white {
        animation: descer 0.5s ease;
    }

    #menu:not(.bg-white) {
        animation: aparecer 0.5s ease;
    }


.navbar-nav .nav-link, .navbar-nav .nav-link.active {
    font-family: var(--font-secundary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--azul);
}

.navbar.dark {
    background-color: rgba(255,255,255,0.75);
}


.nav-link span {
    display: block;
    position: relative;
}

    .nav-link span::after {
        content: '';
        opacity: 0;
        background: url(/img/borda-azul.svg);
        position: absolute;
        margin: 0 auto;
        left: 0;
        bottom: -3px;
        width: 100%;
        height: 4px;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
    }

.nav-link:hover span::after {
    bottom: -1px;
    opacity: 1;
}

/*--------------------MENU---------------------------*/






/*--------------------SLIDER---------------------------*/



.slider {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

    .slider .info-slider {
        position: absolute;
        background-color: rgba(23, 97, 166, 0.85);
        padding: 10px 20px;
        margin: 10px;
    }

        .slider .info-slider.direita {
            right: 0;
            animation: surgirdireita 0.5s linear;
        }

        .slider .info-slider.esquerda {
            left: 0;
            animation: surgiresquerda 0.5s linear;
        }

        .slider .info-slider.meio {
            top: 50%;
            transform: translateY(-50%);
        }

        .slider .info-slider.inferior {
            bottom: 0;
        }


    .slider h2 {
        font-size: 60px;
        line-height: 1.3;
        font-family: var(--font-secundary);
        font-weight: 700;
        color: #FFF;
        margin: 0;
    }

    .slider p {
        font-family: var(--font-secundary);
        font-size: 25px;
        color: #FFFFFF;
    }


@media (max-width: 767px) {
    .slider .info-slider {
        left: 0;
        right: 0px;
        bottom: 0px;
    }

        .slider .info-slider.meio {
            top: auto;
            transform: none;
        }

    .slider h2 {
        font-size: 30px;
    }

    .slider p {
        font-size: 18px;
    }
}

/*.slider {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

    .slider .info-slider {
        position: absolute;
        right: 5px;
        bottom: 5px;
        background-color: var(--azul);
        padding: 10px 20px;
    }


.slider h2 {
    font-size: 50px;
    line-height: 1.3;
    font-family: var(--font-secundary);
    font-weight: 700;
    color: #FFF;
    margin: 0;
}

    .slider p {
        font-family: var(--font-secundary);
        font-size: 18px;
        color: #FFFFFF;
    }


@media (max-width: 767px) {
    .slider .info-slider {
        left: 0;
        right: 0px;
        bottom: 0px;
    }

    .slider h2 {
        font-size: 30px;
       
    }
}*/

/*--------------------SLIDER---------------------------*/







/*--------------------QUEM SOMOS---------------------------*/



#secaoQuemSomos {
   
}

    #secaoQuemSomos p {
        line-height: 1.8;
        text-align: justify;
    }

#textoQuemSomos, #imgQuemSomos {
    position: relative;
    opacity: 0;
}

#secaoQuemSomos.animacao.ativa #textoQuemSomos {
    animation: surgiresquerda 0.5s ease;
    opacity: 1;
}

#secaoQuemSomos.animacao.ativa #imgQuemSomos {
    animation: surgirdireita 0.5s ease;
    opacity: 1;
}




/*--------------------QUEM SOMOS---------------------------*/



/*--------------------Loja---------------------------*/



#secaoLoja {
    background-image: url(/img/s-loja.jpg);
   
    background-position: center center;
    background-size:400px;
    position: relative;
   
}

    #secaoLoja .fundo {
        background-color: rgba(255,255,255,0.80);
        position:absolute;
        top:0;
        bottom:0;
        width:100%;
    }

    #secaoLoja p {
        line-height: 1.8;
        text-align: justify;
    }

    #secaoLoja .botao-link
    {
        color:#FFF !important;
    }

#textoLoja, #imgLoja {
    position: relative;
    opacity: 0;
}

#textoLoja {
    color: #FFF;
    background-color: rgba(23, 97, 166, 0.90);
    padding: 35px;
}

#imgLoja
{
    max-width:70%;
}

#secaoLoja.animacao.ativa #textoLoja {
    animation: surgirdireita 0.5s ease;
    opacity: 1;
}

#secaoLoja.animacao.ativa #imgLoja {
    animation: surgiresquerda 0.5s ease;
    opacity: 1;
}




/*--------------------LOJA---------------------------*/




/*--------------------BANNERS---------------------------*/

#secaoBanners {
    background-color: var(--azul);
    padding: 25px 0;
}

/*--------------------BANNERS---------------------------*/




/*--------------------SECAO SERVICOS---------------------------*/

#secaoServicos .card {
    border-radius: 0;
    cursor: pointer;
    position: relative;
    opacity: 0;
    height: 100%;
    border-right: none;
}



#secaoServicos .row div:last-child .card {
    border-right: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

#secaoServicos .card h5 {
    text-align: center;
    margin-bottom: 1rem;
    font-size:1rem;
}




#secaoServicos .card .lista li {
    font-size: 0.80rem;
    margin-bottom: 0.5rem;
}

#secaoServicos .col > a {
    text-decoration: none;
    color: inherit;
}

#secaoServicos.animacao.ativa .card {
    animation: subir 0.6s ease;
    opacity: 1;
}

#secaoServicos .card-img-top {
    border-radius: 0;
}

#secaoServicos .col {
    position: relative;
    overflow: hidden;
}

#secaoServicos .titulo-secao {
    font-size: 30px;
}

#secaoServicos h5 {
    font-weight: 600;
}

#secaoServicos .card-group {
    position: relative;
}

/*--------------------SECAO SERVICOS---------------------------*/



/*--------------------SECAO SOCIAL---------------------------*/


#secaoSocial {
    background-color: var(--amarelo);
    background-image: linear-gradient(var(--amarelo), var(--amarelo-escuro));
}

    #secaoSocial p {
        text-align: justify;
    }

#textoSocial, #imgSocial {
    position: relative;
    opacity: 0;
}

#secaoSocial.animacao.ativa #textoSocial {
    animation: surgirdireita 0.6s ease;
    opacity: 1;
}

#secaoSocial.animacao.ativa #imgSocial {
    animation: surgiresquerda 0.6s ease;
    opacity: 1;
}

/*--------------------SECAO SERVICOS---------------------------*/


/*--------------------SECAO CLIENTES---------------------------*/


#secaoClientes {
    border-top: 1px
}

/*--------------------SECAO CLIENTES---------------------------*/


/*--------------------SECAO CURSOS---------------------------*/


#secaoCursos .container {
}

#secaoCursos {
    background-image: url(/img/fundo-azul.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}


    #secaoCursos .ondas {
        background-image: url(/img/wave-3.svg);
        background-repeat: repeat-x;
        background-position: center center;
        height: 12px;
        width: 100%;
        position: absolute;
    }

        #secaoCursos .ondas.superior {
            top: -1px;
            left: 0;
        }

        #secaoCursos .ondas.inferior {
            bottom: -1px;
            left: 0;
            transform: rotate(180deg)
        }

    #secaoCursos #textoCursos {
        padding: 40px 30px;
        border-radius: 5px;
        color: #FFF;
    }

        #secaoCursos #textoCursos .botao-link {
            color: #FFFFFF !important;
        }

            #secaoCursos #textoCursos .botao-link::after {
                background: url(/img/border-white.svg);
            }


#containerCursos {
    opacity: 0;
}


#secaoCursos.animacao.ativa #containerCursos {
    animation: aparecer 0.2s ease;
    opacity: 1;
}

/*--------------------SECAO CURSOS---------------------------*/









/*--------------------SECAO CONTATOS---------------------------*/
#secaoContatos #conteudoContato {
}

#secaoContatos #fundoContato {
    background-image: url(/img/fundo-contato.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

#secaoContatos .titulo-secao {
    color: #EEE;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    bottom: -10px;
    font-size: 60px;
    font-weight: 700;
}

#secaoContatos .separador {
    margin: 1rem 0;
}

.itemContato {
    text-align: center;
    margin: 15px 0;
   
   
}

    .itemContato .iconeContato {
        color: var(--azul);
        display: block;
        text-align: center;
        font-size: 3rem;
    }

    .itemContato p {
        font-size: 14px;
        color: #555;
    }

/*--------------------SECAO CONTATOS---------------------------*/


/*--------------------SECAO AREA CCOOPERADO---------------------------*/

#secaoAreaCooperado {
    background-color: #F9F9F9;
}

.item-noticia {
    cursor: pointer;
}



    .item-noticia .imagem-item-noticia {
        position: relative;
        padding-bottom:56%;
        overflow:hidden;
    }

        .item-noticia .imagem-item-noticia img {
            position:absolute;
            top:0;
            left:0;
            max-width:100%;
        }

    .item-noticia .label-categoria-noticia {
        position: absolute;
        left: 5px;
        bottom: 5px;
        background-color: var(--azul);
        color: #FFFFFF;
        padding: 3px 5px;
        font-size: 10px;
        border-radius: 2px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 400;
    }

    .item-noticia .dados-noticia {
        color: #666;
        font-size: 0.75em;
    }

#secaoAreaCooperado .titulo-secao {
    font-size: 30px;
}


/*--------------------SECAO AREA COOPERADO---------------------------*/

/*--------------------SECAO RODAPE---------------------------*/


#rodape {
    margin-top: 30px;
}

    #rodape .texto-suave {
        font-size: 0.70rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    #rodape #redesSociais a {
        width: 28px;
        display: inline-block;
        margin: 0 5px;
    }

    #rodape #redesSociais img {
        width: 28px;
    }

/*--------------------SECAO RODAPE---------------------------*/




/* --------------- ANIMACOES ---------------------- */

@keyframes aparecer {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes descer {
    0% {
        top: -50px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}


@keyframes subir {
    0% {
        top: 75%;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes surgiresquerda {
    0% {
        left: -300px;
        opacity: 0;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}

@keyframes surgirdireita {
    0% {
        right: -300px;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}

/* --------------- ANIMACOES ---------------------- */
