/* 
    Created on : 22/08/2020, 17:49:48
    Author     : Fabiano
*/
:root {
    --cor-primaria: #00963f;
    --cor-secundaria: #61e096;
    --cor-tercearia: #1b8241;
    --white: #ffffff;
    /* #264fa2; -- primaria */
    /* #0095eb; -- secundaria */
    /* #4169e1; -- tercearia */
}

/* definir a altura mínima para o menu fixo*/
body {
    /* min-height: 75rem; */
    /* padding-top: 3.5rem; */

}

.btn-personalizado {
    color: var(--cor-primaria);
    background-color: transparent;
    border-color: var(--cor-primaria);
}

/* Efeito hover */
.btn-personalizado:hover {
    color: var(--white);
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

/* Efeito quando clicado (active) */
.btn-personalizado:active,
.btn-personalizado:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}

.menu-principal {
    background-color: var(--cor-primaria);
}

.cor-primaria-fundo {
    background-color: var(--cor-primaria);
}

.cor-primaria-texto {
    color: var(--cor-primaria);
}

.cor-tercearia-texto {
    color: var(--cor-tercearia);
}

.cor-secundaria-texto {
    color: var(--cor-secundaria);
}

.cor-primaria-branco {
    color: var(--white);
}

#idioma-contraste-usabilidade {
    height: 20px;
    background-color: #efefef;
    border-bottom: solid 1px #e0e0e0;
}

#idioma-contraste-usabilidade a:hover,
#idioma-contraste-usabilidade a:focus {
    text-decoration: underline;
    /*color: #264fa2;*/
    /*color: #264fa2;*/
    font-weight: bold;
}

#idioma-contraste-usabilidade a {
    text-decoration: none;
    color: var(--cor-primaria);
}

#idiomas {
    background: rgba(0, 0, 0, 0) url('../imagens/vazio-1x1.png') no-repeat scroll 10px 55%;
    padding: 1px 12px 1px 30px;
    font-size: 12px;
    height: 20px;
    border-right: solid 1px #e0e0e0;
}

#idioma-contraste-usabilidade-vazio {
    background-color: #ffc720;
    background: rgba(0, 0, 0, 0) url('../imagens/vazio-1x1.png') no-repeat scroll 10px 55%;
    padding: 1px 10px 1px 30px;
    font-size: 12px;
    border-right: solid 1px #e0e0e0;
    border-left: solid 1px #bdbdbd;
}

#contraste {
    background-color: #ffc720;
    background: rgba(0, 0, 0, 0) url('../imagens/vazio-1x1.png') no-repeat scroll 10px 55%;
    padding: 1px 12px 1px 10px;
    font-size: 12px;
    border-right: solid 1px #e0e0e0;
    border-left: solid 1px #bdbdbd;
}

#usabilidade {
    background-color: #ffc720;
    background: rgba(0, 0, 0, 0) url('../imagens/vazio-1x1.png') no-repeat scroll 10px 55%;
    padding: 1px 1px 1px 10px;
    font-size: 12px;
    border-left: solid 1px #bdbdbd;
}

#logo {
    height: 80px;
    background-color: #ffffff;
}

#atalhos {
    height: 80px;
    background-color: #ffffff;
}

.atalhos-c {
    height: 80px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#pesquisa {
    height: 60px;
    background-color: #ffffff;
}

@media screen and (max-width: 991px) {

    /** sm */
    #logo {
        margin-top: 10px;
        height: 80px;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #atalhos {
        height: 65px;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #pesquisa {
        height: 65px;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #rodape {
        text-align: center;
    }
}

/* Configuração referente ao id do span que contém o texto "TOPO" para voltar ao topo do site */
#topo {
    font-family: verdana;
}

/* Configuração para fixar o link que fica encarregado de retornar a rolagem para o topo do site */
.scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    margin: 0;
    padding: 1rem;
    font-size: 10px;
    display: none !important;
}

/* Classe para configuração de exibir o link de rolar para o topo do site */
.scrollToTop_True {
    display: block !important;
}

