/**
 * =============================================================================
 * JATAÍ DESIGN — HERO DA ABELHA
 * -----------------------------------------------------------------------------
 * File: hero.css — v3 "product launch"
 * -----------------------------------------------------------------------------
 * Referência visual: páginas de lançamento de produto (tipografia grande e
 * confiante, muito espaço negativo, elementos de vidro/glass sutis, um
 * único acento de cor usado com moderação). A abelha fica sozinha no centro
 * — o conteúdo se organiza em duas faixas (topo e base), nunca por cima dela.
 *
 * Cores da marca:
 *   --jatai-gold  #ecc84d
 *   --jatai-black #0b0b0b
 * =============================================================================
 */

.jatai-bee-hero {
	--jatai-gold: #ecc84d;
	--jatai-gold-dark: #cfa93a;
	--jatai-black: #0b0b0b;

	/* Atualizadas via JS a cada movimento de mouse — usadas pelo glow. */
	--jatai-mx: 50%;
	--jatai-my: 50%;

	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 560px;
	overflow: hidden;
	background: var(--jatai-black);
}

/* =============================================================================
   VÍDEO DE FUNDO
============================================================================= */

.jatai-bee-hero__background {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.jatai-bee-hero__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	user-select: none;
	transform: translateZ(0);
	backface-visibility: hidden;
}

/* =============================================================================
   GLOW — brilho radial dourado que segue o mouse, tipo reflexo de vidro.
   Custa quase nada (só um background-position/gradient), e reforça a
   sensação de "produto premium reagindo à luz/ao toque".
============================================================================= */

.jatai-bee-hero__glow {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;

	background: radial-gradient(
		640px circle at var(--jatai-mx) var(--jatai-my),
		rgba(236, 200, 77, 0.16),
		rgba(236, 200, 77, 0.05) 32%,
		transparent 62%
	);
	mix-blend-mode: soft-light;
}

/* =============================================================================
   SCRIM — vinheta + gradiente de contraste
============================================================================= */

.jatai-bee-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;

	background:
		/* vinheta — escurece os cantos, foca o olhar no centro */
		radial-gradient(120% 85% at 50% 48%, transparent 45%, rgba(0, 0, 0, 0.5) 100%),
		/* gradiente vertical — garante leitura do texto no topo/base */
		linear-gradient(
			180deg,
			rgba(11, 11, 11, 0.62) 0%,
			rgba(11, 11, 11, 0.05) 26%,
			rgba(11, 11, 11, 0.08) 62%,
			rgba(11, 11, 11, 0.82) 100%
		);
}

/* =============================================================================
   TOPO — eyebrow (badge de vidro) + título
============================================================================= */

.jatai-bee-hero__top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;

	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 7vh 24px 0;
	text-align: center;

	opacity: 0;
	transform: translateY(-14px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.1s;
}

.jatai-bee-hero--ready .jatai-bee-hero__top {
	opacity: 1;
	transform: none;
}

/* Badge de vidro (glassmorphism) — pequeno, discreto, com blur real. */
.jatai-bee-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;

	padding: 9px 20px;
	border-radius: 999px;

	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);

	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);

	margin-bottom: 26px;
}

.jatai-bee-hero__eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--jatai-gold);
	box-shadow: 0 0 12px 2px rgba(236, 200, 77, 0.7);
	flex: none;
}

.jatai-bee-hero__title {
	font-size: clamp(1.9rem, 4.2vw, 3.25rem);
	line-height: 1.14;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
	max-width: 760px;
	margin: 0;
	text-wrap: balance;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}

.jatai-hero__highlight {
	color: var(--jatai-gold);
}

/* =============================================================================
   BASE — subtítulo + dock de vidro com os CTAs
============================================================================= */

.jatai-bee-hero__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;

	padding: 0 24px 6.5vh;
	text-align: center;

	opacity: 0;
	transform: translateY(14px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.28s;
}

.jatai-bee-hero--ready .jatai-bee-hero__bottom {
	opacity: 1;
	transform: none;
}

.jatai-bee-hero__subtitle {
	font-size: clamp(0.92rem, 1.35vw, 1.05rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 2px 5px rgba(0, 0, 0, 0.65);
	max-width: 460px;
	margin: 0;
}

/* Dock de vidro — os dois botões vivem dentro de uma "cápsula" só,
   estilo control-center/dock, em vez de dois botões soltos. */
.jatai-bee-hero__dock {
	display: inline-flex;
	align-items: center;
	gap: 4px;

	padding: 6px;
	border-radius: 999px;

	background: rgba(20, 20, 20, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 24px 60px -20px rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(22px) saturate(180%);
	-webkit-backdrop-filter: blur(22px) saturate(180%);
}

.jatai-bee-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 14px 26px;
	border-radius: 999px;

	font-size: 14.5px;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;

	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.jatai-bee-hero__btn:active {
	transform: scale(0.97);
}

/* Primário — preenchido em dourado, texto preto. */
.jatai-bee-hero__btn--primary {
	background: var(--jatai-gold);
	color: var(--jatai-black);
}

.jatai-bee-hero__btn--primary:hover,
.jatai-bee-hero__btn--primary:focus-visible {
	background: #fff;
}

/* Ghost — vive dentro do dock, sem fundo próprio (o vidro já é o dock). */
.jatai-bee-hero__btn--ghost {
	background: transparent;
	color: rgba(255, 255, 255, 0.88);
}

.jatai-bee-hero__btn--ghost:hover,
.jatai-bee-hero__btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

/* =============================================================================
   DICA DE INTERAÇÃO ("mova o mouse")
============================================================================= */

.jatai-bee-hero__hint {
	position: absolute;
	left: 50%;
	bottom: 26px;
	z-index: 10;
	transform: translateX(-50%);

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;

	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);

	opacity: 1;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.jatai-bee-hero__hint-track {
	position: relative;
	display: block;
	width: 1px;
	height: 22px;
	background: rgba(255, 255, 255, 0.35);
	overflow: hidden;
}

.jatai-bee-hero__hint-track::after {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--jatai-gold);
	animation: jatai-hint-drip 1.8s ease-in-out infinite;
}

.jatai-bee-hero--interacted .jatai-bee-hero__hint {
	opacity: 0;
}

@keyframes jatai-hint-drip {
	0% { top: -100%; }
	60% { top: 100%; }
	100% { top: 100%; }
}

/* =============================================================================
   RESPONSIVO
============================================================================= */

@media (max-width: 768px) {
	.jatai-bee-hero__top {
		padding-top: 6vh;
	}

	.jatai-bee-hero__bottom {
		padding-bottom: 5vh;
	}

	.jatai-bee-hero__dock {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
		background: rgba(20, 20, 20, 0.55);
	}

	.jatai-bee-hero__btn {
		width: 100%;
	}

	.jatai-bee-hero__hint {
		display: none; /* mobile usa touch-drag, dica de mouse não se aplica */
	}
}

@media (prefers-reduced-motion: reduce) {
	.jatai-bee-hero__top,
	.jatai-bee-hero__bottom,
	.jatai-bee-hero__btn,
	.jatai-bee-hero__hint-track::after {
		transition: none;
		animation: none;
		opacity: 1 !important;
		transform: none !important;
	}
}