.plataforma-inicio{
    padding: 70px 5%;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;      
    flex-direction: row-reverse;
}
.plataforma-inicio>div{
    width: 45%;
    margin: 10px 2%;    
}
.plataforma-inicio>div:first-child{
    width: 70%;
    position: relative;    
}
.img-plataforma-edu-web{
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
    transition: all .5s ease-out;
    box-shadow: 1px 1px 13px 4px rgb(32 32 32 / 30%);
}
.img-plataforma-edu-web:hover{
    transform: scale(1.04);
}
.img-plataforma-edu-movil{
    position: absolute;
    right: 3%;
    bottom: -10%;
    width: 18%;  
    height: auto;
    border-radius: 7px;  
    transition: all .5s ease-out;
}
.img-plataforma-edu-movil:hover{
    transform: scale(1.04);
}
.plataforma-inicio>div>h4{
    width: 100%;
    font-size: 35px;
    font-family: 'Titulo',acumin,sans-serif;
    margin-bottom: 30px;
    color: #202020;
    text-align: center;
    position: relative;
    z-index: 2;
}
.plataforma-inicio>div>p{
    width: 100%;
    font-size: 17px;
    font-family: 'Principal',sans-serif;
    margin-bottom: 30px;
    color: #505050;
    text-align: left;
    position: relative;
    z-index: 2;
}
.plataforma-inicio>div>a{
    background-color: #00AD50;
    color: rgba(255,255,255,1);
    font-family: 'Titulo',acumin,sans-serif;  
    font-size: 17px;
    display: flex;
    width: 30%;
    padding: 10px;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    border-radius: 1em;
    transition: all .3s ease-out;
    margin: 0px auto;
}
.plataforma-inicio>div>a:hover{
    transform: scale(1.04);    
}
@media (max-width: 800px){
    .plataforma-inicio{
        padding: 20px 5%;
        flex-wrap: wrap;
    }
    .plataforma-inicio>div{
        width: 100%;
        margin: 10px 1%;    
    }
    .plataforma-inicio>div:first-child{
        width: 100%;    
    }
    .img-plataforma-edu-web{
        width: 100%;
        height: 250px;    
        object-position: left;            
    }
    .img-plataforma-edu-movil{
        position: absolute;
        right: 1%;
        bottom: -10%;
        width: 22%;  
        height: auto;
        border-radius: 7px;  
        transition: all .5s ease-out;
    }
    .plataforma-inicio>div>h4{    
        font-size: 28px;    
        margin-top: 20px;
        margin-bottom: 20px;    
    }
    .plataforma-inicio>div>p{    
        font-size: 15px;    
        margin-bottom: 20px;    
    }
    .plataforma-inicio>div>a{    
        font-size: 15px;    
        width: 40%;    
    }
}