.sobre-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 460px;
	padding: 62px 0 68px;
	color: var(--home-on-dark, #ffffff);
	background:
		linear-gradient(90deg, rgba(15, 23, 42, 0.84) 0%, rgba(0, 89, 49, 0.72) 50%, rgba(0, 89, 49, 0.32) 100%),
		var(--clarke-home-hero-image, image-set(url('/wp-content/uploads/2026/05/home-hero.avif') type('image/avif'), url('/wp-content/uploads/2026/05/home-hero.webp') type('image/webp')));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom: 1px solid rgba(0, 191, 111, 0.15);
	contain: layout style;
}

.sobre-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;
}

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

.sobre-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.88fr);
	gap: 54px;
	align-items: center;
}

.sobre-hero__content {
	width: 100%;
	max-width: 640px;
}

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

.sobre-hero__highlight {
	color: var(--home-green, #00bf6a);
}

.sobre-hero__lead {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.625;
}

.sobre-hero__video {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	background: rgba(4, 24, 17, 0.56);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
	aspect-ratio: 16 / 9;
}

.sobre-hero__video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 1024px) {
	.sobre-hero__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.sobre-hero__content {
		max-width: 760px;
	}

	.sobre-hero__video {
		max-width: 760px;
	}
}

@media (max-width: 640px) {
	.sobre-hero {
		min-height: auto;
		padding: 66px 0 50px;
	}

	.sobre-hero__grid {
		gap: 28px;
	}

	.sobre-hero h1 {
		font-size: var(--home-type-h1-mobile, 32px);
	}

	.sobre-hero__lead {
		font-size: 14px;
		line-height: 1.58;
	}

	.sobre-hero__video {
		border-radius: 12px;
	}
}
