.acordeon{
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    width: 100%;
    border: 1px solid white;
    border-radius: 1rem;
    transition: .25s;
   
}
.acordeon.open,
.acordeon:hover{
    background-color: #55569e;
    border-color: #55569e; 
}

.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: white;
    border: none;
   
}
.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('../imgs/icons/arrow-down.svg');
    transition: .4s;

}
.acordeon.open .trigger::after{
transform: rotate(180deg);
}

.acordeon .content{
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: opacity .25s ease-in-out;
    
}
.acordeon.open .content{
    display: block;
    height: auto;
    opacity: 1;
    padding: 0 1rem 1rem 2rem;
}
