.faq {
    padding: 60px 8px;
    width: calc(100% - 16px);

    background-image: url("../img/background-faq.webp");
    background-repeat: no-repeat;
    background-size: auto 600px;
    background-position: center 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq__title {
    font-size: 28px;
    text-transform: capitalize;
    text-align: center;

    color: #535353;
}

.faq__subtitle {
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    color: #535353;

    max-width: 445px;

    margin-bottom: 20px;
}

.faq__perguntas {
    font-size: 18px;

    width: 95%;
    max-width: 700px;
}

.faq__perguntas-item {
    border-bottom: 1px solid #F29979;
}

.faq__perguntas-item__pergunta {
    user-select: none;
    cursor: pointer;

    list-style: none;
    
    color: var(--roxo);

    font-family: var(--font);
    font-size: 18px;
    font-weight: bold;

    padding: 20px 50px 20px 20px;

    color: #6E6E6E;

    position: relative;
}

.faq__perguntas-item__pergunta::after {
    position: absolute;
    right: 20px;
    top: 50%;
    content: "";

    transform: translateY(-50%);

    width: 20px;
    height: 20px;

    background: url('../img/icon_add.webp') no-repeat center;
    background-size: contain;
}

.faq__perguntas-item[open] .faq__perguntas-item__pergunta::after {
    background: url('../img/icon_remove.webp') no-repeat center;
}

.faq__perguntas-item__resposta {
    color: #535F68;
    padding: 10px 20px;
}

.faq__perguntas-item p {
    text-indent: 20px;
}


@media screen and (max-width: 768px) {
    /* Texto */
    .faq__title {
        font-size: 24px;
        max-width: 350px;
    }

    .faq__subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    /* Texto */
    .faq__title {
        font-size: 22px;
    }

    .faq__subtitle {
        font-size: 18px;
    }
}