body {
	margin: 0;
	padding: 0;
}

.PRODUTOS {
	display: flex;
	position: relative;
}

.CONTEINER {
	display: flex;
	width: 100%;
	height: auto;
	padding: 95px;
	justify-content: center;
	align-items: center;
}

.CONTEINER_PRODUTOS {
	display: flex;
	/* CORRIGIDO: Era flexbox, o correto é flex */
	width: 100%;
	height: auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	/* Opcional: adiciona um espaço entre o título H1 e os cards */
}

.CONTEINER_PRODUTOS h1 {
	font-family: "Montserrat";
	font-weight: 900;
	color: #00138E;
}

.CARDS_PRODUTOS {
	display: flex;
	width: 100%;
	justify-content: space-around;
	/* MUDADO: space-around distribui melhor os cards na tela */
	align-items: center;
}

.CARD_PRODUTO {
	width: 250px;
	height: 350px;
	border-radius: 20px;

	/* ADICIONADO: Para centralizar o conteúdo (link, imagem, texto) dentro do card */
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.CARD_PRODUTO .botaoCard {
	padding: 10px;
	height: 300px;
	border-radius: 20px;
}

.CARD_PRODUTO .botaoCard:hover {
	background-color: #F9088D;
	border-radius: 20px;
	padding: 10px;
}

.CARD_PRODUTO .botaoCard p {
	background-color: #00138E;
	padding: 10px;
	width: 250px;
	border-radius: 10px;

	font-family: "Montserrat";
	font-weight: 900;
	color: #FFFFFF;
}

/* ADICIONADO: Como o link <a> abraça tudo, ele precisa de flexbox para alinhar a imagem e o texto verticalmente */
.CARD_PRODUTO .botaoCard {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	/* Opcional: remove o sublinhado do link */
	color: #ffffff;
}

.CARD_PRODUTO img {
	width: 200px;
	height: auto;
}

@media screen and (max-width: 1220px) {
	.CARDS_PRODUTOS {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}