.acordeon {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 1.5rem;
    border: 1px solid #fff;
    border-radius: 1rem;
    transition: 1.25s;
}

.acordeon.open,
.acordeon:hover {
    background-color: #55569E;
    border-color: #55569E;
    box-shadow: 0px 0px 1rem 0.2rem #494a8f80;
}

.acordeon .trigger {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #fff;
    border: none;
}

.acordeon .trigger h2 {
    margin: 0;
    font-size: 1.5rem;
    text-align: start;
}

.acordeon .trigger:hover {
    cursor: pointer;
}

.acordeon .trigger::after {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icons/arrow-top.svg');
    transition: .7s;
}

.acordeon.open .trigger::after {
    transform: rotate(180deg);
    transition: 0.7s;
    overflow: hidden;
}

.acordeon .content {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: opacity .25s ease-in-out;
    transition: 0.75s;
}

.acordeon.open .content {
    display: block;
    padding: 0 1rem 1rem 2rem;
    height: auto;
    opacity: 1;
    transition: 1.25s;
}

.acordeon.open .content::after {
    display: block;
    padding: 0 1rem 1rem 2rem;
    height: auto;
    opacity: 1;
    transition: 1.25s;
}