@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

.overflox-x-hidden {
    overflow-x: hidden;
}

.azul-escuro {
    color: #141e32;
}

.laranja {
    color: #ca9e67;
}

.bg-azul-escuro {
    background-color: #141e32;
}

.bg-laranja {
    background-color: #ca9e67;
}

.img-sombra {
    box-shadow: -7px 10px 12px 3px #1a2b47;
}

.btn-azul-escuro {
    /* tem que se um linear gradient do azul claro para o #101734; */
    background-color: #101734;
    background-image: linear-gradient(90deg, #101734 0%, #0039d6 100%);
    color: #fff;
}

.btn-azul-escuro:hover {
    background-color: #1b275a;
    color: #fff;
}

.btn-laranja {
    background-color: #ca9e67;
    color: #fff;
}

.btn-laranja:hover {
    background-color: #d9b37b;
    color: #fff;
}

.bg-verde-agua {
    background-color: #65cfa9;
}

.bg-ondas-3 {
    background-image: url(../img/ondas3.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
}

.bg-ondas-2 {
    background-image: url(../img/ondas2.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
}

.bg-ondas-1 {
    background-image: url(../img/ondas1.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
}

.bg-fundo-1 {
    background-image: url(../img/fundo1.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
}

.bg-fundo-2 {
    background-image: url(../img/fundo2.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
}

.grecaptcha-badge {
    display: none;
}

@keyframes moveBackground {
    0% {
        background-position: -100px 0;
    }

    50% {
        background-position: -50px -150px;
    }

    100% {
        background-position: -100px 0;
    }
}

.btn-fixo-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 45px;
    height: 45px;
    border-radius: 25px;
    background-color: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    text-decoration: none;
}


.btn-fixo-wpp:hover {
    background-color: #17853f;
    color: #fff;
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

/* BOOTSTRAP OVERRIDES */

.nav-link {
    border-bottom: 1px solid transparent;
    transition: border-bottom .3s ease-in-out;
    font-size: 14px !important;
    color: #fff !important;
    width: auto !important;
    margin: 0 10px !important;
    cursor: pointer !important;
}

.nav-link:hover {
    border-bottom: 1px solid #fff;
    cursor: pointer !important;
}

.circulo-30 {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.text-azul {
    color: #001f74;
}

iframe {
    width: 100% !important;
}

.sombra-small {
    box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
}

.bg-cinza {
    background-color: #dbdbdb;
}

.bg-mobile-light {
    background-color: transparent;
}


/* maior de 992 */
@media (max-width: 992px) {
    .bg-mobile-light {
        background-color: #ffffff;
    }
}