/* ---------- Sticky header ---------- */
.site-header-sticky {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(31, 41, 55, 0.86);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(196, 241, 53, 0.15);
}

/* ---------- Eyebrow labels ---------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: #C4F135;
	font-family: 'Trebuchet MS', Tahoma, sans-serif;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.78rem;
	margin-bottom: 1.25rem;
}
.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: #C4F135;
	display: inline-block;
	flex-shrink: 0;
}

/* ---------- Scroll reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}
.path-card.reveal:nth-child(1) { transition-delay: 0s; }
.path-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.path-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.path-card.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Path cards ---------- */
.path-card {
	border: 1px solid rgba(156, 163, 175, 0.25);
	border-radius: 18px;
	padding: 2rem 1.75rem;
	transition: border-color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.path-card:hover {
	border-color: #C4F135;
	transform: translateY(-6px);
	background-color: rgba(196, 241, 53, 0.03);
}
.path-card .wp-block-heading {
	margin-top: 0;
}

/* ---------- Avatar ring (Sobre o especialista) ---------- */
.avatar-ring {
	width: 132px;
	height: 132px;
	min-width: 132px;
	border-radius: 50%;
	border: 2px solid #C4F135;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Trebuchet MS', Tahoma, sans-serif;
	font-weight: 700;
	font-size: 2.25rem;
	color: #C4F135;
	background: rgba(196, 241, 53, 0.06);
}

/* ---------- Hero heading highlight ---------- */
.hero-heading .hl {
	color: #C4F135;
}

/* ---------- Logo lockup with tagline ---------- */
.logo-lockup {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}
.logo-tagline {
	font-family: 'Trebuchet MS', Tahoma, sans-serif;
	font-weight: 700;
	font-size: 0.6rem;
	letter-spacing: 0.16em;
	color: #9CA3AF;
	text-transform: uppercase;
	margin-top: 3px;
}

/* ---------- Framed photos ---------- */
.framed-photo img {
	border-radius: 20px;
	border: 1px solid rgba(196, 241, 53, 0.25);
	width: 100%;
	height: auto;
	display: block;
}

/* ---------- Responsive tightening ---------- */
@media (max-width: 782px) {
	.avatar-ring {
		width: 96px;
		height: 96px;
		min-width: 96px;
		font-size: 1.6rem;
	}
}
