.grid-desplegables .acordeon{
   /* margin-bottom: 70px; */
    max-width: 633px;
    transition: max-width linear 0.4s;
}
.grid-desplegables .acordeon.acordeon-activo{
    max-width: 100%;
    transition: max-width linear 0.3s;
}
.acordeon{
    width: 100%;
    overflow: hidden;
}
.acordeon-titulo{
    position: relative;
    padding-bottom: 15px;
}
.acordeon-titulo::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #589CBC 0%, #EE5B91 53.02%, #F5CA32 100%);
}
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo{
    padding-right: 40px;
}
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo > p:first-child,
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h1:first-child,
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h2:first-child,
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h3:first-child,
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h4:first-child,
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h5:first-child,
.bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h6:first-child{
    display: block;
    max-width: 823px;
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 0;
}
.acordeon-descripcion{
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    will-change: max-height;
    transition: all 0.25s ease-out;
    opacity: 0;
}
.acordeon-titulo > p:last-child{
    margin-bottom: 0;
}
.acordeon-activo .acordeon-descripcion{
    padding: 15px;
    opacity: 1;
}
.bloque-desplegable-texto .acordeon-descripcion .descripcion{
    max-width: 921px;
}
.bloque-desplegable-texto .acordeon .masmenos{
    position: absolute;
    top: calc(50% - 16px);
    right: 0;
    width: 16px;
    height: 16px;
}
.acordeon.acordeon-activo .masmenos:before{
  transform: translateY(-50%) rotate(-90deg);
  opacity: 0;
}
.acordeon.acordeon-activo .masmenos:after{
  transform: translateY(-50%) rotate(90deg);
}
.acordeon .masmenos:before, 
.acordeon .masmenos:after{
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.35s;
  width: 2px;
  height: 16px;
}
.acordeon .masmenos:before{
  transform: translatey(-50%);
}
.acordeon .masmenos:after{
  transform: translatey(-50%) rotate(90deg);
}
/* Pantallas pequeñas */
@media only screen and (max-width: 1270px){
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo{
        font-weight: 700;
        font-size: 16px;
        line-height: 26px;
        padding-right: 20%;
    }
    .bloque-desplegable-texto .acordeon .masmenos{
        top: 0;
    }
    .grid-desplegables .acordeon{
        position: relative;
        margin-bottom: 30px;
    }
    .grid-desplegables .acordeon::after{
        content: "";
        position: absolute;
        bottom: 0;
        height: 2px;
        width: 100%;
        background: linear-gradient(90deg, #589CBC 0%, #EE5B91 53.02%, #F5CA32 100%);
    }
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo > p:first-child,
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h1:first-child,
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h2:first-child,
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h3:first-child,
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h4:first-child,
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h5:first-child,
    .bloque-desplegable-texto .grid-desplegables .acordeon-titulo > h6:first-child{
        font-weight: 700;
        font-size: 16px;
        line-height: 19px;
    }
}