body {
	padding: 0;
	margin: 0;
}

.BANNER1 {
	width: 100%;
	display: flex;
	height: auto;
	position: relative;
	text-align: center;
}

.BANNER1 .BANNER_DESKTOP {
	margin-top: 95px;
	width: 100%;
	display: block;
}

.BANNER1 .BANNER_MOBILE {
	display: none;
}

.BANNER2 {
	width: 100%;
	display: flex;
	height: auto;
	position: relative;
	justify-content: center;
}

.BANNER2 .BANNER2_BACKGROUND {
	width: 80%;
	height: 15%;
	background-color: #F9088D;
	border-radius: 20px;
}

.BANNER2 .BANNER2_BACKGROUND img {
	width: 45%;
	height: auto;
	padding: 10px 10px;
	object-fit: contain;
}

.BANNER2 .BANNER2_BACKGROUND h1 {
	color: #FFE215;
	font-family: "Montserrat";
	font-weight: 900;
	text-align: center;
	font-style: italic;
	font-size: 2rem;
	text-decoration: none;
}

.BANNER2 .BANNER2_BACKGROUND p {
	color: #FFFFFF;
	font-family: "Montserrat";
	font-weight: 600;
	padding: 50px;
	font-size: 1rem;
	text-decoration: none;

	width: 40%;
}

.imagemTexto {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

@media screen and (max-width: 1220px) {
	.BANNER1 .BANNER_DESKTOP {
		display: none;
	}

	.BANNER1 .BANNER_MOBILE {
		margin-top: 95px;
		width: 100%;
		display: block;
	}

	.BANNER2 .BANNER2_BACKGROUND {
		display: flex;
		flex-direction: column;
		align-items: center;
		/* Centraliza os itens horizontalmente */
		justify-content: center;
		/* Centraliza no eixo vertical se houver altura definida */
		text-align: center;
		/* Centraliza o texto do H1 */
		padding: 10px;
	}

	.imagemTexto {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.BANNER2 .BANNER2_BACKGROUND h1 {
		padding: 0;
		margin-bottom: 20px;
	}

	.BANNER2 .BANNER2_BACKGROUND img,
	.BANNER2 .BANNER2_BACKGROUND p {
		width: 80%;
		margin: 0 auto;
		/* Garante a centralização dos blocos */
	}

	.BANNER2 .BANNER2_BACKGROUND p {
		text-align: justify;
		/* Mantém o texto do parágrafo justificado */
		margin-top: 15px;
	}

}