.imagem_texto_lateral_1{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.imagem_texto_lateral_1 .img{
	width: 100%;
	text-align: center;
	display: inline-block;
	margin-top: 30px;
	order: 1;
}
.imagem_texto_lateral_1 .img img{
	display: block;
	margin: 0 auto;
	width: 100%;
}
.imagem_texto_lateral_1 .container{
	width: 100%;
	display: block;
	overflow: 0;
}
.imagem_texto_lateral_1 .conteudo{
	width: 100%;
	display: block;
	padding: 120px 0 0 0;
}
.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;
}
.imagem_texto_lateral_1 .conteudo .texto .botoes .btn{
	display: block;
	width: max-content;
	margin: 40px auto 0 auto;
	border-radius: 30px;
	border: 2px solid var(--color-destaque);
	padding: 10px 45px;
	font-size: 14px;
	color: var(--color-destaque);
	font-weight: bold;
	background-color: transparent;
}

.imagem_texto_lateral_1 .conteudo .texto .botoes .btn:hover{
	background-color: var(--color-destaque);
	border-color: var(--color-destaque);
	color: var(--color-white);
	box-shadow: 0px 0px 5px 0px var(--color-destaque);
}

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

}

@media only screen and (min-width: 1024px) {
	.imagem_texto_lateral_1 .img{
		width: 48vw;
		margin-left: 2vw;
		margin-top: 0px;
	}
	.imagem_texto_lateral_1 .img img{
		min-height: 100%;
    	object-fit: cover;
	}
	.imagem_texto_lateral_1 .container{
		padding-right: 0;
		width: calc(50vw - 20px);
		margin: 0;
		max-width: 715px;
	}
	.imagem_texto_lateral_1 .conteudo{
		padding: 120px 0;
	}
	.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;
	}
	.imagem_texto_lateral_1 .conteudo .texto .botoes .btn:last-child{
		margin-right: 0px;
	}
}