.sobre {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
}

.img-fluid {
    max-width: 400px;
    box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.445);
    margin-top: 40px;
    margin: 0 auto;
}

.sobre-dir {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.text-sobre {
    color: #674188;
    text-align: left;
    font-weight: 700;
    font-size: 35px;
}

.p-sobre {
    color: black;
    text-align: left;
    max-width: 450px;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 7px;
}

.underline {
    border-bottom: 3px solid #674188;
    width: 270px;
    margin-bottom: 20px;
    text-align: left;
}


@media (max-width: 768px) {
    .sobre {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
        margin-top: -100px;
    }

    .sobre-dir {
        order: -1;
        margin-top: 50px;
        text-align: center;
    }

    .position-relative {
        order: 1;
    }

    .img-fluid {
        width: 80%;
        margin: 0 auto 20px;
    }

    .text-sobre {
        font-size: 28px;
        text-align: center;
    }

    .p-sobre {
        text-align: center;
        max-width: 80%;
        margin: 0 auto 10px;
    }

    .underline {
        width: 250px;
        margin: 0 auto 10px;
    }
}