.faq {
    background: var(--cinza-claro);
}

.faq-container {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--borda);
    border-radius: 15px;
    background: var(--branco);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    border: 0;
    display: flex;
    justify-content: space-between;
    background: transparent;
    color: var(--azul-marinho);
    text-align: left;
    font-weight: 900;
    cursor: pointer;
}

.faq-question span {
    color: var(--laranja);
    font-size: 1.35rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--cinza);
}

.faq-item.active .faq-answer {
    max-height: 160px;
}
