/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    font-size: 16px;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 13px;
    }
}

a {
    color: #98d135;
}

a:hover {
    color: #70b100;
    text-decoration: none;
}

@media screen and (max-width:992px) {
    .text-justify {
        text-align: inherit!important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Botão conheça o gestor de veículos
--------------------------------------------------------------*/

.button {
    --offset: 10px;
    --border-size: 2px;
    display: block;
    position: relative;
    padding: 15px 30px;
    appearance: none;
    border: 0;
    background: transparent;
    color: #062274;
    text-transform: uppercase;
    letter-spacing: 2px;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0;
    box-shadow: inset 0 0 0 var(--border-size) currentcolor;
    transition: background 0.8s ease;
    font-size: 15px;
}

@media screen and (min-width:767px) {
    .button {
        width: 600px;
        text-align: center;
    }
}

.button:hover {
    background: rgba(100, 0, 0, .03);
    transition: background 0.8s ease;
    color: #062274;
}

.button__horizontal,
.button__vertical {
    position: absolute;
    top: var(--horizontal-offset, 0);
    right: var(--vertical-offset, 0);
    bottom: var(--horizontal-offset, 0);
    left: var(--vertical-offset, 0);
    transition: transform 0.8s ease;
    will-change: transform;
}

.button__horizontal::before,
.button__vertical::before {
    content: '';
    position: absolute;
    border: inherit;
    transition: background 0.8s ease;
}

.button__horizontal {
    --vertical-offset: calc(var(--offset) * -1);
    border-top: var(--border-size) solid currentcolor;
    border-bottom: var(--border-size) solid currentcolor;
}

.button__horizontal::before {
    top: calc(var(--vertical-offset) - var(--border-size));
    bottom: calc(var(--vertical-offset) - var(--border-size));
    left: calc(var(--vertical-offset) * -1);
    right: calc(var(--vertical-offset) * -1);
}

.button:hover .button__horizontal {
    transform: scaleX(0);
}

.button__vertical {
    --horizontal-offset: calc(var(--offset) * -1);
    border-left: var(--border-size) solid currentcolor;
    border-right: var(--border-size) solid currentcolor;
}

.button__vertical::before {
    top: calc(var(--horizontal-offset) * -1);
    bottom: calc(var(--horizontal-offset) * -1);
    left: calc(var(--horizontal-offset) - var(--border-size));
    right: calc(var(--horizontal-offset) - var(--border-size));
}

.button:hover .button__vertical {
    transform: scaleY(0);
}


/*--------------------------------------------------------------
# Botão Voltar Topo
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 8%;
    z-index: 9998;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #98d135;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #7dc500;
    color: #fff;
}

.btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #98d135;
}

.btn:hover {
    background: #70b100;
    color: #fff;
}


/*--------------------------------------------------------------
# Desativar atraso AOS no celular
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    padding: 7px;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Open Sans", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #576971;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 56px;
}

@media (max-width: 768px) {
    #header .logo h1 {
        font-size: 28px;
        padding: 8px 0;
    }
}


/*--------------------------------------------------------------
# Header Social
--------------------------------------------------------------*/

.header-social-links a {
    color: #7b909a;
    padding: 12px 0 12px 6px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

.header-social-links a:hover {
    color: #0d2474;
}

@media (max-width: 768px) {
    .header-social-links {
        padding-right: 48px;
    }
}


/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/


/* Desktop Menu */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #0d2474;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.nav-menu,
.header-social-links {
    padding: 9px 0;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #98d135;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu li a {
    cursor: pointer;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #003651;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #98d135;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Celular Menu */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 22px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.header-social-links i {
    font-size: 16px;
}

@media screen and (min-width:768px) and (max-width:992px) {
    .header-social-links {
        position: fixed;
        right: 14%;
    }
}

@media screen and (max-width:767px) {
    .header-social-links {
        position: fixed;
        right: 20%;
    }
}

.mobile-nav-toggle i {
    color: #0d2474;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 12px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #0d2474;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #98d135;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(32, 38, 41, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/

.home {
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    margin-top: 75px;
    /* padding: 60px 0; */
    padding: 0px;
}

.home h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #001e77;
}

.home h1.red {
    color: #CC3438!important;
}

.home h1 strong {
    font-size: 40px;
}

.home .row {
    margin-top: 2%;
}

.home h1 small {
    font-size: 35px;
    font-weight: 700;
}

.home h2 {
    color: #576971;
    margin-bottom: 30px;
    font-size: 24px;
}

.home .home-img {
    text-align: center;
}

.home .home-img img {
    width: 90%;
}

@media (min-width: 1024px) {
    .home {
        background-attachment: fixed;
    }
    .home h1 strong {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .home h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .home h5 {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .home .home-img img {
        width: 70%;
    }
}

.titulo-principal {
    max-width: 480px;
    margin: 0 0 20px 0;
}


/*--------------------------------------------------------------
# Geral section
--------------------------------------------------------------*/

section {
    padding: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.section-bg {
    background-color: #062274;
    color: #fff;
}

.section-bg-green {
    background-color: #7AAB41;
    color: #fff;
}

.section-bg-red {
    background-color: #CC3438;
    color: #fff;
}

.section-video {
    display: flex;
    justify-content: center;
}

.curva-bg {
    width: 100%;
    margin-top: -2px;
}

.fundo-onda {
    background: url('../img/layout_onda_contato.svg')!important;
    background-size: cover!important;
}

@media screen and (min-width: 1200px) {
    .fundo-onda {
        background-position-x: 50px!important;
        background-repeat: no-repeat!important;
    }
}

.oversvg {
    display: flex;
    align-items: center;
    top: 10%;
    bottom: 0;
    margin-top: 10%;
}

@media (max-width:992px) {
    .oversvg {
        margin-top: 27%;
    }
    .notbg .espacamento {
        padding: 20px;
    }
    .notbg .formulario {
        box-shadow: 0px 5px 15px 10px rgb(0 0 0 / 17%);
    }
}

.btn-whats {
    width: 80px;
    position: fixed;
    bottom: 14px;
    left: 14px;
    z-index: 999;
    cursor: pointer;
}

.oversvg h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #001e77;
}

.oversvg h2 {
    font-weight: 700;
    color: #001e77;
}

.oversvg h5 {
    margin-bottom: 10px;
}

.oversvg h3 {
    margin-bottom: 10px;
}

.img-faleconosco img {
    width: 90%;
}

.img-faleconosco {
    text-align: center
}

.onda-contato {
    width: 100%;
    margin-left: 5%;
    height: 100vh;
}

.curva-bg-invert {
    width: 100%;
    transform: rotate(180deg);
    margin-bottom: -2px;
}

.section-title {
    text-align: left;
    padding-bottom: 30px;
    color: #001e77;
}

.section-title-contato {
    text-align: left;
}

.section-title-invert h1 {
    color: #fff;
}

.app-title {
    text-transform: uppercase;
    letter-spacing: 9px;
    font-size: 40px!important;
}

.separator-app {
    width: 13%;
    border-top: 5px solid white;
    float: left;
}

.section-title h1 {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 0;
    font-family: "Raleway", sans-serif;
}

.section-normal h1 {
    font-weight: 700;
}

.section-normal-red h1 {
    font-weight: 700;
    color: #CC3438;
}

.section-normal-green h1 {
    font-weight: 700;
    color: #7AAB41;
}

.dot-red {
    background-color: #cc3438!important;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-family: "Raleway", sans-serif;
}

.section-title p {
    margin-bottom: 0;
}

.fundo_clientes{
    background: url('../img/fundo_amadeirado.jpg');
    background-size: cover;
    width: 100%;
    min-height: 300px;
}

.titulo_secao_clientes{
    color:#fff!important;
    text-shadow: -3px 3px 3px black;
}

/*--------------------------------------------------------------
# Sessão Curva
--------------------------------------------------------------*/

.sessao_curva {
    padding-bottom: 0px;
    padding-top: 0px;
}

.sessao_curva .icon-box {
    padding: 15px;
    position: relative;
    margin: 0;
    background: #fff;
    box-shadow: 0px 5px 15px 10px rgb(0 0 0 / 0.3);
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

.sessao_curva .icon-box:hover,
.sessao_curva .icon-box.active:hover {
    transform: translateY(-5px);
    transition-duration: 0.5s;
}

.sessao_curva .card-icon .icon-box:hover,
.sessao_curva .card-icon .icon-box.active:hover {
    border-color: #32ac15;
}

.sessao_curva .icon-box.active {
    background: #98d135;
    border-bottom: 3px solid #98d135;
}

.sessao_curva .icon img {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
    height: 50px;
}

.sessao_curva .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color: #062274;
}

.sessao_curva .title-red {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color: #CC3438;
}

@media screen and (max-width: 768px) {
    .sessao_curva .title {
        font-size: 15px;
    }
}

.sessao_curva .description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
    color: #444444;
}

@media screen and (max-width: 768px) {
    .sessao_curva .description {
        font-size: 12px;
    }
}

@media screen and (min-width:991px) {
    .center {
        margin-left: 16%;
    }
}

.btn-link {
    font-size: 30px;
    margin: 0;
    padding: 0;
    transform: rotate(90deg);
}

.btn-link:hover {
    text-decoration: none;
}

.card-icon {
    cursor: pointer;
}


/*--------------------------------------------------------------
# Sessão com Imagem
--------------------------------------------------------------*/

.sessao_com_imagem {
    background-size: cover;
    color: #fff;
}

.tecnologia {
    background: linear-gradient(rgba(0, 38, 168, 0.9), rgba(11, 35, 116, 0.9)), url("../img/tecnologia.jpg") center center;
    background-size: cover;
}

.cotacao {
    background: linear-gradient(rgba(0, 38, 168, 0.9), rgba(11, 35, 116, 0.9)), url("../img/cotacao.jpg") center center;
    background-size: cover;
}

.promotion {
    color: #9f9f9f;
    float: left;
    margin-left: 11%;
}

.cotacao-green {
    background: linear-gradient(rgba(122, 171, 65, 0.9), rgba(72, 240, 93, 0.9)), url("../img/cotacao.jpg") center center;
    background-size: cover;
}

.cotacao-red {
    background: linear-gradient(rgb(204 52 56 / 90%), rgb(179 57 57 / 90%)), url(../img/cotacao.jpg) center center;
    background-size: cover;
}

.img-alegre {
    width: 80%;
    display: flex;
    margin: 0 auto;
}

.reset-color {
    color: inherit!important;
}

.ti {
    background: linear-gradient(rgba(0, 170, 83, 0.8), rgba(11, 35, 116, 0.9));
    background-size: cover;
    padding: 0px 0px 22px 0px
}

.ti-green {
    background: linear-gradient(rgba(122, 171, 65, 0.9), rgb(64, 217, 83, 0.9));
    background-size: cover;
    padding: 0px;
}

.ti-red {
    background: linear-gradient(rgba(212, 33, 39, 0.9), rgba(216, 53, 53, 0.9));
    background-size: cover;
    padding: 0px;
}

.ti img {
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

.ti img:hover {
    transform: rotate(5deg);
    transition-duration: 0.5s;
}

.ti-red img {
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

.ti-red img:hover {
    transform: rotate(5deg);
    transition-duration: 0.5s;
}

.ti-green img {
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

.ti-green img:hover {
    transform: rotate(5deg);
    transition-duration: 0.5s;
}

.promotion {
    color: #9f9f9f;
    float: left;
    margin-left: 11%;
}

.green {
    color: #7AAB41!important;
}

.sessao_com_imagem h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .sessao_com_imagem h3 {
        font-size: 14px;
    }
    .espacamento {
        margin-top: 40px;
    }
}


/* Ajusta responsividade do recaptcha no form de cotação */

@media screen and (min-width:768px) and (max-width:992px) {
    .container-responsivo-recaptcha {
        max-width: 780px!important;
    }
}

.sessao_com_imagem p {
    color: #fff;
}

.sessao_com_imagem .sessao_com_imagem-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #009cea;
}

.sessao_com_imagem .sessao_com_imagem-btn:hover {
    background: #008bd1;
}

@media (min-width: 1024px) {
    .sessao_com_imagem {
        background-attachment: fixed;
    }
}

@media (min-width: 769px) {
    .sessao_com_imagem .sessao_com_imagem-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/*--------------------------------------------------------------
# Sessão após Curva
--------------------------------------------------------------*/

.sessao_apos_curva {
    padding-top: 0px;
}

.sessao_apos_curva h5 {
    color: inherit;
    padding-top: 10px;
}

.sessao_apos_curva img {
    width: 40%;
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

.sessao_apos_curva img:hover {
    transform: rotate(5deg);
    transition-duration: 0.5s
}

.esquerda {
    text-align: right
}

.direita {
    text-align: left
}

@media (max-width: 767px) {
    .esquerda {
        text-align: left
    }
    .direita {
        text-align: right
    }
    .espaco {
        padding: 1em;
    }
    .sessao_apos_curva h5 {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .meio {
        flex: none;
        width: 140px;
    }
}


/*--------------------------------------------------------------
# Lista Direita e Esquerda
--------------------------------------------------------------*/

.sessao_lista_direita_esquerda .content h3 {
    font-weight: 400;
    font-size: 32px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.sessao_lista_direita_esquerda .content ul {
    list-style: none;
    padding: 0;
}

.sessao_lista_direita_esquerda .content ul li {
    padding-bottom: 10px;
}

.sessao_lista_direita_esquerda .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #98d135;
}

.sessao_lista_direita_esquerda .content p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Tooltip
--------------------------------------------------------------*/


/* Tooltip container */

.tool_tip {
    position: relative;
    display: inline-block;
}


/* Tooltip text */

.tool_tip .tooltiptext {
    visibility: hidden;
    width: 210px;
    background-color: rgb(59 62 153 / 94%);
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 32%;
    margin-left: -60px;
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 18px;
}


/* Tooltip arrow */

.tool_tip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}


/* Show the tooltip text when you mouse over the tooltip container */

.tool_tip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Contato
--------------------------------------------------------------*/

.contato {
    padding-bottom: 55px;
}

h5[onclick] {
    cursor: pointer;
}

.contato .info {
    padding: 30px;
    background: #fff;
    width: 100%;
    border: 2px solid #e9ecee;
    border-radius: 4px;
}

.contato .info i {
    font-size: 20px;
    color: #009cea;
    float: left;
    width: 44px;
    height: 44px;
    background: #f2f4f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contato .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #364146;
}

.contato .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #627680;
}

.contato .info .social-links {
    padding-left: 60px;
}

.contato .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contato {
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(1, 46, 114, 0.66), rgb(59 62 153 / 93%)), url(../img/cotacao.jpg) center center;
    padding: 50px 0px 50px 0px;
    background-size: cover;
    background-attachment: fixed;
}

.contato-fc {
    display: flex;
    align-items: center;
    background: linear-gradient(rgb(32 191 85 / 66%), rgb(59 62 153 / 93%)), url(../img/cotacao.jpg) center center!important;
    padding: 20px 0px 35px 0px;
    background-size: cover;
    background-attachment: fixed;
}

.titulo-contato {
    font-size: 28px;
    color: rgb(255 255 255);
    font-weight: bold;
    font-family: Raleway, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    background: #011960;
    margin-bottom: 0;
    width: 79%;
    margin: 0 auto;
    border-radius: 15px 15px 0px 0px;
    padding: 10px;
}

#contatos {
    display: flex;
    align-items: center;
}

#numeros {
    background: #fff;
    color: #001E77;
    padding-bottom: 10px;
}

.header-contato h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 38px;
}

.section-contato {
    text-align: left;
    padding-bottom: 30px;
    color: #ffffff;
    background: #001e77;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-contato h4 {
    margin-bottom: 0;
    font-weight: bold;
    font-size: 21px;
}

.contato .info .social-links a:hover {
    background: #009cea;
    color: #fff;
}

.deixar-mensagem {
    color: #001e77;
    font-weight: bold;
}

.notbg {
    background: inherit;
    padding-top: 0;
    padding-bottom: 50px;
}

.alinhamento {
    display: flex;
    align-items: center;
}

.contato .info .email:hover i,
.contato .info .address:hover i,
.contato .info .phone:hover i {
    background: #009cea;
    color: #fff;
}

.contato .formulario {
    width: 100%;
    padding: 25px;
    background-color: rgb(11 205 106 / 75%);
    border-radius: 4px;
    box-shadow: 0px 5px 15px 10px rgb(0 0 0 / 30%);
}

.contato .formulario .form-group {
    padding-bottom: 8px;
    margin-bottom: 0;
}

.contato .formulario .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contato .formulario .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contato .formulario .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contato .formulario .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contato .formulario .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contato .formulario p {
    color: #062274;
    font-weight: 500;
}

.contato .formulario label {
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 500;
}

.contato .formulario input,
.contato .formulario textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contato .formulario input {
    height: 35px;
}

.contato .formulario textarea {
    padding: 10px 12px;
}

.contato .formulario button[type="button"] {
    background: #062274;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contato .formulario button[type="button"]:hover {
    background: #0d40da;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Formulario
--------------------------------------------------------------*/

.form-control-select.is-invalid,
.was-validated .form-control-select:invalid {
    background-position: right calc(.9em + .3rem) center;
}


/*--------------------------------------------------------------
# Preco
--------------------------------------------------------------*/

.preco .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e9ecee;
}

.preco .box h3 {
    font-weight: 400;
    padding: 20px 15px;
    font-size: 30px;
    color: #062274;
}

.preco-green {
    color: #7AAB41!important;
}

.preco-red h4 {
    color: #CC3438!important;
}

.preco h4 {
    font-size: 36px;
    color: #009cea;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.preco h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.preco h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.preco ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.preco ul li {
    padding-bottom: 16px;
}

.preco ul i {
    color: #009cea;
    font-size: 18px;
    padding-right: 4px;
}

.preco ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.preco .btn-wrap {
    padding: 20px 15px;
    text-align: center;
}

.preco .btn-buy {
    background: #009cea;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.preco .featured {
    background: #009cea;
    border-color: #009cea;
}

.preco .featured h3,
.preco .featured h4,
.preco .featured h4 span,
.preco .featured ul,
.preco .featured ul .na {
    color: #fff;
}

.preco .featured .btn-buy {
    background: #fff;
    color: #009cea;
}

.preco .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #98d135;
    color: #fff;
}

.mensalidade {
    font-family: Raleway;
    font-size: 29px !important;
    font-weight: 600 !important;
    padding: 20px 15px 0px !important;
}


/*--------------------------------------------------------------
# Lista Horizontal
--------------------------------------------------------------*/

.sessao_lista_horizontal .parceiro-item {
    box-sizing: content-box;
    padding-right: 10px;
}

.sessao_lista_horizontal .owl-nav,
.sessao_lista_horizontal .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.sessao_lista_horizontal .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.sessao_lista_horizontal .owl-dot.active.dot-red {
    background-color: #CC3438!important;
}

.sessao_lista_horizontal .owl-dot.active.dot-green {
    background-color: #7AAB41!important;
}

.sessao_lista_horizontal .owl-dot.active.dot-blue {
    background-color: #062274!important;
}

.sessao_lista_horizontal .owl-dot:focus {
    border: #fff;
}


/*@media (max-width: 767px) {
  .sessao_lista_horizontal {
     margin: 30px 10px; 
  }
}*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background-color: #062274;
    color: #fff;
    padding: 0 0 25px 0;
    font-size: 12px;
}

.footer-green {
    background-color: #7AAB41!important;
    color: #fff;
    padding: 0 0 25px 0;
    font-size: 12px;
}

.footer-red {
    background-color: #cc3438!important;
    color: #fff;
    padding: 0 0 25px 0;
    font-size: 12px;
}

#footer .copyright {
    text-align: center;
    padding-top: 25px;
}

@media screen and (max-width: 768px) {
    #footer {
        font-size: 10px;
    }
}


/*--------------------------------------------------------------
# ALINHAMENTO CAPTCHA
--------------------------------------------------------------*/

.g-recaptcha {
    width: 302px;
    margin: auto;
}

@media screen and (min-width:370px) and (max-width:480px) {
    .g-recaptcha {
        width: 302px;
        margin: auto;
        transform: scale(0.8);
    }
}

@media screen and (min-width:300px) and (max-width:370px) {
    .g-recaptcha {
        width: 302px;
        margin: auto;
        transform: scale(0.75);
        position: relative;
        right: 8%;
    }
}


/*--------------------------------------------------------------
# CONTROLE DE ERROS
--------------------------------------------------------------*/

.invalid-feedback {
    font-size: 75%;
    color: #7a2613;
}


/*--------------------------------------------------------------
# MODAL
--------------------------------------------------------------*/

.modal-danger .modal-footer,
.modal-danger .modal-header {
    border-color: rgba(255, 255, 255, .075);
}

.modal-header {
    align-items: baseline;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.modal-header {
    display: flex;
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.modal-danger .modal-title {
    color: #fff;
}

.modal-title {
    line-height: 1.1;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
}

.modal-danger .close>span:not(.sr-only) {
    color: #fff;
}

.close:focus span:not(.sr-only),
.close:hover span:not(.sr-only) {
    background-color: transparent;
}

.close>span:not(.sr-only) {
    font-size: 1.25rem;
    line-height: 17px;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    transition: all .15s ease;
    color: rgba(0, 0, 0, .6);
    border-radius: 50%;
    background-color: transparent;
}

.btn-white:not(:disabled):not(.disabled).active,
.btn-white:not(:disabled):not(.disabled):active,
.show>.btn-white.dropdown-toggle {
    color: #212529;
    border-color: #fff;
    background-color: #e6e6e6;
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    box-shadow: none;
}

.modal-danger .modal-footer,
.modal-danger .modal-header {
    border-color: rgba(255, 255, 255, .075);
}

.modal-footer {
    display: flex;
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
    align-items: center;
    justify-content: flex-end;
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px);
}

.modal-danger .modal-content {
    color: #fff;
    background-color: #f5365c;
}

.modal-content {
    border: 0;
    border-radius: .3rem;
}