/*MENU ROSA*/
@media screen and (min-width:1220px) {
	body {
		margin: 0;
		padding: 0;
	}

	.RETANGULO_MOBILE {
		transition: all 0.4s ease;

	}

	.RETANGULO_MOBILE {
		margin: 0;
		padding: 0;
	}

	.RETANGULO_MOBILE {
		display: none;
	}

	/* Estilo Base do Menu (Quando está no topo) */
	.MENU {
		display: flex;

		/* Logo em cima, itens embaixo inicialmente */
		justify-items: center;
		text-align: center;

		/* Centraliza tudo */
		background-color: #F9088D;
		width: 100%;
		height: 95px;
		position: fixed;
		z-index: 1000;

	}

	.LOGO_SITE {
		display: flex;
		justify-content: center;
		align-items: center;
		/* Centraliza verticalmente */
	}

	.LOGO_SITE img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.LOGO_SITE .IMAGEM_DESK {
		height: 95px;
		width: 200px;
		object-fit: cover;


	}

	.MENU .MENU_LINKS {
		/* Empurra os links para a direita */
		margin-left: auto;
		height: 100%;
		width: auto;
	}

	.MENU_LINKS ul {
		display: flex;
		list-style-type: none;
		margin: 0;
		padding: 0;
	}

	.MENU_LINKS a {
		margin: 0;
		width: 220px;
		height: 95px;
		text-decoration: none;
		font-family: "Montserrat";
		font-weight: 500;
		color: #FFFFFF;

		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.MENU_LINKS a:hover {
		background-color: #D10776;
		color: #FFFFFF;
		font-weight: 900;
		border-radius: 0px 0px 20px 20px;
		transition: background-color 0.3s;
	}
}

@media screen and (max-width: 1220px) {
	.MENU {
		background-color: #F9088D;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;

		height: auto;
	}

	.PART_1 {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}


	.RETANGULO_MOBILE {
		width: 80px;
		height: 80px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.RETANGULO {
		width: 50px;
		height: 1px;
		border-radius: 20px;
		background-color: #F9088D;
		padding: 5px;
		margin-bottom: 4px;
	}

	.LOGO_SITE {
		display: flex;
		justify-content: center;
		align-items: center;
		/* Centraliza verticalmente */
	}

	.LOGO_SITE img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.LOGO_SITE .IMAGEM_DESK {
		height: 95px;
		width: 170px;
		object-fit: cover;
	}

	.MENU_LINKS {
		display: none;
	}

	.MENU_LINKS.ativo {
		display: block;
		margin-left: 0;
		height: auto;
		width: auto;
	}

	.MENU_LINKS ul {
		list-style-type: none;

		align-items: center;
		justify-content: center;

	}


	.MENU_LINKS ul li a {
		text-decoration: none;
		font-family: "Montserrat";
		font-weight: 600;
		color: #FFFFFF;

		padding: 30px 40px;

		display: block;
	}

	.MENU_LINKS a:hover {
		font-weight: 900;
	}
}

/*RODA PE*/

.RODA_PE {
	display: flex;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background-color: #F9088D;
	justify-content: space-between;
	align-items: center;

}



.LOGO_SITE_RODA_PE {
	display: block;
	width: 400px;
}

.LOGO_SITE_RODA_PE .IMAGEM_RODA_PE {
	display: block;
}

.MENU_VERTICAL_RODA_PE {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.MENU_VERTICAL_RODA_PE a {

	font-family: "Montserrat";
	font-weight: 500;
	text-decoration: none;
	font-size: 20px;
	color: white;
}


.INFO_CONTATOS {

	font-family: "Montserrat";
	font-weight: 500;
	font-size: 17px;
	text-decoration: none;
	color: white;
	width: auto;
	margin-right: 100px;

}

@media screen and (max-width: 1220px) {
	.RODA_PE {
		display: block;
	}


	.LOGO_SITE_RODA_PE {
		display: flex;
		width: 100%;
		justify-content: center;
		align-items: center;
	}

	.IMAGEM_RODA_PE {
		width: 350px;
	}


	.MENU_VERTICAL_RODA_PE {
		width: 100%;
		margin-left: 20px;
	}

	.INFO_CONTATOS {
		margin-top: 30px;
		padding: 20px;
	}

	.INFO_CONTATOS h1 {
		font-weight: 900;
	}
}

.APRESENTACAO_PRODUTO {
	display: flex;
	width: 100%;
	height: auto;
}

.APRESENTACAO_PRODUTO .DESCRCAO_PRODUTO {
	display: block;
	margin-top: 95px;
	width: 45%;
	height: auto;
}

.APRESENTACAO_PRODUTO .IMAGEM_PRODUTO {
	display: block;
	width: 50%;
	height: auto;
	margin-top: 95px;
}

.APRESENTACAO_PRODUTO .IMAGEM_PRODUTO img {
	width: 500px;
}

.APRESENTACAO_PRODUTO .DESCRCAO_PRODUTO h1 {
	font-family: "Montserrat";
	font-weight: 900;
	color: #00138E;
}

.APRESENTACAO_PRODUTO .DESCRCAO_PRODUTO h2 {
	font-family: "Montserrat";
	font-weight: 900;
	color: #00138E;
}

.APRESENTACAO_PRODUTO .DESCRCAO_PRODUTO p {
	font-family: "Montserrat";
	font-weight: 600;
	color: #00138E;
	text-align: justify;
}