.imagem_texto {
    width: 100%;
    display: block;
    padding: 120px 0
}

.imagem_texto .conteudo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.imagem_texto .conteudo .img {
    width: 100%;
    display: block;
    margin-bottom: 25px;
}

.imagem_texto .conteudo .img img {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.imagem_texto .conteudo .texto {
    width: 100%;
    display: block;
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1024px) {
    .imagem_texto .conteudo .img {
        width: 49%;
        order: 1;
    }

    .imagem_texto .conteudo .texto {
        width: 50%;
    }
}