.alumnosRecomendan{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 50px;
    border-radius: 30px;
    margin-top: 50px;
    background: rgba(204, 153, 153, 0.10);


}

.alumnosRecomendan-info{
    display: flex;
    flex-direction: column;
    align-items: center;
   text-align: center;
    padding: 55px;
    gap: 1rem;
    
}

.alumnosRecomendan-info h3{
    font-weight: 600;
    font-size: 1.5em;
}

.alumnosRecomendan-info p{
    font-weight: 500;
    font-size: 1em;
}

.alumnosRecomendan-info span{
    font-weight: 500;
    font-size: 1em;
}
.alumnosRecomendan-img {
    display: flex;
    justify-content: center;
    align-items: center;
}


.alumnosRecomendan-img img{
    width: 100%;
    max-width: 300px;
}


@media screen and (min-width: 992px){
    .alumnosRecomendan{
        flex-direction: row;
    }

    .alumnosRecomendan-img img{
        width: 400px;
        display: block;
    }

    .alumnosRecomendan-img img:hover{
        transition: 1s all;
        transform: scale(1.01) ;
     }
}