.imagem_texto_lateral_1 {
	width: 100%;
	display: block;
	padding: 120px 0 150px 0;
	background-position: top left;
	background-size: cover;
	background-repeat: no-repeat;
}

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

.imagem_texto_lateral_1 .conteudo .img {
	width: 100%;
	text-align: center;
	display: inline-block;
	margin-bottom: 30px;
}

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

.imagem_texto_lateral_1 .conteudo .texto {
	width: 100%;
	display: inline-block;
}

.imagem_texto_lateral_1 .conteudo .texto .botoes {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}


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

@media only screen and (min-width: 1024px) {
	.imagem_texto_lateral_1 {
		background-size: 100% 100%;
	}

	.imagem_texto_lateral_1 .conteudo .img {
		width: 45%;
		margin-bottom: 0px;
	}

	.imagem_texto_lateral_1 .conteudo .texto {
		width: 50%;
		color: var(--color-white);
		padding-right: 50px;
	}

	.imagem_texto_lateral_1 .conteudo .texto .titulo_principal,
	.imagem_texto_lateral_1 .conteudo .texto .titulo_principal b {
		color: var(--color-white);
	}

	.imagem_texto_lateral_1 .conteudo .texto .titulo_principal b {
		font-size: 50px;
	}

	.imagem_texto_lateral_1 .conteudo .texto .botoes {
		justify-content: flex-start;
		align-items: center;
		flex-direction: row;
	}

	.imagem_texto_lateral_1 .conteudo .texto .botoes .btn {
		margin: 40px 20px 0 0;
		background-color: var(--color-white);
		color: var(--color-destaque);
		border-color: var(--color-white);
	}

	.imagem_texto_lateral_1 .conteudo .texto .botoes .btn:hover {
		background-color: var(--color-destaque-2);
		color: var(--color-white);
		border-color: var(--color-destaque-2);
	}

	.imagem_texto_lateral_1 .conteudo .texto .botoes .btn:last-child {
		margin-right: 0px;
	}
}