/*======================================
                DÚVIDAS
======================================*/

.duvidas{

    padding:120px 0;

    background:#F7F3EE;

}

/*======================================
                FAQ
======================================*/

.faq{

    max-width:900px;

    margin:70px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}

/*======================================
                ITEM
======================================*/

.faq-item{

    background:#FFF;

    border:1px solid rgba(184,138,74,.12);

    border-radius:20px;

    overflow:hidden;

    transition:.35s ease;

}

.faq-item:hover{

    border-color:rgba(184,138,74,.25);

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transform:translateY(-2px);

}

/*======================================
              PERGUNTA
======================================*/

.faq-question{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:26px 30px;

    cursor:pointer;

    background:transparent;

    color:var(--text);

    text-align:left;

    font-size:1.05rem;

    font-weight:600;

}

/*======================================
              BOTÃO +
======================================*/

.faq-question span{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:#F6EFE7;

    color:var(--primary);

    font-size:1.45rem;

    font-weight:500;

    transition:.35s ease;

}

/*======================================
                RESPOSTA
======================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 28px;

    color:var(--text-light);

    font-size:1rem;

    line-height:1.9;

}

/*======================================
              ATIVO
======================================*/

.faq-item.active{

    border-color:rgba(184,138,74,.25);

    box-shadow:0 14px 35px rgba(0,0,0,.05);

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question span{

    background:var(--primary);

    color:#FFF;

    transform:rotate(45deg);

}

/*======================================
            RESPONSIVO
======================================*/

@media(max-width:768px){

    .duvidas{

        padding:90px 0;

    }

    .faq{

        margin-top:55px;

    }

    .faq-question{

        padding:22px;

        font-size:1rem;

    }

    .faq-question span{

        width:36px;

        height:36px;

        font-size:1.3rem;

    }

    .faq-answer p{

        padding:0 22px 22px;

        font-size:.96rem;

    }

}

@media(max-width:480px){

    .faq-question{

        font-size:.95rem;

        gap:15px;

    }

    .faq-question span{

        width:34px;

        height:34px;

        font-size:1.15rem;

    }

}