.often-questions {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #F6F6F6;
}
.title-often{
    height: 30%;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title-often h3 {
    font-size: 180%;
    text-align: center;
    text-transform: uppercase;
}
.quest1 {
    width: 90%;
    height: 10%;
    border-radius: 8px;
    background-color: #fff;
    transition: height .2s;
    overflow: hidden;
}
.quest-slide {
    height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.quest-information {
    height: 40%;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.quest-information p {
    font-size: 80%;
}
.quest1:hover .open-quest {
    transform: rotate(45deg); /* Define a rotação no hover */
    transition: transform 0.3s ease-in-out; /* Adiciona uma transição suave */
}
.open-quest {
    width: 10%;
    font-size: 160%;
    color: #B4BBC5;
    font-weight: 300;
}
.quest1:hover {
    background-color: #2A6AA1;
    height: 40%;
    align-items: flex-start;
    color: #FFFFFF;
    transition: height .2s;
}
.answer {
    height: 40%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70%;    
}

@media (min-width: 840px){
    .often-questions {
    height: 140vh;
}
    .quest1 {
        width: 80%;
        height: 8%;
        border-radius: 8px;
        background-color: #fff;
        transition: height .2s;
        overflow: hidden;
    }
    .quest-information {
        height: 40%;
        width: 90%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .quest-information p {
        font-size: 160%;
    }
    .quest1:hover .open-quest {
        transform: rotate(45deg); /* Define a rotação no hover */
        transition: transform 0.3s ease-in-out; /* Adiciona uma transição suave */
    }
    .open-quest {
        width: auto;
        font-size: 160%;
        color: #B4BBC5;
        font-weight: 300;
    }
    .title-often h3 {
        font-size: 260%;
    }
    .title-often p {
        font-size: 140%;
    }
    .answer {
        font-size: 140%;
    }
}