@import url('https://fonts.googleapis.com/css2?family=Barlow: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&family=Poppins: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');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body{
    font-size: 'Barlow';
}

/* === CLASSES PARA OS EVENTOS DE CLIQUE === */

.item-expandir{
    margin-left: 0 !important;
    transition: .5s ease;
    transform: translateX(0) !important;
}

.rodar-esquerda{
    transform: rotate(45deg);
    transition: .2s ease;
}

.rodar-direita{
    transform: rotate(-45deg);
    transition: .2s ease;
    margin-top: -10px !important;
}

.ocultar-item{
    display: none;
}

/* ===== NAVBAR ===== */
.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0px 10px;
}

.site-logo{
    padding: 5px 10px;
}

.site-logo img{
    height: 60px;
}

.menu-do-site{
    display: flex;
    flex-direction: row;
    justify-content: end;
    padding-top: 20px;
}

.menu-do-site li{
    padding: 0px 25px;
    list-style-type: none;
}

.menu-do-site li a{
    text-decoration: none;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-do-site li a:hover{
    transition: ease .2s;
    color: red;
    padding-bottom: 5px;
    border-bottom: 2px solid red;
}

.site-toggle-button{
    display: none;
}

@media(min-width:300px) and (max-width:1023px){
    .navbar{
        position: relative;
    }

    .menu-do-site{
        transform: translateX(100%);
        transition: .5s ease;
        position: absolute;
        top:11vh;
        width: 100vw;
        display: block;
        background: #fff;
        height: 80vh;
    }

    .navbar ul li{
        text-align: center;
        padding: 15px 10px;
    }

    .site-toggle-button{
        display: block;
    }

    .line-1,.line-2,.line-3{
        width: 40px;
        background: #000;
        margin: 7px;
        height: 3px;
    }

}

/* ===== HERO ===== */
.hero-site{
    background: #e4e4e4;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FAQ ===== */
.caixa-faq{
    
}
