.faq {
    width: 100%;
    padding: 65px 0 90px;
    background-color: #fff;
}

.faq .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq .conteudo {
    width: 100%;
}

.faq .texto {
    width: 100%;
    max-width: 1050px;
    margin-bottom: 30px;
}

.faq .texto .titulo_principal {
    position: relative;
    display: inline-block;
    margin: 0 0 16px;
    padding: 0 45px 8px 0;
    color: var(--color-destaque);
    line-height: 1.1;
    width: max-content;
    max-width: 100%;
}

.faq .texto .titulo_principal b {
    color: inherit;
}

.faq .texto .titulo_principal::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #f2c500;
}

.faq .texto>.descricao_principal {
    width: 100%;
    max-width: 1000px;
}

.faq .texto>.descricao_principal p {
    color: #5d6265;
    line-height: 1.5;
}

.faq .itens {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.faq .itens>.item {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .055);
    overflow: hidden;
    transition: box-shadow .3s ease, border-color .3s ease;
}

.faq .itens>.item:hover {
    border-color: rgba(0, 91, 61, .15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .075);
}

.faq .itens>.item.active {
    border-color: rgba(0, 91, 61, .12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
}

.faq .itens>.item>.titulo {
    position: relative;
    display: flex;
    font-family: var(--font-family-bold);
    color: var(--color-destaque);
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 50px 12px 24px;
    cursor: pointer;
    user-select: none;
    transition: background-color .25s ease;
}

.faq .itens>.item>.titulo:hover {
    background-color: rgba(0, 91, 61, .015);
}

.faq .itens>.item>.titulo::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    color: var(--color-destaque);
    background-color: #f2c500;
    border-radius: 50%;
    font-weight: 700;
    line-height: 1;
    transition:
        transform .25s ease,
        background-color .25s ease;
}

.faq .itens>.item.active>.titulo::after {
    content: "−";
}

.faq .itens>.item>.descricao_principal {
    width: 100%;
    max-height: 0;
    padding: 0 24px;
    opacity: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .3s ease, padding .3s ease;
}

.faq .itens>.item.active>.descricao_principal {
    padding-top: 3px;
    padding-bottom: 20px;
    opacity: 1;
}

.faq .itens>.item>.descricao_principal p {
    width: 100%;
    max-width: 1100px;
    margin: 0;
    color: #5d6265;
    line-height: 1.55;
    text-align: left;
}

.faq .itens>.item>.titulo:focus-visible {
    outline: 2px solid var(--color-destaque);
    outline-offset: -3px;
    border-radius: 8px;
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1024px) {}

@media only screen and (min-width: 1200px) {}