.faq__box h2 {
    margin-bottom: 30px;
}

.faq__list {
    list-style: none;
    margin-top: 46px;
    padding: 40px 32px;
    background-color: #fff;
    box-shadow: 0px 2px 3px rgb(0 0 0 / 10%);
    border-radius: 5px;
}

.faq__list__item {
    border-bottom: 2px solid #D0D0D0;
    padding: 16px 0px;
    cursor: pointer;

}

.faq__list__item:first-child {
    padding-top: 0;
}

.faq__list__item:last-child {
    border:0;
    padding-bottom: 0;
}

.faq__list__title {
    display: flex;
    justify-content: space-between;
    user-select: none;
}

.faq__list__item h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #282828;
    margin: 0;
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.faq__list__button {
    border: none;
    background: transparent;
}
.faq__list__item--active .faq__list__button::after,
.faq__list__item .faq__list__button::after{
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    margin: -16px 0px 0px -16px;
    transition: all 0.2s ease-in-out;
}

.faq__list__item .faq__list__button::after {
    background-image: url("../img/eleicoes-more.svg");
}

.faq__list__item--active .faq__list__button::after {
    background-image: url("../img/eleicoes-less.svg");
}

.faq__list__item:not(.faq__list__item--active) .faq__list__text {
    visibility: hidden;
    max-height: 0px;
    overflow: hidden;
}

.faq__list__text p {
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #54555E;
    margin: 13px 0 40px;
}

.faq__list__text a {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    text-decoration-line: underline;
    color: #464646;
    display: table;
    margin-bottom: 16px;
}

.faq__list__text a::after {
    content: '';
    position: absolute;
    background-image: url("../img/faq-arrow-right.svg");
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    margin-left: 8px;
}

.faq_link a {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.faq_link a:hover {
    text-decoration: underline;
}

.faq_link a::after {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../img/next-calendar.png') center center no-repeat;
}

@media (max-width: 991px) {
    .section__faq .col--9 {
        width: 100%;
        margin: 0;
    }

    .faq__list__item:last-child {
        padding-bottom: 0;
        border: none;
    }

    .faq__list__text p {
        margin: 16px 0px 10px;
    }
}
