.fc-hero {
	position: relative;
	overflow: hidden;
	min-height: 460px;
	padding: 62px 0 68px;
	color: #f8fafc;
	background: linear-gradient(274deg, var(--uzeda-topbar-start, #2e2e2e) 0%, var(--uzeda-topbar-end, #005931) 100%);
	border-bottom: 1px solid rgba(0, 191, 111, 0.15);
	isolation: isolate;
	contain: layout style;
}

.fc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(0, 191, 111, 0.06) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
}

.fc-hero .fc-container {
	position: relative;
	z-index: 1;
}

.fc-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
	gap: 48px;
	align-items: center;
}

.fc-hero__content {
	max-width: 720px;
	padding-top: 74px;
}

.fc-hero__media {
	min-height: 310px;
	background-image: url('https://clarke.com.br/wp-content/uploads/2025/05/raios.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.95;
}

.fc-hero h1 {
	margin: 0 0 34px;
	color: #ffffff;
	font-size: clamp(32px, 2.6vw + 16px, 44px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.fc-hero .home-heading__highlight {
	color: var(--fc-green, #00bf6a);
}

.fc-lead {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.625;
}

.fc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.fc-hero__button {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 20px;
	border-radius: 25px;
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fc-hero__button svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
}

.fc-hero__button--primary {
	color: #ffffff;
	background: linear-gradient(135deg, var(--fc-green, #00bf6a) 0%, #00a85c 100%);
	box-shadow: 0 14px 28px rgba(0, 191, 106, 0.22);
}

.fc-hero__button--primary:hover {
	color: #ffffff;
	background: linear-gradient(135deg, #00ad61 0%, #008f50 100%);
	transform: translateY(-1px);
}

.fc-hero__button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
}

.fc-hero__button--secondary:hover {
	border-color: rgba(255, 255, 255, 0.56);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-1px);
}

.fc-hero__button:focus-visible {
	outline: 3px solid rgba(0, 191, 106, 0.28);
	outline-offset: 3px;
}

@media (max-width: 768px) {
	.fc-hero {
		min-height: auto;
		padding: 54px 0 44px;
	}

	.fc-hero__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.fc-hero__content {
		padding-top: 0;
	}

	.fc-hero__media {
		min-height: 150px;
		background-position: left center;
	}

	.fc-hero h1 {
		margin-bottom: 18px;
		font-size: 30px;
	}

	.fc-lead {
		font-size: 15px;
	}

	.fc-hero__actions {
		margin-top: 22px;
	}
}

@media (max-width: 480px) {
	.fc-hero {
		padding: 46px 0 36px;
	}

	.fc-hero__media {
		min-height: 118px;
		opacity: 0.86;
	}

	.fc-hero h1 {
		font-size: 28px;
	}

	.fc-lead {
		font-size: 14.5px;
		line-height: 1.58;
	}

	.fc-hero__actions {
		gap: 10px;
	}

	.fc-hero__button {
		min-height: 40px;
		padding: 0 17px;
		font-size: 13px;
	}
}
