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

header, footer, article, aside, nav, section {
    display: block
}

body {
    background-color: #FFF;
    font-size: 14px;
    margin: 0px;
    overflow-x: hidden;
    font-family: 'Lato', sans-serif !important;
}
.section_color:nth-child(even) {
    background-color: #FFF !important;
}
.section_color:nth-child(odd) {
    background-color: #f6f6f6 !important;
}
h1, h2, h3, h4, h5, h6 {
    color: #343434;
}

/* 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;
}

.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 #00cafc;
    background: #00cafc;
}

.owl-theme .owl-controls .owl-pagination .active span {
    border: 1px solid #00cafc;
    background: #00cafc;
}

.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: 36px;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
}
.subtitulo_section{
    width: 100%;
    float: left;
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}
.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: #00cafc;
    position: absolute;
    left: 0;
}
.titulo_subl_centro_preto:after{
    content: '';
    display: block;
    margin: 10px auto 0px;
    width: 60px;
    height: 4px;
    background: #00cafc;
}
.titulo_subl_direita_preto:after{
    content: '';
    display: block;
    margin: 10px auto 0px;
    left: 0;
    right: 0;
    width: 50px;
    height: 4px;
    background: #00cafc;
    position: absolute;
}
.form-group{
    height: 72px;
}
.form-textarea{
    height: auto;
}
/* End Classes do projeto */

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

    /* Classes do projeto */
    /* 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{
        font-size: 28px;
    }
    .titulo_section_empresa{
        font-size: 28px;
    }

    .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 */
    }

    .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 */