.acordeon {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 1rem;
    margin: 1rem 0;
    transition: 0.5s;
}

.acordeon:hover {
    background-color: #55569E;
    border-color: #55569E;
}

.acordeon.open {
    background-color: #55569E;
    border-color: #55569E;
} 

.acordeon .trigger {
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #fff;
    font-weight: 700;
    border: none;

}

.acordeon .trigger h2 {
    margin: 0;
    font-size: 1.3rem;
}

.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/seta.svg');
    transition: .5s;

}

.acordeon.open .trigger::after {
    transform: rotate(180deg);
}


.acordeon .content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .5s ease-in-out, opacity .2s ease-in-out;
}

.acordeon.open .content{
    display: block;
    max-height: 2000px;
    padding: 0 1rem 1rem 2rem;
    opacity: 1;

} 
