/* Hero das páginas internas.

   Mesmo padrão visual do topo da página "Sobre nós": imagem de fundo em
   full-bleed, vinheta escura por cima e o conteúdo alinhado à esquerda sobre
   ela. As regras vieram de lá (.sobre-hero) e foram renomeadas para .jrc-hero,
   para poderem ser reaproveitadas em qualquer página do tema. */

.jrc-hero {
	position: relative;
	width: 100%;
	min-height: clamp(560px, 85vh, 780px);
	overflow: hidden;
	background: #020617;
	isolation: isolate;
}

.jrc-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.85) contrast(1.08) brightness(0.78);
	transform: scale(1.04);
}

.jrc-hero__vignette {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.78) 22%, rgba(2, 6, 23, 0.5) 44%, rgba(2, 6, 23, 0.22) 64%, rgba(2, 6, 23, 0.05) 100%), linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0) 35%, rgba(2, 6, 23, 0.7) 100%);
	z-index: 1;
}

.jrc-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: clamp(560px, 85vh, 780px);
	padding-top: 140px;
	padding-bottom: 80px;
}

.jrc-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-technical);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(180, 197, 255, 0.92);
	margin-bottom: 28px;
}

.jrc-hero__eyebrow::before {
	content: '';
	width: 38px;
	height: 2px;
	background: linear-gradient(90deg, #2D5BFF, rgba(45, 91, 255, 0));
}

.jrc-hero__title {
	max-width: 920px;
	font-size: clamp(40px, 5.6vw, 56px);
	line-height: 0.98;
	color: #ffffff;
	margin: 0 0 28px;
}

.jrc-hero__subtitle {
	max-width: 620px;
	font-family: var(--font-body);
	font-weight: 300;
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.6;
	color: rgba(226, 232, 240, 0.86);
	margin: 0;
}
