/* ==================================================
   BANNER DO PRODUTO
================================================== */

.banner_produto {
	width: 100%;
	min-height: 800px;
	display: flex;
	align-items: center;
	position: relative;
	padding: 60px 0;
	background-color: #031b3c;
	overflow: hidden;
	isolation: isolate;
}

.banner_produto,
.banner_produto * {
	box-sizing: border-box;
}


/* ==================================================
   IMAGEM DE FUNDO — 100% DO BANNER
================================================== */

.banner_produto .imagem_produto_fundo {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.banner_produto .imagem_produto_fundo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}


/* ==================================================
   CAMADA ESCURA SOBRE A IMAGEM
================================================== */

.banner_produto::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(2, 23, 50, 0.97) 0%,
		rgba(2, 25, 53, 0.91) 25%,
		rgba(2, 28, 57, 0.72) 43%,
		rgba(2, 28, 57, 0.28) 60%,
		rgba(2, 25, 50, 0.48) 78%,
		rgba(2, 23, 47, 0.76) 100%
	);
}


/* ==================================================
   CONTAINER
================================================== */

.banner_produto .container {
	width: calc(100% - 60px);
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.banner_produto .conteudo {
	width: 100%;
	min-height: 680px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	align-items: center;
	gap: 70px;
	position: relative;
}


/* ==================================================
   INFORMAÇÕES
================================================== */

.banner_produto .informacoes {
	width: 100%;
	max-width: 610px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.banner_produto .informacoes .texto {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}


/* ==================================================
   TAG
================================================== */

.banner_produto .informacoes .tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	padding: 9px 18px;
	color: #ffffff;
	background-color: #f20d17;
	border-radius: 6px;
	box-shadow: 0 8px 20px rgba(242, 13, 23, 0.28);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}


/* ==================================================
   TÍTULO
================================================== */

.banner_produto .informacoes .titulo_principal {
	width: 100%;
	margin: 0;
	color: #ffffff;
	font-size: clamp(48px, 4.5vw, 76px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -2px;
	text-transform: uppercase;
}

.banner_produto .informacoes .titulo_principal span {
	display: inline-block;
	color: #ef171d;
}


/* ==================================================
   DESCRIÇÃO
================================================== */

.banner_produto .informacoes .descricao {
	width: 100%;
	max-width: 530px;
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
}

.banner_produto .informacoes .descricao h3 {
	width: 100%;
	margin: 0 0 16px;
	color: #ffffff;
	font-size: 29px;
	font-weight: 700;
	line-height: 1.35;
}

.banner_produto .informacoes .descricao p {
	margin: 0;
}

.banner_produto .informacoes .descricao p + p {
	margin-top: 12px;
}


/* ==================================================
   DIFERENCIAIS
================================================== */

.banner_produto .diferenciais {
	width: 100%;
	max-width: 610px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 20px;
	margin-top: 38px;
	position: relative;
	z-index: 3;
}

.banner_produto .diferenciais .item {
	width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.banner_produto .diferenciais .item .icone {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 58px;
	margin-bottom: 13px;
	transition: transform 0.3s ease;
}

.banner_produto .diferenciais .item .icone img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}

.banner_produto .diferenciais .item:hover .icone {
	transform: translateY(-5px);
}

.banner_produto .diferenciais .item h3 {
	width: 100%;
	margin: 0;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
}


/* ==================================================
   FORMULÁRIO
================================================== */

.banner_produto .formulario_cotacao {
	width: 100%;
	max-width: 400px;
	display: block;
	position: relative;
	z-index: 4;
	justify-self: end;
	padding: 38px 34px 28px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}


/* ==================================================
   CABEÇALHO DO FORMULÁRIO
================================================== */

.banner_produto .cabecalho_formulario {
	width: 100%;
	margin-bottom: 25px;
}

.banner_produto .cabecalho_formulario > span {
	display: block;
	margin-bottom: 5px;
	color: #161d2b;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.banner_produto .cabecalho_formulario h2 {
	width: 100%;
	margin: 0;
	color: #e50914;
	font-size: 47px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.banner_produto .cabecalho_formulario p {
	width: 100%;
	margin: 14px 0 0;
	color: #424a58;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}


/* ==================================================
   FORMULÁRIO
================================================== */

.banner_produto .formulario_cotacao form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 14px;
}


/* ==================================================
   CAMPOS
================================================== */

.banner_produto .formulario_cotacao .campo {
	width: 100%;
	min-height: 58px;
	display: flex;
	align-items: center;
	position: relative;
	background-color: #ffffff;
	border: 1px solid #dce1e7;
	border-radius: 7px;
	box-shadow: 0 3px 10px rgba(9, 30, 57, 0.05);
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.banner_produto .formulario_cotacao .campo:focus-within {
	border-color: #e50914;
	box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.08);
}

.banner_produto .formulario_cotacao .campo i {
	width: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 50px;
	color: #161d2b;
	font-size: 20px;
	line-height: 1;
}

.banner_produto .formulario_cotacao .campo input {
	width: calc(100% - 50px);
	height: 56px;
	display: block;
	padding: 0 15px 0 0;
	color: #242b38;
	background-color: transparent;
	border: 0;
	outline: 0;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0px;
}

.banner_produto .formulario_cotacao .campo input::placeholder {
	color: #7c8390;
	opacity: 1;
}

.banner_produto .formulario_cotacao .campo input:-webkit-autofill,
.banner_produto .formulario_cotacao .campo input:-webkit-autofill:hover,
.banner_produto .formulario_cotacao .campo input:-webkit-autofill:focus {
	-webkit-text-fill-color: #242b38;
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset;
	transition: background-color 5000s ease-in-out 0s;
}


/* ==================================================
   BOTÃO
================================================== */

.banner_produto .formulario_cotacao .botao {
	width: 100%;
	margin-top: 5px;
}

.banner_produto .formulario_cotacao .botao .btn-custom {
	width: 100%;
	min-height: 62px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 20px;
	color: #ffffff;
	background-color: #e50914;
	border: 2px solid #e50914;
	border-radius: 7px;
	box-shadow: 0 9px 22px rgba(229, 9, 20, 0.24);
	font-family: inherit;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.banner_produto .formulario_cotacao .botao .btn-custom:hover {
	color: #e50914;
	background-color: #ffffff;
	border-color: #e50914;
	box-shadow: 0 12px 28px rgba(229, 9, 20, 0.2);
	transform: translateY(-3px);
}


/* ==================================================
   SEGURANÇA
================================================== */

.banner_produto .formulario_cotacao .seguranca {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 5px;
	color: #3e4654;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.banner_produto .formulario_cotacao .seguranca i {
	color: #151d2c;
	font-size: 14px;
}


/* ==================================================
   RESPONSIVO — ATÉ 1399PX
================================================== */

@media screen and (max-width: 1399px) {

	.banner_produto {
		min-height: 740px;
		padding: 55px 0;
	}

	.banner_produto .conteudo {
		min-height: 630px;
		grid-template-columns: minmax(0, 1fr) 385px;
		gap: 45px;
	}

	.banner_produto .informacoes {
		max-width: 570px;
	}

	.banner_produto .informacoes .titulo_principal {
		font-size: 55px;
	}

	.banner_produto .informacoes .descricao {
		font-size: 15px;
	}

	.banner_produto .informacoes .descricao h3 {
		font-size: 25px;
	}

	.banner_produto .diferenciais {
		gap: 15px;
	}

	.banner_produto .diferenciais .item .icone {
		width: 50px;
		height: 50px;
		flex-basis: 50px;
	}

	.banner_produto .diferenciais .item h3 {
		font-size: 10px;
	}

	.banner_produto .formulario_cotacao {
		max-width: 385px;
		padding: 32px 28px 25px;
	}

	.banner_produto .cabecalho_formulario h2 {
		font-size: 42px;
	}
}


/* ==================================================
   RESPONSIVO — ATÉ 1199PX
================================================== */

@media screen and (max-width: 1199px) {

	.banner_produto {
		min-height: 690px;
	}

	.banner_produto .container {
		width: calc(100% - 40px);
	}

	.banner_produto .conteudo {
		min-height: 580px;
		grid-template-columns: minmax(0, 1fr) 350px;
		gap: 35px;
	}

	.banner_produto .informacoes {
		max-width: 500px;
	}

	.banner_produto .informacoes .tag {
		margin-bottom: 20px;
		font-size: 13px;
	}

	.banner_produto .informacoes .titulo_principal {
		font-size: 45px;
		letter-spacing: -1px;
	}

	.banner_produto .informacoes .descricao {
		margin-top: 22px;
		font-size: 14px;
	}

	.banner_produto .informacoes .descricao h3 {
		font-size: 21px;
	}

	.banner_produto .diferenciais {
		max-width: 440px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 17px;
		margin-top: 28px;
	}

	.banner_produto .diferenciais .item {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		text-align: left;
	}

	.banner_produto .diferenciais .item .icone {
		width: 38px;
		height: 38px;
		flex: 0 0 38px;
		margin-bottom: 0;
	}

	.banner_produto .diferenciais .item h3 {
		text-align: left;
	}

	.banner_produto .formulario_cotacao {
		max-width: 350px;
		padding: 28px 23px 22px;
	}

	.banner_produto .cabecalho_formulario > span {
		font-size: 17px;
	}

	.banner_produto .cabecalho_formulario h2 {
		font-size: 36px;
	}

	.banner_produto .formulario_cotacao .campo {
		min-height: 52px;
	}

	.banner_produto .formulario_cotacao .campo input {
		height: 50px;
	}

	.banner_produto .formulario_cotacao .botao .btn-custom {
		min-height: 56px;
		font-size: 15px;
	}
}


/* ==================================================
   RESPONSIVO — ATÉ 991PX
================================================== */

@media screen and (max-width: 991px) {

	.banner_produto {
		min-height: 0;
		padding: 60px 0;
	}

	.banner_produto::before {
		background: linear-gradient(
			90deg,
			rgba(2, 23, 50, 0.94) 0%,
			rgba(2, 25, 53, 0.82) 50%,
			rgba(2, 23, 50, 0.72) 100%
		);
	}

	.banner_produto .conteudo {
		min-height: auto;
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.banner_produto .informacoes {
		width: 100%;
		max-width: 650px;
		justify-self: start;
	}

	.banner_produto .formulario_cotacao {
		width: 100%;
		max-width: 650px;
		justify-self: center;
	}

	.banner_produto .formulario_cotacao form {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.banner_produto .formulario_cotacao .botao,
	.banner_produto .formulario_cotacao .seguranca {
		grid-column: 1 / -1;
	}
}


/* ==================================================
   RESPONSIVO — ATÉ 767PX
================================================== */

@media screen and (max-width: 767px) {

	.banner_produto {
		padding: 55px 0;
	}

	.banner_produto::before {
		background: rgba(2, 23, 50, 0.82);
	}

	.banner_produto .container {
		width: calc(100% - 30px);
	}

	.banner_produto .informacoes {
		align-items: center;
	}

	.banner_produto .informacoes .texto {
		align-items: center;
		text-align: center;
	}

	.banner_produto .informacoes .titulo_principal {
		font-size: 40px;
		text-align: center;
	}

	.banner_produto .informacoes .descricao {
		max-width: 580px;
		text-align: center;
	}

	.banner_produto .informacoes .descricao h3 {
		font-size: 22px;
	}

	.banner_produto .diferenciais {
		max-width: 550px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.banner_produto .diferenciais .item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.banner_produto .diferenciais .item .icone {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
		margin-bottom: 10px;
	}

	.banner_produto .diferenciais .item h3 {
		text-align: center;
	}

	.banner_produto .formulario_cotacao {
		max-width: 600px;
	}

	.banner_produto .formulario_cotacao form {
		grid-template-columns: 1fr;
	}

	.banner_produto .formulario_cotacao .botao,
	.banner_produto .formulario_cotacao .seguranca {
		grid-column: auto;
	}
}


/* ==================================================
   RESPONSIVO — ATÉ 480PX
================================================== */

@media screen and (max-width: 480px) {

	.banner_produto {
		padding: 45px 0;
	}

	.banner_produto .informacoes .tag {
		font-size: 12px;
	}

	.banner_produto .informacoes .titulo_principal {
		font-size: 34px;
		line-height: 1.05;
	}

	.banner_produto .informacoes .descricao {
		margin-top: 20px;
		font-size: 13px;
	}

	.banner_produto .informacoes .descricao h3 {
		font-size: 19px;
	}

	.banner_produto .diferenciais {
		max-width: 320px;
		grid-template-columns: 1fr;
	}

	.banner_produto .diferenciais .item {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
	}

	.banner_produto .diferenciais .item .icone {
		width: 42px;
		height: 42px;
		flex: 0 0 42px;
		margin: 0;
	}

	.banner_produto .diferenciais .item h3 {
		font-size: 11px;
		text-align: left;
	}

	.banner_produto .formulario_cotacao {
		padding: 28px 20px 22px;
		border-radius: 12px;
	}

	.banner_produto .cabecalho_formulario > span {
		font-size: 16px;
	}

	.banner_produto .cabecalho_formulario h2 {
		font-size: 34px;
	}

	.banner_produto .cabecalho_formulario p {
		font-size: 13px;
	}

	.banner_produto .formulario_cotacao .campo i {
		width: 44px;
		flex-basis: 44px;
		font-size: 18px;
	}

	.banner_produto .formulario_cotacao .campo input {
		width: calc(100% - 44px);
		font-size: 13px;
	}

	.banner_produto .formulario_cotacao .botao .btn-custom {
		font-size: 14px;
	}
}