/* cover: Uma palavra-chave que é o inverso de contain. Ajusta a imagens o mais largamente possível
e mantém sua proporção (a imagens não fica esticada). A imagens "cobre" o container inteiro, tanto em 
altura como em largura. Quando a imagens e o container tem diferente dimensões, a imagens ultrapassa os 
limites do container em qualquer direção, para continuar mantendo a proporção. 
Fonte: https://developer.mozilla.org/pt-BR/docs/Web/CSS/background-size */
/* seletor para persolizar o topo da página home */
.descr-top {
    background-image: url('../imagens/topo.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 120px;
    color: #fff;
    margin-bottom: 0rem !important;
    border-radius: 0rem;
}

/* seletor para persolizar a área de serviços da página home */
.descr-serv {
    padding-top: 80px;
    background-color: #fff;
    padding-bottom: 80px;
    border-radius: 0px;
    margin-bottom: 0rem !important;
}

.circulo {
    width: 140px;
    height: 140px;
    font-size: 52px;
    padding-top: 24px;
    color: var(--cor-primaria);
    border: solid 1px var(--cor-primaria);
}

.circulo:hover {
    color: var(--white);
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

.centralizar {
    margin: 0 auto !important;
    float: none !important;
}

.descr-action {
    background-image: url(../imagens/chamada_acao.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 0rem !important;
    border-radius: 0rem;
    color: #fff;
}

/* seletor para persolizar area detalhes na página home */
.descr-det {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #fff;
    margin-bottom: 0rem;
    border-radius: 0rem;
}

.titulo {
    padding-bottom: 60px;
}

/* seletor para personalizar rodapé da página */
.footer-per {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #090622;
    margin-bottom: 0rem !important;
    border-radius: 0rem !important;
    color: #fff;
}

.footer-per ul li a.link-footer {
    color: #fff !important;
}

.footer-per ul li a.link-footer:hover {
    color: #adaeaf !important;
    text-decoration: none;
}

/* Seletor para personalizar título da página sobre a empresa*/
.head-sobre {
    padding-top: 60px !important;
    padding-bottom: 0px !important;
    background-color: #fff;
    margin-bottom: 0rem !important;
    border-radius: 0rem !important;
}

/* Seletor para personalizar o título da página sobre empresa */
.sobre {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background-color: #fff;
    margin-bottom: 0rem !important;
    border-radius: 0rem !important;
}

/* Seletor para personalizar título da página sobre a empresa*/
.head-paginas {
    padding-top: 60px !important;
    padding-bottom: 0px !important;
    background-color: #fff;
    margin-bottom: 0rem !important;
    border-radius: 0rem !important;
}

/* Seletor para personalizar o título da página sobre empresa */
.paginas {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background-color: #fff;
    margin-bottom: 0rem !important;
    border-radius: 0rem !important;
}


.featurette-divider {
    margin: 5rem 0;
    /* Space out the Bootstrap <hr> more */
}

/* Seletor para personalizar o título da página sobre contato */
.head-contato {
    padding-top: 60px !important;
    padding-bottom: 0px !important;
    background-color: #fff;
    margin-bottom: 0rem !important;
    border-radius: 0rem !important;
}

.contato {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background-color: #fff;
    margin-bottom: 0rem !important;
    border-radius: 0rem !important;
}



/* footer */

#rodape {
    background-color: var(--cor-primaria);
    color: rgb(0, 0, 0);
    padding-top: 30px;
}

#rodape .footer-copyright {
    /* background-color: #1716DD; */
    /*background-color: lightskyblue; */
    /* var(--cor-tercearia); */
    background-color: var(--cor-secundaria);
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    height: 20px;
}

#rodape .row {
    margin-bottom: 60px;
}

#rodape .navbar-brand {
    margin-top: 45px;
    height: 65px;
}

#rodape .footer-copyright p {
    margin: 10px;
    padding: 0px;
    color: #000;
    font-size: small;

}

#rodape ul {
    list-style-type: none;
    padding-left: 0;
    line-height: 1.7;
}

#rodape h5 {
    font-size: 18px;
    color: white;
    font-weight: bold;
    margin-top: 30px;
}

#rodape h2 a {
    font-size: 50px;
    text-align: center;
    color: #fff;
}

#rodape a {
    color: #d2d1d1;
    text-decoration: none;
}

#rodape a:hover,
#rodape a:focus {
    text-decoration: none;
    color: white;
}

#rodape .social-networks {
    text-align: center;
    padding-top: 26px;
    padding-bottom: 1px;
}

#rodape .social-networks a {
    font-size: 32px;
    color: #f9f9f9;
    padding: 10px;
    transition: 0.2s;
}

#rodape .social-networks a:hover {
    text-decoration: none;
}

#rodape .facebook:hover {
    color: #0077e2;
}

#rodape .instagram:hover {
    color: purple;
}

#rodape .twitter:hover {
    color: #00aced;
}

#rodape .youtube:hover {
    color: red;
}

#rodape .tiktok:hover {
    color: black;
}

#rodape .btn {
    border-radius: 20px;
    border: none;
    width: 150px;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 25px;
}

#paginacao {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* Define tamanhos de fonte especÃ­ficos para cada tamanho de tela */
@media (max-width: 576px) {
    .font-ajustavel {
        font-size: 12px;
    }

    .font-ajustavel-menu {
        font-size: 12px;
    }

    #carouselExampleIndicators {
        height: 100px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .font-ajustavel {
        font-size: 14px;
    }

    .font-ajustavel-menu {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .font-ajustavel {
        font-size: 14px;
    }

    .font-ajustavel-menu {
        font-size: 14px;
    }

    #atalhos {
        height: 90px;
        background-color: #ffffff;
        margin-top: 20px;
    }

}

@media (min-width: 993px) {
    .font-ajustavel {
        font-size: 14px;
    }

    .font-ajustavel-menu {
        font-size: 14px;
    }
}

#whatsapp {
    display: block;
    width: 175px;
    height: 91px;
    position: fixed;
    z-index: 99999;
    left: 0px;
    bottom: 60px;
    background-image: url("../images/chamar-whatsapp.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}