.faq-banner{
    background-image: url('../images/webp/bannerFaq.webp') !important;
    min-height: 617.3px;
}

h3{
    font-size: 1.6rem !important;
}

.pergunta {
    width: 100%;
    padding: 15px 0px;
    text-align: left;
    border-bottom: 2px solid #949494;
    cursor: pointer;
    display: flex;
    font-size:1.28rem;
    font-weight: 600;;
    justify-content: space-between;
    align-items: center;
}

.container-wraper{
    max-width:1000px;
}

.faq-item {
    margin-bottom: 10px;
    overflow: hidden;
}
.faqs h3{
    font-weight: 600;;
    margin-bottom:20px;
}


.pergunta::after {

    content: '\271A';
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .pergunta::after {
    transform: rotate(180deg);
}
span.info{
    display:block;
    font-size:12px;
}
.resposta {
    font-size:16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 4s ease-out;
    transition: padding 0.3s ease-out;
    padding: 0 20px;
    background-color: white;
}

.faq-item.active .resposta {
    max-height: 10000px;
    padding: 30px 20px;
}
.faqs a{
    color:black!important;
}
.faqs .container{
    padding:40px;
}