/*acordeon*/

body{
    background-image: linear-gradient(40deg, rgb(0 0 0 / 95%), rgb(45, 78, 68, 0.95)), url("../images/papel-rasgado-partitura-2b.png");
    background-repeat: no-repeat;
    background-position: top center;
}

.fondo-academia {
    background-image: linear-gradient(40deg, rgb(0 0 0 / 95%), rgba(39, 69, 83, 0.95)), url("../images/papel-rasgado-partitura-invert4.png");
    background-repeat: no-repeat;
    background-position: top center;
}

.catalogo-obras{
    display: flex;
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem 2rem 1rem;
}

.contenedor-acordeon{
    width: 100%;
    max-width: 650px;
    margin: auto;
}

.contenedor-acordeon-title{
    display: flex;
    justify-content: space-between;
}

.contenedor-acordeon-title h2{
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: 1px;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 3rem;
    padding-bottom: 1.2rem;
}

.contenedor-acordeon-title h4{
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--extra-light);
    margin: 10px 10px 0 0;
}

.acordeon{
    margin-right: 10px;

}

.contenido-acordeon h3{
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    padding-bottom: 5px;
}

.pag-sig{
    padding: 2rem 0;
    text-align: center;
}

.acordeon span {
    margin-right: 10px;
    color: var(--secondary-color);
}

.acordeon label{
    display: flex;
    padding: 10px;
    border-right: 1px solid #36594e9c;
    border-bottom: 1px solid #36594e9c;
    color: var(--extra-light);
    border-radius: 0 0 5px 0;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 300ms ease;
    text-align: left;
    justify-content: space-between;
}

.acordeon .titulo-item {
    display: flex;
}

.acordeon .titulo-item .item1 {
    color: var(--secondary-color);
    padding-right: 6px;
}

.acordeon .titulo-item .item2 {
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.1rem;
    font-weight: 300;
}

.acordeon label:hover{
    color: var(--white);
    background: linear-gradient(to top, #36594e9c, rgba(0, 0, 0, 0));
}

.acordeon label::after{
    content: "〉";
    transition: all 0.25s;
}

.acordeon input:checked + label::after{
    transform: rotate(90deg);
}

.acordeon .contenido-acordeon{
    padding: 0px;
    margin: 0px 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 300ms ease;
}

.contenido-acordeon p{
    font-size: .9rem;
    line-height: 1.5rem;
    color: var(--extra-light);
}

.contenido-acordeon .sangria{
    text-indent: 23px;
}

.contenido-acordeon .caja-txt{
    height: 150px;
    text-indent: 30px;
    overflow-y: scroll;
    background-color: #3d645838;
    padding: 1rem;
    scrollbar-color: #3d6458 #36594e9c;
}

.btn-acordeon:checked ~ .contenido-acordeon{
    max-height: 990px;
    padding: 0 0 20px 0;
}

.contenido-acordeon hr{
    height: 1px;
    width: 100%;
    background-color: var(--background-color-2);
    border: none;
    margin-top: 20px;
}

.btn-acordeon{
    display: none;
}

/*columna lateral*/

.lateral__image {
    padding: 3rem;
}

.lateral__image img {
    max-width: 300px;
    margin-inline: auto;
    border-radius: 4px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  }


@media (max-width: 768px) {
    .contenedor-acordeon{
        width: 90%;
        margin: auto;
        padding: 2rem 0;
    }

    .lateral__image {
      display: none;
    }

}