/* ==========================================================
   SEÇÃO SUPORTE TÉCNICO
   ========================================================== */

.support-section {
	--support-primary: #0878ce;
	--support-primary-dark: #0563ad;
	--support-title: #1e293b;
	--support-text: #64748b;
	--support-light: #f4f8fc;
	--support-border: rgba(15, 23, 42, 0.08);

	position: relative;
	overflow: hidden;
	padding: 90px 0 100px;
	background: #ffffff;
}

.support-section::before {
	content: "";
	position: absolute;
	top: -180px;
	left: -180px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(8, 120, 206, 0.04);
	pointer-events: none;
}

.support-section::after {
	content: "";
	position: absolute;
	right: -220px;
	bottom: -220px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(8, 120, 206, 0.035);
	pointer-events: none;
}

/* ==========================================================
   CABEÇALHO
   ========================================================== */

.support-heading {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto 55px;
	text-align: center;
}

.support-heading-line {
	display: block;
	width: 70px;
	height: 3px;
	margin: 0 auto 22px;
	border-radius: 20px;
	background: var(--support-primary);
}

.support-title {
	margin: 0 0 18px;
	color: var(--support-title);
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.support-title span {
	color: var(--support-primary);
}

.support-description {
	max-width: 720px;
	margin: 0 auto;
	color: var(--support-text);
	font-size: 17px;
	line-height: 1.7;
}

/* ==========================================================
   GRID
   ========================================================== */

.support-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	max-width: 1100px;
	margin: 0 auto;
	align-items: stretch;
}

/* ==========================================================
   CARD
   ========================================================== */

.support-card {
	position: relative;
	display: flex;
	min-height: 450px;
	flex-direction: column;
	overflow: hidden;
	padding: 34px 30px 26px;
	border: 1px solid var(--support-border);
	border-radius: 20px;
	background: #ffffff;
	box-shadow:
		0 14px 40px rgba(15, 23, 42, 0.07),
		0 3px 10px rgba(15, 23, 42, 0.03);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.support-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: var(--support-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.support-card:hover {
	transform: translateY(-8px);
	border-color: rgba(8, 120, 206, 0.2);
	box-shadow:
		0 24px 55px rgba(15, 23, 42, 0.12),
		0 4px 14px rgba(15, 23, 42, 0.05);
}

.support-card:hover::before {
	transform: scaleX(1);
}

.support-card-featured {
	border-color: rgba(8, 120, 206, 0.23);
	background:
		linear-gradient(
			180deg,
			rgba(8, 120, 206, 0.04),
			transparent 38%
		),
		#ffffff;
}

/* ==========================================================
   DESTAQUE DO CARD
   ========================================================== */

.support-card-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	padding: 6px 11px;
	border-radius: 30px;
	background: rgba(8, 120, 206, 0.1);
	color: var(--support-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

/* ==========================================================
   ÍCONE
   ========================================================== */

.support-card-icon {
	display: flex;
	width: 70px;
	height: 70px;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	border-radius: 18px;
	background: rgba(8, 120, 206, 0.09);
	color: var(--support-primary);
	font-size: 30px;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
}

.support-card:hover .support-card-icon {
	background: var(--support-primary);
	color: #ffffff;
	transform: translateY(-3px);
}

/* ==========================================================
   CONTEÚDO
   ========================================================== */

.support-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.support-card-content h3 {
	margin: 0 0 17px;
	color: var(--support-title);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
}

.support-card-label {
	margin: 0 0 8px;
	color: var(--support-text);
	font-size: 14px;
	line-height: 1.5;
}

.support-card-highlight {
	display: block;
	margin: 0 0 19px;
	color: var(--support-primary);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.3;
}

.support-card-link {
	text-decoration: none;
	transition: color 0.2s ease;
}

.support-card-link:hover,
.support-card-link:focus {
	color: var(--support-primary-dark);
	text-decoration: none;
}

.support-card-text {
	margin: 0;
	color: var(--support-text);
	font-size: 14px;
	line-height: 1.7;
}

/* ==========================================================
   CANAIS
   ========================================================== */

.support-channel {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.support-channel:last-child {
	border-bottom: 0;
}

.support-channel-icon {
	display: flex;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--support-light);
	color: var(--support-primary);
	font-size: 18px;
}

.support-channel span {
	display: block;
	margin-bottom: 2px;
	color: var(--support-text);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.support-channel a {
	display: block;
	overflow-wrap: anywhere;
	color: var(--support-title);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.support-channel a:hover,
.support-channel a:focus {
	color: var(--support-primary);
	text-decoration: none;
}

/* ==========================================================
   RODAPÉ E BOTÕES
   ========================================================== */

.support-card-footer {
	margin-top: auto;
	padding-top: 28px;
}

.support-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--support-text);
	font-size: 13px;
	font-weight: 600;
}

.support-status i {
	color: #22a06b;
	font-size: 16px;
}

.support-button {
	display: flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px 18px;
	border: 1px solid var(--support-primary);
	border-radius: 11px;
	background: var(--support-primary);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.support-button:hover,
.support-button:focus {
	border-color: var(--support-primary-dark);
	background: var(--support-primary-dark);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
}

.support-button-outline {
	background: #ffffff;
	color: var(--support-primary);
}

.support-button-outline:hover,
.support-button-outline:focus {
	background: var(--support-primary);
	color: #ffffff;
}

/* ==========================================================
   RESPONSIVIDADE
   ========================================================== */

@media (max-width: 991px) {

	.support-section {
		padding: 75px 0 85px;
	}

	.support-title {
		font-size: 36px;
	}

	.support-grid {
		grid-template-columns: 1fr;
		max-width: 560px;
	}

	.support-card {
		min-height: auto;
	}

}

@media (max-width: 767px) {

	.support-section {
		padding: 65px 0 70px;
	}

	.support-heading {
		margin-bottom: 38px;
		padding: 0 10px;
	}

	.support-title {
		font-size: 29px;
		letter-spacing: -0.5px;
	}

	.support-description {
		font-size: 15px;
	}

	.support-card {
		padding: 30px 24px 24px;
	}

	.support-card-content h3 {
		font-size: 21px;
	}

	.support-card-highlight {
		font-size: 22px;
	}

}

@media (max-width: 420px) {

	.support-card {
		padding-right: 20px;
		padding-left: 20px;
	}

	.support-card-badge {
		position: static;
		align-self: flex-start;
		width: max-content;
		margin: -5px 0 20px;
	}

}