#sectionSobre {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
    gap: 20px;
}

#divConteudoSobre {
    width: 40%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
}


#sobreTitle{
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
}


#sobreP{
    width: 85%;
    margin-top: 15px;
    font-size: 22px;
}


#divImagemSobre {
    width: auto;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#imagemSobreSize {
    width: 500px;
    height: 500px;
    position: relative;
}

#imgSobre2 {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


@media all and (max-width: 900px) and (orientation: portrait) {
    #divConteudoSobre {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }

    #divImagemSobre {
        margin-top: 15px;
    }
    
    #imagemSobreSize {
        width: 80vw;
        height: 500px;
        position: relative;
    }
}


@media all and (max-width: 500px) and (orientation: portrait) {
    #imgSobre2 {
        object-position: 25% 50%;
    }

    #sobreP{
        font-size: 18px;
    }
    #sobreTitle{
        font-size: 36px;
    }
}


@media all and (max-width: 350px) and (orientation: portrait) {
    #sectionSobre {
        margin-bottom: 60px;
    }

    #sobreTitle{
        font-size: 30px;
    }

    #sobreP{
        font-size: 16px;
    }

    #imagemSobreSize {
        height: 350px;
    }
}