/* KOHË — utilidades custom (espelho do globals.css do Next.js) */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 5rem; /* compensa o header fixo nos âncoras */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	background-color: #2a2a2a;
	color: #F1F1F1;
	font-family: 'Inter', system-ui, sans-serif;
	margin: 0;
	overflow-x: hidden; /* trava scroll horizontal acidental */
}

/* Foco visível pra navegação por teclado (acessibilidade) */
:focus-visible {
	outline: 2px solid #84ac4f;
	outline-offset: 3px;
	border-radius: 2px;
}

/* Tap target mínimo em telas touch */
@media (hover: none) and (pointer: coarse) {
	a, button, [role="button"], summary, label[for] {
		min-height: 44px;
	}
}

::selection {
	background-color: #84ac4f;
	color: #2a2a2a;
}

.container-wrap {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1320px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 768px) {
	.container-wrap {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.eyebrow {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #a0a0a5;
}

/* Display = Bebas Neue — assinatura KOHË */
.display,
.display-roman {
	font-family: 'Bebas Neue', Impact, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 0.9;
	letter-spacing: 0.02em;
}
.display {
	font-style: italic;
}

.hairline {
	height: 1px;
	width: 100%;
	background-color: #3a3a3a;
}

/* Marquee horizontal */
@keyframes kohe-marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.animate-marquee {
	animation: kohe-marquee 30s linear infinite;
}

/* Reveal */
@keyframes kohe-fade-up {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
	animation: kohe-fade-up 0.9s ease-out both;
}

/* Live dot pulse */
@keyframes kohe-live-pulse {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.3; }
}
.animate-live {
	animation: kohe-live-pulse 1.6s ease-in-out infinite;
}

/* Stripes sutis pra background */
.stripes-soft {
	background-image: repeating-linear-gradient(
		135deg,
		transparent,
		transparent 12px,
		rgba(132, 172, 79, 0.06) 12px,
		rgba(132, 172, 79, 0.06) 13px
	);
}

/* Grain */
.grain {
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
	background-size: 3px 3px;
}

.vertical-rl {
	writing-mode: vertical-rl;
}

/* Highlight marker — pincelada verde-grama sobre palavra-chave */
.marker {
	position: relative;
	display: inline-block;
	color: #2a2a2a;
	isolation: isolate;
	padding: 0 0.12em;
}
.marker::before {
	content: "";
	position: absolute;
	inset: 0.12em -0.04em 0.04em -0.04em;
	background: #84ac4f;
	transform: skew(-3deg);
	z-index: -1;
}

/* Palavra outlined gigante de fundo */
.outlined-bg {
	color: transparent;
	-webkit-text-stroke: 1px rgba(241, 241, 241, 0.08);
}

/* Reveal ao rolar (aplicado via JS) */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
	will-change: opacity, transform;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal,
	.reveal.is-visible {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.animate-marquee,
	.animate-fade-up,
	.animate-live {
		animation: none !important;
	}
}

/* Hide WP admin bar overlap */
html { margin-top: 0 !important; }
* html body { margin-top: 0 !important; }
