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

.acordeon:hover,
.acordeon.open{
    background-color: #531fff;
    border-color: #531fff;
}

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

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


.trigger::after{
    content: '';
    display: inline-block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .5rem;
    background-size: contain;
    background-image: url('/assets/image/icons/seta.svg');
    background-repeat: no-repeat;
    transition: ease-in 0.3s;
}

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

.acordeon .content{
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition:opacity 0.5s ease-in-out;
}


.acordeon.open .content{
    display: inline-block;
    height: auto;
    opacity: 1;
    padding: 0 1rem 2rem 1rem;

}
