.acordeon {
    padding: 1rem;
    list-style: none;
}

.acordeon * {
    transition: all 0.25s ease-in-out;
}

.acordeon-titulo {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    cursor: pointer;
}

.acordeon-contenido {
    overflow: hidden;
    max-height: 0;
    transform: translate(0, 0);
    padding: 0.5rem;
    visibility: collapse;
    opacity: 0;
    transform: translateX(10px);

    display: flex;
    gap: 1rem;

    transition: all 0.25s ease-in-out;
}

.acordeon-contenido>img {
    object-fit: cover;
    width: 200px;
    height: 150px;
    border-radius: 5px;
}

.acordeon-titulo-activo>i {
    transform: rotate(180deg);
}

.acordeon-contenido-activo {
    max-height: 800px;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);

    transition: all 0.25s ease-in-out;
}