.at-home-sobre{
    padding: 150px 0;
    background-color: var(--bg-color-gray);
}
.at-home-sobre .row{
    align-items: center;
    row-gap: 50px
}
.at-home-sobre__box p{
    font-size: var(--font-size-text-big);
    margin-bottom: 30px;
}
.at-home-sobre__img{
    display: flex;
    justify-content: end;
}


/* Estilos específicos para desktops e dispositivos com telas maiores */
@media screen and (min-width: 998px) and (max-width: 1200px) {

}

/* Estilos específicos para tablets e dispositivos com telas maiores */
@media screen and (max-width: 999px) {
 
}

/* Estilos específicos para tablets e dispositivos com telas um pouco maiores */
@media screen and (min-width: 577px) and (max-width: 768px) {
 

}


/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 576px) {
    .at-home-sobre{
        padding: 50px 0 100px 0;
    }

    .at-home-sobre__img{
        justify-content: center;
    }
    
}