.conteudo {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	gap: 20px;
}

.conteudo_background {
	background-color: #f0f0f0;
}

.conteudo_centro {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.titulo {
	padding: 10px;
	font-size: 38px;
	text-align: center;
}

.subtitulo {
	padding: 10px;
	font-size: 22px;
	text-align: center;
}

/* títulos laterais */

.informa-left {
	display: inline-flex;
	align-items: center;
	gap: 6px;

	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;

	color: #333;

	margin-top: 12px;
	margin-bottom: 4px;

	padding-bottom: 3px;
	border-bottom: 1px solid #e5e5e5;
}

/* título central */

.informa-center {
	display: flex;
	justify-content: center;
	align-items: center;

	width: fit-content;
	margin: 20px auto 10px auto;

	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;

	color: #333;

	padding-bottom: 4px;
	border-bottom: 2px solid #e5e5e5;
}

.info_produto {
	font-size: 18px;
	padding: 15px;
}

.info_evento {
	font-size: 13px;
}

.texto {
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 15px;
}

.texto-formatado {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #333;
	text-align: justify;
	padding: 20px;
	background-color: #fafafa;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.texto-formatado p {
	margin-bottom: 1.2em;
}

.botao {
	padding: 10px 20px;
	background-image: linear-gradient(to right, rgb(0,92,197), rgb(90,20,220));
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 5px;
	transition: 0.3s ease-in-out;
}

.botao:hover {
	filter: brightness(1.08);
}

.encerrada {
	padding: 10px;
	font-size: 32px;
	text-align: center;
	width: auto;
	transition: 0.3s ease-in-out;
	background-color: #121212;
	border-radius: 10px;
	color: orange;
}

.overlay-txt {
	padding: 10px;
	font-size: 32px;
	text-align: center;
	width: auto;
	transition: 0.3s ease-in-out;
	background-color: rgba(0,0,0,0.1);
	border-radius: 10px;
}

.overlay-txt:hover {
	background-color: rgba(0,0,0,0.3);
}

.overlay {
	transform: scale(1);
	transition: 0.3s ease-in-out;
}

.overlay:hover {
	transform: scale(1.05);
}

.overlay-reverse {
	transform: scale(1);
	transition: 0.3s ease-in-out;
}

.overlay-reverse:hover {
	transform: scale(0.98);
}

.img_calendario {
	width: 100%;
	max-width: 500px;
	height: auto;
}

/* ALTERAÇÃO PRINCIPAL AQUI */

.img_desktop {
	width: 90%;
	max-width: 100%;
	height: 300px;
	object-fit: fill;
	display: block;
	margin: 0 auto;
}

.img_local {
	width: 270px;
	height: 270px;
	padding: 10px;
	object-fit: cover;
}

.img_agenda {
	width: 100%;
	max-width: 600px;
	height: auto;
	padding: 5px;
}

.box_shadow {
	text-align: center;
	width: 350px;
	min-height: 440px;
	height: auto;
	padding: 10px;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.25);
	margin-top: 20px;
	border-radius: 10px;
	background-color: #fff;
	box-sizing: border-box;
}

.box_clean {
	text-align: left;
	width: 350px;
	min-height: 380px;
	height: auto;
	padding: 10px;
	box-sizing: border-box;
}

.info_produto {
	text-align: center;
	text-shadow: 1px 1px 1px dodgerblue;
	font-size: 20px;
	letter-spacing: 1px;
	padding: 20px;
}

.info_evento {
	text-align: center;
	font-size: 14px;
	font-weight: bolder;
	letter-spacing: 1px;
	padding: 3px;
}

.date_box {
	width: 70px;
	min-height: 10px;
	padding: 7px;
	font-size: 12px;
	text-transform: uppercase;
	color: #ffe402;
	font-weight: 700;
	letter-spacing: 0.72px;
	background-color: #12062a;
	border-radius: 4px;
}

/* TABLET */

@media (max-width: 825px) {

	.conteudo {
		flex-direction: column;
		align-items: center;
	}

	.titulo {
		font-size: 34px;
	}

	.subtitulo {
		font-size: 21px;
	}

	.box_shadow,
	.box_clean {
		width: 90%;
		max-width: 500px;
	}

	.img_desktop {
		width: 100%;
		height: 300px;
		object-fit: fill;
	}
}

/* CELULAR */

@media (max-width: 530px) {

	.conteudo {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-left: 10px;
		padding-right: 10px;
		box-sizing: border-box;
	}

	.img_desktop {
		width: 100%;
		height: 300px;
		object-fit: fill;
	}

	.box_shadow {
		text-align: center;
		width: 100%;
		min-height: unset;
		height: auto;
		padding: 10px;
		box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
		border-radius: 5px;
		margin-top: 15px;
	}

	.box_clean {
		width: 100%;
		min-height: unset;
		height: auto;
		padding: 10px;
	}

	.img_calendario {
		width: 100%;
		max-width: 300px;
		height: auto;
	}

	.img_agenda {
		width: 100%;
		max-width: 300px;
		height: auto;
		padding: 10px;
	}

	.img_local {
		width: 100%;
		max-width: 270px;
		height: auto;
	}

	.titulo {
		padding: 10px;
		font-size: 32px;
		text-align: center;
	}

	.subtitulo {
		padding: 10px;
		font-size: 20px;
		text-align: center;
	}

	.regulamento {
		color: #fff;
		background-color: rgba(0,0,0,0.6);
		padding: 10px;
		border-radius: 10px;
	}

	.overlay-txt {
		background-color: #66EB30;
		padding: 10px;
		border-radius: 10px;
		font-size: 24px;
	}

	.info_produto {
		font-size: 18px;
		padding: 15px;
	}

	.info_evento {
		font-size: 13px;
	}
}