/* Estilo automático para a página: minha-casa-minha-vida */
section.form {
    h2 {
        margin-bottom: 32px;
    }
    h3 {
        margin-bottom: 28px;
        color: var(--roxo);
        font-weight: 600;
    }
}

section.renda {
    span {
        width: fit-content;
        color: var(--laranja);
        font-weight: 600;
        font-size: 16px;
        line-height: 120%;
        border-radius: 80px;
        background-color: #FFE7D6;
        padding: 10px 22px;
    }
    h2 {
        color: var(--roxo);
    }
    h4 {
        font-weight: 500;
        font-size: 14px;
        line-height: 135%;
        color: var(--laranja);
    }
}

.h-available {
    height: -webkit-fill-available;
}

/* Limita pergunta */
.faq-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Container colapsável */
.faq-collapse {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Estado aberto */
.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}