.testimonios{
    width: 100%;
}

.testimonios-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0;
}

.testimonios-ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 0;
    list-style: none;
  
}


.testimonios-li{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(
        180deg, 
        rgba(162, 176, 251, 0.56) ,        
        rgba(217, 217, 217, 0)
      );
      padding: 10px 20px;
      border-radius: 15px;
}

.testimonios-li p{
    color: #190273;
    font-weight: 500;
    font-size: 1rem;
}

.testimonios-li span{
    color: #190273;
    font-weight: 800;
    font-size: 1rem;
}

.testimonio-imagen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(68, 82, 208, 0.4);
    padding: 30px;
    border-radius: 30px;
}

.testimonio-imagen img{
    width: 100%;
    max-width: 500px;
}

@media screen and (min-width: 768px){
    .testimonios-container{
       
        flex-direction: row;
        justify-content: space-between;
        
    }

    .testimonios-ul{
        flex: 1;
        height: 900px;
    }

    .testimonio-imagen{
        flex: 1;
    }
}