* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Circular Std', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    margin-left: 20%;
    margin-right: 20%;
}

.conteudo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.titulo {
    margin-bottom: 16px;
    padding: 10px;
    background-color: aliceblue;
}

.imagem {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.imagem img {
    width: 100%;
    border-radius: 10px;
}

.bloco {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bloco_vert {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.texto_vert {
    width: 50%;
}

.imagem_vert {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 50%;
}

.imagem_vert img {
    width: 100%;
    border-radius: 10px;
}

.bloco_invert {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.texto_invert {
    width: 50%;

}

.imagem_invert {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 50%;
}

.imagem_invert img {
    width: 100%;
    border-radius: 10px;
}


@media only screen and (max-width: 1000px) {
    .container {
        margin-left: 2%;
        margin-right: 2%;
    }

    .bloco_vert {
        flex-direction: column;
    }

    .imagem_vert {
        width: 100%;
    }

    .texto_vert {
        width: 100%;
    }

    .bloco_invert {
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .imagem_invert {
        width: 100%;
    }


    .texto_invert {
        width: 100%;
    }
}