.mentoriaUno{
    display: flex;
    flex-direction: column;
   margin-top: 70px;
    
}

.mentoriaUno-info{
    display: flex;
    flex-direction: column;
 gap: 2rem;
 padding: 0 20px;
 text-align: center;
}

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

.mentoriaUno-info p{
    font-weight: 400;
    font-size: 1.2em;
   
}
.mentoriaUno-info span{
    font-weight: 700;
   
}


.mentoriaUno-info-boton-container{
    display: flex;
    justify-content: center;
    align-items: center;

}
.mentoriaUno-info-boton{
    
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    background-color: #ABA6A6;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: #fff;
    font-weight: 700;
    font-size: 1.3em;
}

.mentoriaUno-info-boton:hover{
    opacity: 0.7;
}

.mentoriaUno-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentoriaUno-img img{
    width: 100%;
    max-width: 500px;
}




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

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

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