.figure-titulo-quemsomos {
    width: 100%;
    display: flex;
}

.figure-titulo-quemsomos img {
    width: 100%;
}


.mw-page-expediente{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.Expediente {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 600px;
}

.expediente-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}
.Expediente h1 {
    font-family: "Poppins-Bold";
    font-size: 25px;
    font-weight: 600;
    color: #202020;
}

.line {
    border-top: 1px solid #202020;
    margin: auto;
}

.expediente-info h2 {
    font-family: "Poppins-Bold";
    font-size: 20px;
    font-weight: 600;
    color: #202020;
    display: inline;
}

.expediente-info span {
    font-size: 18px;
    font-family: "Poppins-Bold";
    color: #202020;
    display: inline;
}

.Expediente figure {
    width: 100%;
    min-height: 500px;
}

.Expediente figure img {
    width: 500px;
    opacity: 0.5;
    position: absolute;
    top: 175px;
    right: 0;
    transform: translate(60%);
}

.expediente-info div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

/* REPONSIVIDADE */
@media (max-width:1000px) {
    .Expediente figure img{
        width: 350px;
    }
    .Expediente figure {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .Expediente {
        flex-direction: column;
    }

    .expediente-text-content {
        width: 100%;
        margin-left:-80px;
    }

    .line {
        width: 100%;
    }

    .expediente-info div {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .Expediente figure img {
        top: 60%;
        right: 0;
        transform: none;
        width: 300px;
    }

    .Expediente figure {
        min-height: 300px;
    }
    .expediente-info span{
        text-align: center;
    }
    .expediente-info h2{
        text-align: center;
    }
}