.imagem_texto_lateral_2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
}

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

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

.imagem_texto_lateral_2 .container {
	width: 100%;
	display: block;
}

.imagem_texto_lateral_2 .conteudo .texto {
	width: 100%;
	display: inline-block;
	order: 1;
	padding: 50px 0 120px 0;
}

.imagem_texto_lateral_2 .conteudo .texto .titulo_principal {
	margin-bottom: 50px;
}

.imagem_texto_lateral_2 .conteudo .texto .itens {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 30px;
	margin: 50px 0;
	flex-wrap: wrap;
}

.imagem_texto_lateral_2 .conteudo .texto .itens .item {
	border: 1px solid #e6e6e6;
	width: calc(50% - 15px);
	aspect-ratio: 1;
	flex-direction: column;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.imagem_texto_lateral_2 .conteudo .texto .itens .item h2 {
	font-family: var(--font-family-bold);
	font-size: 30px;
	display: flex;
}

.imagem_texto_lateral_2 .conteudo .texto .itens .item p {
	text-align: center;
	font-size: 14px;
}

@media only screen and (min-width: 768px) {
	.imagem_texto_lateral_2 .conteudo .texto .itens .item {
		width: calc(33.333% - 20px);
	}
}

@media only screen and (min-width: 1200px) {
	.imagem_texto_lateral_2 {
		flex-direction: row;
		justify-content: flex-start;
		align-items: stretch;
	}

	.imagem_texto_lateral_2 .img {
		width: 48vw;
		margin: 0px;
		margin-right: 2vw;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		position: relative;
	}

	.imagem_texto_lateral_2 .img img {
		object-fit: cover;
		position: absolute;
		min-height: 100%;
		max-height: 100%;
		object-position: center right;
	}

	.imagem_texto_lateral_2 .container {
		width: calc(50vw - 50px);
		max-width: 745px;
		margin: 0;
	}

	.imagem_texto_lateral_2 .conteudo .texto .btn {
		margin: 50px 0 0 0;
	}



	.imagem_texto_lateral_2 .conteudo .texto .itens .item h2 {
		font-size: 48px;
	}

}