.novaBannerInformativo {
	width: 100%;
	min-height: 536px;
	margin: 0 auto;
	padding: 80px 24px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: #b53c09;
}

.novaBannerInformativo__inner {
	width: min(1440px, 100%);
	margin: 0 auto;
}

.novaBannerInformativo::before,
.novaBannerInformativo::after {
	content: "";
	position: absolute;
	inset: 0;
}

.novaBannerInformativo::before {
	background: var(--banner-background-image) center / cover no-repeat;
}

.novaBannerInformativo::after {
	background: rgba(0, 0, 0, 0.2);
}

.novaBannerInformativo__content {
	position: relative;
	z-index: 1;
	width: min(804px, 100%);
	margin-left: 76px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	color: #fff;
}

.novaBannerInformativo__content h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 54px;
	text-transform: uppercase;
	color: inherit;
}

.novaBannerInformativo__body {
	font-size: 22px;
	font-weight: 600;
	line-height: 30px;
}

.novaBannerInformativo__body p {
	margin: 0;
}

.novaBannerInformativo__body p + p {
	margin-top: 12px;
}

.novaBannerInformativo__cta {
	padding: 20px 24px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.novaBannerInformativo__cta::after {
	content: "";
	width: 24px;
	height: 24px;
	background-color: currentColor;
	-webkit-mask: url("./assets/arrow-up-right.svg") center / contain no-repeat;
	mask: url("./assets/arrow-up-right.svg") center / contain no-repeat;
}

.novaBannerInformativo__cta:hover,
.novaBannerInformativo__cta:focus-visible {
	background: #fff;
	color: #be5005;
}

@media (max-width: 900px) {
	.novaBannerInformativo {
		padding: 48px 24px;
	}

	.novaBannerInformativo__inner {
		width: 100%;
	}

	.novaBannerInformativo__content {
		margin-left: 0;
	}

	.novaBannerInformativo__content h2 {
		font-size: 38px;
		line-height: 1.08;
	}

	.novaBannerInformativo__body,
	.novaBannerInformativo__cta {
		font-size: 18px;
		line-height: 1.45;
	}
}

@media (max-width: 640px) {
	.novaBannerInformativo {
		min-height: 460px;
		padding: 32px 16px;
	}

	.novaBannerInformativo__cta {
		width: 100%;
	}
}
