/**
 * Hero interno premium — páginas internas (alinhamento central, linha no topo, glow).
 *
 * @package GoldenCross
 */

.page-hero.page-hero--premium {
	background:
		radial-gradient(ellipse 80% 50% at 80% 50%, rgba(0, 198, 255, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 20% 80%, rgba(240, 165, 0, 0.07) 0%, transparent 50%),
		linear-gradient(135deg, #080e17 0%, #0f1c2e 60%, #0d1b2a 100%);
	padding: 7rem 2rem 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 198, 255, 0.08);
}

.page-hero.page-hero--premium::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #00c6ff, #f0a500, transparent);
	z-index: 1;
}

.page-hero.page-hero--premium .page-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--container-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.page-hero.page-hero--premium .page-hero-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #00c6ff;
	margin-bottom: 1rem;
	padding: 5px 16px;
	background: rgba(0, 198, 255, 0.08);
	border: 1px solid rgba(0, 198, 255, 0.2);
	border-radius: 100px;
}

.page-hero.page-hero--premium .page-hero-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 1rem;
	max-width: min(42rem, 92vw);
}

.page-hero.page-hero--premium .page-hero-title .highlight {
	background: linear-gradient(90deg, #00c6ff, #0072ff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page-hero.page-hero--premium .page-hero-subtitle {
	font-size: 1.0625rem;
	color: #a8b8cc;
	max-width: 560px;
	margin: 0;
	line-height: 1.7;
}

.page-hero.page-hero--premium .page-hero__meta {
	margin: 1rem 0 0;
	font-size: 0.9375rem;
	color: #a8b8cc;
	max-width: 36rem;
}

@media (max-width: 1024px) {
	.page-hero.page-hero--premium {
		padding: 6rem 1.25rem 3rem;
	}
}
