/* =========================================
   SEÇÃO 10 — FAQ
========================================= */

.faq-section {
    position: relative;

    overflow: hidden;
/* 
    padding: 115px 0; */

    background: #ffffff;

    color: #0f1b26;
}


/* =========================================
   CABEÇALHO
========================================= */

.faq-header {
    margin-bottom: 65px;
}


.faq-eyebrow {
    color: #008679;
}


.faq-title {
    margin-bottom: 18px;

    color: #0f1b26;
}


.faq-intro {
    max-width: 650px;

    margin: 0 auto;

    color: #68777e;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   LISTA
========================================= */

.faq-list {
    border-top: 1px solid rgba(15, 27, 38, .12);
}


/* =========================================
   ITEM
========================================= */

.faq-item {
    border-bottom: 1px solid rgba(15, 27, 38, .12);
}


/* =========================================
   PERGUNTA
========================================= */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 15px 5px;

    border: 0;

    background: transparent;

    color: #0f1b26;

    text-align: left;

    cursor: pointer;
}


.faq-question:hover {
    color: #008679;
}


.faq-question-content {
    display: flex;
    align-items: center;

    gap: 20px;
}


/* =========================================
   ÍCONE ?
========================================= */

.faq-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf9f7;

    color: #008679;

    font-size: 17px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.faq-question:not(.collapsed) .faq-icon {
    background: #02beb2;

    color: #0f1b26;

    transform: rotate(5deg);
}


/* =========================================
   TEXTO
========================================= */

.faq-question-text {
    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================
   SETA / PLUS
========================================= */

.faq-arrow {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #008679;

    font-size: 14px;

    transition:
        transform .35s ease,
        background .3s ease;
}


.faq-question:not(.collapsed) .faq-arrow {
    background: #eaf9f7;

    transform: rotate(45deg);
}


/* =========================================
   RESPOSTA
========================================= */

.faq-answer {
    padding-left: 60px;
}


.faq-answer-inner {
    max-width: 750px;

    padding: 0 45px 28px 0;

    color: #68777e;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 767.98px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-header {
        margin-bottom: 45px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question-content {
        gap: 14px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer {
        padding-left: 54px;
    }

    .faq-answer-inner {
        padding-right: 20px;

        font-size: 14px;
    }

}


@media (max-width: 575.98px) {

    .faq-section {
        padding: 65px 0;
    }

    .faq-intro {
        font-size: 15px;
    }

    .faq-question {
        gap: 12px;
    }

    .faq-question-content {
        gap: 12px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;

        font-size: 15px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-arrow {
        width: 30px;
        height: 30px;
    }

    .faq-answer {
        padding-left: 48px;
    }

    .faq-answer-inner {
        padding-bottom: 24px;

        font-size: 13px;
    }

}