@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;
}

.btn-fixo-wpp {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 999999999999;
    width: 55px;
    height: 55px;
    font-size: 20px;
    border-radius: 30px;
    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;
    font-size: 16px !important;
    cursor: pointer !important;
}

.nav-link:hover {
    border-bottom: 1px solid #ffd21d;
}


/* main */

.titulo-type {
    height: 200px;
}

.circulo-30 {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100% !important;
}

.sombra-small {
    box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all .3s ease-in-out;
}

.sombra-lg {
    box-shadow: 0px -5px 15px 5px rgba(0, 0, 0, 0.2);
    transition: all .3s ease-in-out;
}

.bg-cinza {
    background-color: #dbdbdb;
}

/* div-img-hover-effect */

.img-hover-zoom {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 1s ease;
    filter: brightness(90%);
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
    transition: transform 1s ease;
    filter: brightness(100%);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .titulo-type {
        height: 130px;
    }

    .btn-fixo-wpp {
        bottom: 20px;
        right: 20px;
    }
}