/* ------ Sobre ------ */

.sobre {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 36rem;
}

.sobre-texto {
    display: flex;
    flex-direction: column;
    width: 50%;
    font-size: 1rem;
    margin-top: 1rem;
}

.imagem-sobre {
    object-fit: cover;
    width: 22rem;
    height: 17rem;
    margin-right: 3rem;
    object-position: top;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

.proposito {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.proposito-info {
    display: flex;
    flex-direction: column;
}

/*RESPONSIVIDADE*/

/* Telas médias (tablets) */
@media (max-width: 992px) {

    .proposito-info {
        margin-left: 1rem;
    }

    .imagem-sobre {
        object-fit: cover;
        width: 22rem;
        height: 17rem;
        margin-right: 3rem;
    }

}

/* Telas médias (tablets) */
@media (max-width: 490px) {

    .sobre {
        height: 28rem;
    }

    .sobre-texto h2 {
        align-items: center;
        justify-content: center;
    }
    
    .imagem-sobre {
        display: none;
    }

    .sobre-texto {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 1rem;
}
}