/* ==================================================
   IMAGEM COM TEXTO LATERAL 4
================================================== */

.imagem_com_texto_lateral_4 {
	width: 100%;
	display: block;
	position: relative;
	padding: 70px 0;
	background-color: #ffffff;
	overflow: hidden;
}

.imagem_com_texto_lateral_4,
.imagem_com_texto_lateral_4 * {
	box-sizing: border-box;
}

.imagem_com_texto_lateral_4 .container {
	width: calc(100% - 40px);
	max-width: 1440px;
	margin: 0 auto;
}

.imagem_com_texto_lateral_4 .conteudo {
	width: 100%;
	min-height: 390px;
	display: grid;
	grid-template-columns:
		minmax(300px, 34%)
		minmax(320px, 36%)
		minmax(280px, 30%);
	align-items: stretch;
	position: relative;
	overflow: hidden;
	border-radius: 0 18px 18px 0;
	background-color: #ffffff;
	box-shadow: 0 8px 30px rgba(7, 27, 72, 0.08);
}


/* ==================================================
   COLUNA DE PROBLEMAS
================================================== */

.imagem_com_texto_lateral_4 .problemas {
	width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	padding: 45px 45px 45px 50px;
	background-color: #ffffff;
}


/* ==================================================
   CABEÇALHO DOS PROBLEMAS
================================================== */

.imagem_com_texto_lateral_4 .cabecalho_problemas {
	width: 100%;
	display: block;
	margin-bottom: 28px;
}

.imagem_com_texto_lateral_4 .cabecalho_problemas .tag {
	width: 100%;
	margin-bottom: 12px;
	color: #e50b18;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.imagem_com_texto_lateral_4 .cabecalho_problemas .titulo_principal {
	width: 100%;
	margin: 0;
	color: #071b48;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.4px;
	text-transform: none;
}


/* ==================================================
   LISTA DE PROBLEMAS
================================================== */

.imagem_com_texto_lateral_4 .itens_problemas {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 17px;
}

.imagem_com_texto_lateral_4 .item_problema {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	position: relative;
}

.imagem_com_texto_lateral_4 .item_problema .icone {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	margin-top: 1px;
	color: #e50b18;
	font-size: 19px;
	line-height: 1;
}

.imagem_com_texto_lateral_4 .item_problema .texto {
	width: calc(100% - 33px);
	color: #17243d;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.imagem_com_texto_lateral_4 .item_problema .texto p {
	margin: 0;
}


/* ==================================================
   IMAGEM CENTRAL
================================================== */

.imagem_com_texto_lateral_4 .imagem_central {
	width: 100%;
	height: 100%;
	min-height: 390px;
	display: block;
	position: relative;
	z-index: 1;
	background-color: #e9eef3;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.imagem_com_texto_lateral_4 .imagem_central::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(255, 255, 255, 0) 25%,
		rgba(3, 29, 58, 0.08) 100%
	);
}

.imagem_com_texto_lateral_4 .imagem_central {
	width: 100%;
	height: 100%;
	min-height: 390px;
	display: block;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.imagem_com_texto_lateral_4 .conteudo:hover .imagem_central {
	transform: scale(1.025);
}


/* ==================================================
   COLUNA DA SOLUÇÃO
================================================== */

.imagem_com_texto_lateral_4 .solucao {
	width: 100%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	z-index: 2;
	padding: 45px 42px;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			rgba(3, 33, 63, 0.99) 0%,
			rgba(2, 28, 55, 0.99) 100%
		);
}

.imagem_com_texto_lateral_4 .solucao::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(
			circle at 20% 10%,
			rgba(0, 157, 236, 0.12) 0%,
			rgba(0, 157, 236, 0) 42%
		);
}


/* ==================================================
   ÍCONE DA SOLUÇÃO
================================================== */

.imagem_com_texto_lateral_4 .icone_solucao {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.imagem_com_texto_lateral_4 .icone_solucao img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}


/* ==================================================
   DESCRIÇÃO DA SOLUÇÃO
================================================== */

.imagem_com_texto_lateral_4 .descricao_solucao {
	width: 100%;
	max-width: 330px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.55;
}

.imagem_com_texto_lateral_4 .descricao_solucao p {
	margin: 0;
}

.imagem_com_texto_lateral_4 .descricao_solucao p + p {
	margin-top: 12px;
}


/* ==================================================
   BOTÃO
================================================== */

.imagem_com_texto_lateral_4 .botao_solucao {
	width: 100%;
	max-width: 270px;
	display: block;
	margin-top: 28px;
}

