.acordeon {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: 1rem 0;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 1rem;
    transition: .25s;
    background-color: orangered;
}

.acordeon.open,
.acordeon:hover {
    background-color: orangered;
    border-color: #abc2e0;
}

.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: rgb(0, 0, 0);
    border: none;
}

.acordeon .trigger:hover {
    cursor: pointer;
}

.acordeon .trigger::after {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/arrow.svg);
    transition: .25s;
}

.acordeon.open .trigger::after {
    transform: rotate(180deg);
}

.acordeon .content {
    overflow: hidden;
    height: 0;
}

.acordeon.open .content {
    display: block;
    height: 100%;
    padding: 0 1rem 1rem 1.5rem;
}

@media (min-width: 1024px) {
    .acordeon, .aovivo{
        display: none;
    }
}