.smartKids{
    width: 100%;
    background: linear-gradient(
        180deg, 
        rgba(194, 252, 234, 0.6377) ,      
        rgba(217, 217, 217, 0)         
      );

}

.smartKids-container{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 0;
}

.smartKids-container img{
    width: 100%;
    max-width: 500px;
}

.smartKids-texto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.smartKids-texto h2{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: center;
    gap: 1rem;
    color: #180270;
    font-size: 1.8rem;
    text-align: center;
}

.smartKids-texto h2 img{
    width: 100%;
    max-width: 50px;
}

.smartKids-texto p{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: center;
    gap: 1rem;
    color: #180270;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    
}

@media screen and (min-width: 768px){
    .smartKids-container{
        flex-direction: row;
    }
    .smartKids-container img{
        flex: 1;
        width: 400px;
    }
    .smartKids-texto{
        flex: 1;
    }
}