@import 'animate.min.css';
@import url('https://fonts.googleapis.com/css?family=Lato');
@import url("tema.css");

header, footer, article, aside, nav, section {
    display: block;
}
a {
    cursor: pointer !important;
}
.owl-pagination{
    display: none !important;
}
.owl-buttons {
    position: absolute;
    width: 100%;
    top: 40%;
}
.owl-prev{
    display: block;
    float: left;
    width: fit-content;
    background: rgb(0 0 0 / 50%);
    text-align: center;
    border-radius: 7px;
    font-size: 28px;
    color: #fff;
    margin-left: 15px;
}
.owl-next{
    display: block;
    float: right;
    width: fit-content;
    background: rgb(0 0 0 / 50%);
    text-align: center;
    border-radius: 7px;
    font-size: 28px;
    color: #fff;
    margin-right: 15px;
}
body {
    background-color: #FFF;
    font-size: 14px;
    margin: 0px;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--cor_textos);
}

/* Classes do projeto */
.wrap_base {
    display: block;
    width: 100%;
    float: left;
}

.wrap_pgs{
    padding: 40px 0px 60px;
}
.back_gray{
    background: #F6F6F6;
}

.base {
    margin: 0px auto;
    border: 1px solid red; /* base borda vermelho */
}

.item_mobile {
    display: none;
}
.hide {
    display: none !important;
}

.botao_whatsapp {
    background: #40df5e;
    color: #FFF;
    font-weight: bold;
    width: auto;
    display: inline-block;
    padding: 10px 25px;
    z-index: 5;
    position: fixed;
    float: right;
    bottom: 15px;
    right: 15px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #00ab20;
}
.botao_whatsapp i {
    font-size: 42px;
    display: inline-block;
    margin-right: 10px;
}
.botao_whatsapp span {
    display: inline-block;
    line-height: 20px;
}
.botao_whatsapp:hover {
    background: #00ab20;
    color: #FFF;
}
.owl-pagination {
    margin-top: 50px;
    text-align: center !important;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    opacity: 1;
    filter: Alpha(Opacity=100);
}

.owl-theme .owl-controls .owl-page {
    zoom: 1;
    display: inline-block;
    *display: inline;
}

.owl-theme .owl-controls .owl-page span {
    width: 12px;
    height: 12px;
    opacity: 0.3;
    display: block;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    border: 1px solid var(--cor_secundaria_strong);
    background: var(--cor_secundaria);
}

.owl-theme .owl-controls .owl-pagination .active span {
    border: 1px solid var(--cor_secundaria_strong);
    background: var(--cor_secundaria);
}

.owl-slider-v4 .owl-pagination{
    margin-top: -50px;
}

.owl-slider-v4 .owl-controls .owl-pagination span{
    border: 1px solid #FFF;
    background: #FFF;
}

.owl-slider-v4 .owl-controls .owl-pagination .active span{
    border: 1px solid #FFF;
    background: #FFF;
}
.owl-slider-v2 .owl-controls .owl-pagination{
    margin-top: 0;
}
.titulo_section{
    width: 100%;
    font-size: 26px;
    position: relative;
    margin-bottom: 40px;
    font-style: italic;
    color: var(--cor_secundaria);
}
.subtitulo_section{
    width: 100%;
    float: left;
    font-size: 20px;
    color: var(--cor_primaria);
}
.titulo_subl_esquerda_branco:after{
    content: '';
    display: block;
    margin-top: 10px;
    width: 50px;
    height: 4px;
    background: #FFF;
    position: absolute;
    left: 0;
}
.titulo_subl_centro_branco:after{
    content: '';
    display: block;
    margin: 10px auto 0px;
    width: 60px;
    height: 4px;
    background: #FFF;
}
.titulo_subl_direita_branco:after{
    content: '';
    display: block;
    margin-top: 10px;
    right: 0;
    width: 50px;
    height: 4px;
    background: #FFF;
    position: absolute;
}
.titulo_subl_esquerda_preto:after{
    content: '';
    display: block;
    margin-top: 10px;
    width: 50px;
    height: 4px;
    background: var(--cor_primaria);
    position: absolute;
    left: 0;
}
.titulo_subl_centro_preto:after{
    content: '';
    display: block;
    margin: 10px auto 0px;
    width: 60px;
    height: 4px;
    background: #000;
}
.titulo_subl_direita_preto:after{
    content: '';
    display: block;
    margin: 10px auto 0px;
    left: 0;
    right: 0;
    width: 50px;
    height: 4px;
    background: #000;
    position: absolute;
}
.form-group{
    height: auto;
}
.form-textarea{
    height: auto;
}
/* End Classes do projeto */

/* Celulares até 240px */
@media screen and (max-width: 380px) {

    /* Classes do projeto */
    .titulo_section {
        margin-bottom: 20px;
        font-size: 25px;
    }
    .wrap_pgs {
        padding: 20px 0px 30px 0px;
    }
    /* End Classes do projeto */

}

/* End Celulares até 240px */

/* Celulares até 480px */
@media screen and (max-width: 480px) {

    /* Classes do projeto */
    .base {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        border: 1px solid deepskyblue; /* base borda azul claro */
    }
    .titulo_section {
        margin-bottom: 20px;
        font-size: 25px;
    }
    .col-mobile {
        display: block;
        width: 100% !important;
        min-height: 10px !important;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .mobile_none {
        display: none;
    }

    .mobile_block {
        display: block;
    }

    .item_mobile {
        display: block;
    }

    .recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
    /* End Classes do projeto */

}

/* Tablet em pé */
@media screen and (min-width: 481px) and (max-width: 767px) {

    /* Classes do projeto */
    .base {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        border: 1px solid darkgreen; /* base borda verde escuro */
    }
    .owl-buttons {
        top: 30%;
    }
    .tablet_min_none {
        display: none;
    }

    .tablet_min_block {
        display: block;
    }
    /* End Classes do projeto */

}

/* End Tablet em pé */

/* Tablet em deitado */
@media screen and (min-width: 768px) and (max-width: 991px) {

    /* Classes do projeto */
    .base {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        border: 1px solid orangered; /* base borda laranja escuro */
    }
    .tablet_max_none {
        display: none;
    }

    .tablet_max_block {
        display: block;
    }
    /* End Classes do projeto */

}

/* End Tablet em deitado */

/* Notebook */
@media screen and (min-width: 992px) and (max-width: 1280px) {

    /* Classes do projeto */
    .base {
        width: 970px;
        border: 1px solid blue; /* base borda azul */
    }

    .note_none {
        display: none;
    }

    .note_block {
        display: block;
    }
    /* End Classes do projeto */

}

/* End Notebook */

/* Computadores */
@media screen and (min-width: 1281px) {

    /* Classes do projeto */
    .base {
        width: 1140px;
        border: 1px solid deeppink; /* base borda rosa */
    }

    .desktop_none {
        display: none;
    }

    .desktop_block {
        display: block;
    }
    /* End Classes do projeto */

}

/* End Computadores */

/* Computadores M */
@media screen and (min-width: 1345px) and (max-width: 1632px) {

    /* Classes do projeto */
    /* End Classes do projeto */

}

/* End Computadores */

/* Computadores G */
@media screen and (min-width: 1633px) {

    /* Classes do projeto */
    /* End Classes do projeto */

}
/* End Computadores G */

/* Tiro a bordar de testes */
.base {
    border: none;  /* base borda rosa */
}
/* End tiro a bordar de testes */