/* =========================================================
   FAQ - PERGUNTAS FREQUENTES
   ========================================================= */

.faq-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 40px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Título */

.faq-title {
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #080808;
}

/* Container */

.faq-container {
    width: 100%;
}

/* Item */

.faq-item {
    width: 100%;
    border-bottom: 1px solid #d9dce1;
}

/* Pergunta */

.faq-question {
    width: 100%;
    min-height: 94px;
    padding: 20px 0;
    margin: 0;
    border: 0;
    outline: none;
    background: transparent;

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

    text-align: left;
    cursor: pointer;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #080808;

    -webkit-appearance: none;
    appearance: none;
}

/* Texto da pergunta */

.faq-question span:first-child {
    padding-right: 30px;
}

/* Seta */

.faq-arrow {
    position: relative;
    flex-shrink: 0;

    width: 9px;
    height: 9px;

    margin-right: 7px;

    border-right: 1.8px solid #1a4385;
    border-bottom: 1.8px solid #1a4385;

    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Seta quando aberto */

.faq-item.active .faq-arrow {
    transform: rotate(225deg);
}

/* Resposta */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.3s ease;
}

/* Conteúdo da resposta */

.faq-answer p {
    overflow: hidden;

    margin: 0;
    padding: 0;

    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    color: #555;
}

/* FAQ aberto */

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding: 0 0 25px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 767px) {

    .faq-section {
        padding: 10px 20px 30px;
    }

    .faq-title {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .faq-question {
        min-height: 75px;
        padding: 18px 0;

        font-size: 13px;
    }

    .faq-question span:first-child {
        padding-right: 20px;
    }

    .faq-arrow {
        width: 8px;
        height: 8px;
        margin-right: 5px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.6;
    }

}