@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;
}

.pele {
    color: #f6bdaa;
}

.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;
}

.btn-rosa {
    background-color: #993175;
    color: #fff;
}

.btn-rosa:hover {
    background-color: #b34b8c;
    color: #fff;
}

.btn-vermelho {
    background-color: #990E1F;
    color: #fff;
}

.vermelho {
    color: #990E1F;
}

.btn-vermelho:hover {
    background-color: #b31a2f;
    color: #fff;
}

.btn-pele {
    background-color: #f6bdaa;
    color: #101734;
}

.btn-pele:hover {
    background-color: #f8c9b9;
    color: #101734;
}

.bg-pele {
    background-color: #f6bdaa;
    color: #101734;
}

.bg-vermelho {
    background-color: #990E1F;
}

.bg-verde-agua {
    background-color: #65cfa9;
}

.btn-fixo-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    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.05);
    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 #f6bdaa;
}

.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;
}

/* maior de 768 */
@media (max-width: 768px) {
    .li_banner {
        height: 80vh;
    }

    .img-banner {
        height: 100%;
        background-position: left;
    }

    .texto-banner {
        font-size: 1rem !important;
    }
}