.history {
	padding: 50px 20px;
	background-color: #f9f9f9;
}

.content-container {
	max-width: 1200px;
	margin: 0 auto;
}

.history-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	justify-content: space-between;
}

.history-item:nth-child(odd) .history-text {
	order: 1;
}

.history-item:nth-child(odd) .history-image {
	order: 2;
}

.history-item:nth-child(even) .history-text {
	order: 2;
}

.history-item:nth-child(even) .history-image {
	order: 1;
}

.history-text {
	flex: 1;
	padding: 20px;
}

.history-image {
	flex: 1;
	text-align: center;
}

.history-image img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.history-text h2 {
	color: #241c4b;
	font-size: 2em;
	margin-bottom: 20px;
}

.history-text p {
	color: #333;
	font-size: 1.1em;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.history-item {
		flex-direction: column;
	}

	.history-text, .history-image {
		text-align: center;
	}
	
	.history-image {
		flex: 1 1 100%;
	}
}

/* Responsividade para telas muito pequenas (mobile) */
@media (max-width: 480px) {
	.history {
		padding: 0px 20px;
	}
	.history-item {
		margin-bottom: 0px;
	}
	.history-text {
		padding: 0px;
	}
	.history-text h2 {
		font-size: 1.5em;
	}
	.history-text p {
		font-size: 0.8em;
		text-align:justify;
	}
}