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

.acordeon.open,
.acordeon:hover{
    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: .650rem 2rem;
    background-color: transparent;
    color: #fff;
    border: none;
    font-weight: 700;
    transition: 1s;
}

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

.acordeon .trigger:hover{
    cursor: pointer;
}

.acordeon .content{
    display: none;
    padding: 1rem;
}

.acordeon.open .content{
    display: inline-block;
}