@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: #101734;
}

.laranja {
    color: #ca9e67;
}

.bg-azul-escuro {
    background-color: #101734;
}

.bg-laranja {
    background-color: #ca9e67;
}

.btn-azul-escuro {
    background-color: #101734;
    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-estrelas {
    background-image: url('../img/fundo_estrelas.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.btn-fixo-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    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;
}

.img-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.li_banner {
    height: 70vh;
}

/* BOOTSTRAP OVERRIDES */

.nav-link {
    border-bottom: 1px solid transparent;
    transition: border-bottom .3s ease-in-out;
}

.nav-link:hover {
    border-bottom: 1px solid #ca9e67;
}

.circulo-30 {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100% !important;
}

.click-depoimentos {
    cursor: pointer;
}

.sombra-small {
    box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
}

.bg-cinza {
    background-color: #dbdbdb;
}

.grecaptcha-badge {
    display: none;
}

/* maior de 768 */
@media (max-width: 768px) {
    .li_banner {
        height: 80vh;
    }

    .img-banner {
        height: 100%;
        background-position: left;
    }

    .texto-banner {
        font-size: 1rem !important;
    }
}