.imagem_com_texto_lateral_4 .botao_solucao .btn-custom {
	width: 100%;
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 20px;
	color: #ffffff;
	background-color: #ef111b;
	border: 2px solid #ef111b;
	border-radius: 5px;
	box-shadow: 0 8px 20px rgba(239, 17, 27, 0.24);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		color 0.3s ease,
		background-color 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.imagem_com_texto_lateral_4 .botao_solucao .btn-custom:hover {
	color: #ef111b;
	background-color: #ffffff;
	border-color: #ffffff;
	box-shadow: 0 11px 26px rgba(0, 0, 0, 0.2);
	transform: translateY(-3px);
}


/* ==================================================
   WHATSAPP
================================================== */

.imagem_com_texto_lateral_4 .whatsapp {
	width: 100%;
	display: block;
	margin-top: 17px;
}

.imagem_com_texto_lateral_4 .whatsapp a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.imagem_com_texto_lateral_4 .whatsapp a i {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 24px;
	font-size: 22px;
	line-height: 1;
}

.imagem_com_texto_lateral_4 .whatsapp a:hover {
	color: #26d366;
	transform: translateX(4px);
}


/* ==================================================
   RESPONSIVO — ATÉ 1300PX
================================================== */

@media screen and (max-width: 1300px) {

	.imagem_com_texto_lateral_4 .conteudo {
		grid-template-columns:
			minmax(280px, 35%)
			minmax(300px, 34%)
			minmax(270px, 31%);
	}

	.imagem_com_texto_lateral_4 .problemas {
		padding: 40px 35px;
	}

	.imagem_com_texto_lateral_4 .cabecalho_problemas .titulo_principal {
		font-size: 27px;
	}

	.imagem_com_texto_lateral_4 .item_problema .texto {
		font-size: 14px;
	}

	.imagem_com_texto_lateral_4 .solucao {
		padding: 40px 32px;
	}

	.imagem_com_texto_lateral_4 .descricao_solucao {
		font-size: 16px;
	}
}


/* ==================================================
   RESPONSIVO — ATÉ 1100PX
================================================== */

@media screen and (max-width: 1100px) {

	.imagem_com_texto_lateral_4 {
		padding: 65px 0;
	}

	.imagem_com_texto_lateral_4 .conteudo {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-radius: 0 16px 16px 0;
	}

	.imagem_com_texto_lateral_4 .problemas {
		grid-column: 1;
		grid-row: 1;
		min-height: 390px;
	}

	.imagem_com_texto_lateral_4 .imagem_central {
		min-height: 390px;
	}

	.imagem_com_texto_lateral_4 .imagem_central {
		min-height: 390px;
	}

	.imagem_com_texto_lateral_4 .solucao {
		grid-column: 1 / -1;
		grid-row: 2;
		min-height: 290px;
		padding: 45px;
		border-radius: 0 0 16px 16px;
	}

	.imagem_com_texto_lateral_4 .descricao_solucao {
		max-width: 700px;
	}

	.imagem_com_texto_lateral_4 .botao_solucao {
		max-width: 280px;
	}
}


/* ==================================================
   RESPONSIVO — ATÉ 767PX
================================================== */

@media screen and (max-width: 767px) {

	.imagem_com_texto_lateral_4 {
		padding: 55px 0;
	}

	.imagem_com_texto_lateral_4 .container {
		width: calc(100% - 30px);
	}

	.imagem_com_texto_lateral_4 .conteudo {
		display: flex;
		flex-direction: column;
		border-radius: 0 0 14px 14px;
	}

	.imagem_com_texto_lateral_4 .problemas {
		width: 100%;
		min-height: 0;
		padding: 38px 30px;
	}

	.imagem_com_texto_lateral_4 .cabecalho_problemas {
		margin-bottom: 25px;
	}

	.imagem_com_texto_lateral_4 .cabecalho_problemas .tag {
		font-size: 12px;
	}

	.imagem_com_texto_lateral_4 .cabecalho_problemas .titulo_principal {
		font-size: 25px;
	}

	.imagem_com_texto_lateral_4 .item_problema .texto {
		font-size: 14px;
	}

	.imagem_com_texto_lateral_4 .imagem_central {
		height: 360px;
		min-height: 360px;
	}

	.imagem_com_texto_lateral_4 .imagem_central {
		height: 100%;
		min-height: 360px;
	}

	.imagem_com_texto_lateral_4 .solucao {
		width: 100%;
		min-height: 0;
		padding: 40px 30px;
		border-radius: 0 0 14px 14px;
	}

	.imagem_com_texto_lateral_4 .icone_solucao {
		width: 54px;
		height: 54px;
		margin-bottom: 20px;
	}

	.imagem_com_texto_lateral_4 .descricao_solucao {
		max-width: 600px;
		font-size: 16px;
	}

	.imagem_com_texto_lateral_4 .botao_solucao {
		max-width: 300px;
	}
}


/* ==================================================
   RESPONSIVO — ATÉ 480PX
================================================== */

@media screen and (max-width: 480px) {

	.imagem_com_texto_lateral_4 {
		padding: 45px 0;
	}

	.imagem_com_texto_lateral_4 .problemas {
		padding: 32px 22px;
	}

	.imagem_com_texto_lateral_4 .cabecalho_problemas .titulo_principal {
		font-size: 22px;
	}

	.imagem_com_texto_lateral_4 .itens_problemas {
		gap: 15px;
	}

	.imagem_com_texto_lateral_4 .item_problema .icone {
		width: 20px;
		height: 20px;
		flex-basis: 20px;
		font-size: 17px;
	}

	.imagem_com_texto_lateral_4 .item_problema .texto {
		width: calc(100% - 31px);
		font-size: 13px;
	}

	.imagem_com_texto_lateral_4 .imagem_central {
		height: 300px;
		min-height: 300px;
	}

	.imagem_com_texto_lateral_4 .imagem_central {
		min-height: 300px;
	}

	.imagem_com_texto_lateral_4 .solucao {
		padding: 35px 22px;
	}

	.imagem_com_texto_lateral_4 .icone_solucao {
		width: 50px;
		height: 50px;
	}

	.imagem_com_texto_lateral_4 .descricao_solucao {
		font-size: 15px;
	}

	.imagem_com_texto_lateral_4 .botao_solucao {
		width: 100%;
		max-width: 100%;
		margin-top: 24px;
	}

	.imagem_com_texto_lateral_4 .botao_solucao .btn-custom {
		width: 100%;
		font-size: 12px;
	}

	.imagem_com_texto_lateral_4 .whatsapp a {
		font-size: 13px;
	}
}