/* ==================================================
   RACKET ZONE — "As Quatro Superfícies"
   Layout imersivo 3D · scroll cinematográfico
   ================================================== */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Brand */
	--lime: #c4d33a;
	--lime-bright: #d9eb47;
	--ink: #0d1117;

	/* Superfícies (acentos por capítulo) */
	--hard-blue: #3d8bdd;
	--clay: #e07a4e;
	--grass: #6db96f;
	--indoor: #6f8bf5;
	--hard-green: #3fae8c;

	--accent: var(--hard-blue);

	/* Texto sobre cena escura */
	--text: #f5f7f2;
	--text-muted: rgba(245, 247, 242, 0.72);
	--text-faint: rgba(245, 247, 242, 0.45);

	/* Painéis "vidro" */
	--glass: rgba(8, 12, 16, 0.55);
	--glass-strong: rgba(8, 12, 16, 0.78);
	--glass-line: rgba(255, 255, 255, 0.14);

	--font-display: 'Inter', sans-serif;
	--font-body: 'Inter', sans-serif;

	--max-width: 1200px;
	--gutter: 24px;
	--radius: 18px;
	--transition: 0.3s ease;
}

body[data-chapter='hero'] { --accent: var(--hard-blue); }
body[data-chapter='conecte'] { --accent: var(--grass); }
body[data-chapter='jogue'] { --accent: var(--clay); }
body[data-chapter='registre'] { --accent: var(--indoor); }
body[data-chapter='evolua'] { --accent: var(--hard-green); }
body[data-chapter='noturna'] { --accent: var(--lime); }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	font-family: var(--font-body);
	background: #0a1626;
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.015em;
}

::selection { background: var(--lime); color: #131a10; }

/* ---------- Cena 3D fixa ---------- */

#scene {
	position: fixed;
	inset: 0;
	z-index: 0;
	display: block;
}

.scene-vignette {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(
		ellipse at 50% 45%,
		transparent 45%,
		rgba(0, 0, 0, 0.42) 100%
	);
}

/* Fallback sem WebGL: gradientes por capítulo */
body.no-webgl #scene { display: none; }
body.no-webgl { transition: background 0.8s ease; }
body.no-webgl[data-chapter='hero'] { background: linear-gradient(180deg, #0b1d33, #16406e); }
body.no-webgl[data-chapter='conecte'] { background: linear-gradient(180deg, #0c1c10, #245c2e); }
body.no-webgl[data-chapter='jogue'] { background: linear-gradient(180deg, #20100a, #8e3f24); }
body.no-webgl[data-chapter='registre'] { background: linear-gradient(180deg, #0a1026, #1d3a7a); }
body.no-webgl[data-chapter='evolua'] { background: linear-gradient(180deg, #06130e, #14483b); }
body.no-webgl[data-chapter='noturna'] { background: #030408; }

/* ---------- Conteúdo acima da cena ---------- */

.site { position: relative; z-index: 2; }

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

/* ---------- Header ---------- */

.header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	transition: background var(--transition), border-color var(--transition);
	border-bottom: 1px solid transparent;
}

.header.is-scrolled {
	background: rgba(5, 8, 12, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: var(--glass-line);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 78px;
	transition: height var(--transition);
}

.header.is-scrolled .header__inner { height: 66px; }

.header__logo img { height: 28px; width: auto; }

/* Cápsula de vidro do menu */

.header__nav {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 5px;
	border-radius: 999px;
	background: rgba(8, 12, 16, 0.42);
	border: 1px solid var(--glass-line);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.header__nav a {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
	--nav-c: var(--text-muted);
	transition: color var(--transition);
}

.header__nav a:hover { color: var(--text); --nav-c: var(--text); }
.header__nav a.is-active { color: var(--text); --nav-c: var(--text); }

/* Indicador deslizante — segue o hover e o capítulo ativo,
   na cor da superfície atual (--accent) */

.header__nav-indicator {
	position: absolute;
	top: 5px;
	bottom: 5px;
	left: 0;
	width: 0;
	border-radius: 999px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.14),
		rgba(255, 255, 255, 0.06)
	);
	box-shadow:
		inset 0 0 0 1px var(--glass-line),
		0 0 18px -6px var(--accent);
	opacity: 0;
	transition:
		left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		opacity var(--transition),
		box-shadow 0.6s ease;
	pointer-events: none;
}

.header__nav-indicator::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -1px;
	transform: translateX(-50%);
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--accent);
	transition: background 0.6s ease;
}

.header__nav-indicator.is-on { opacity: 1; }

/* Texto com flip no hover — as duas cópias vivem em pseudo-elementos
   e o clipping acontece no próprio span, sem vazar para fora do link */

.nav-flip {
	position: relative;
	display: block;
	overflow: hidden;
	color: transparent; /* o texto real só reserva o espaço */
}

.nav-flip::before,
.nav-flip::after {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-flip::before { color: var(--nav-c, var(--text-muted)); }

.nav-flip::after {
	top: 100%;
	color: var(--lime-bright);
}

.header__nav a:hover .nav-flip::before,
.header__nav a:hover .nav-flip::after {
	transform: translateY(-100%);
}

/* Barra de progresso do scroll */

.header__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	overflow: hidden;
	pointer-events: none;
}

.header__progress i {
	display: block;
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--hard-blue),
		var(--clay),
		var(--grass),
		var(--hard-green),
		var(--lime)
	);
	transform: scaleX(0);
	transform-origin: left;
}

.header__actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px;
	border: 1px solid var(--glass-line);
	border-radius: 999px;
	background: rgba(8, 12, 16, 0.42);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.lang-switch__opt {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	opacity: 0.45;
	filter: saturate(0.55);
	transition: opacity var(--transition), transform var(--transition),
		box-shadow var(--transition), filter var(--transition);
}

.lang-switch__opt img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.lang-switch__opt:hover {
	opacity: 1;
	filter: none;
	transform: translateY(-1px);
}

.lang-switch__opt.is-active {
	opacity: 1;
	filter: none;
	box-shadow: 0 0 0 2px var(--lime);
}

/* ---------- Botões ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 30px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}

.btn--primary { background: var(--lime); color: #131a10; }

.btn--primary:hover {
	background: var(--lime-bright);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(196, 211, 58, 0.3);
}

.btn--ghost { border-color: var(--glass-line); color: var(--text); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }

.header__cta { padding: 10px 22px; font-size: 14px; }

/* ---------- Menu mobile ---------- */

.header__burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 42px; height: 42px;
	position: relative;
	z-index: 60;
}

.header__burger span {
	display: block;
	width: 22px; height: 2px;
	background: var(--text);
	margin: 5px auto;
	border-radius: 2px;
	transition: var(--transition);
}

.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
	.header__burger { display: block; }
	.header__cta { display: none; }

	.header__nav {
		position: fixed;
		inset: 0;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		gap: 8px;
		padding: 0 clamp(28px, 10vw, 80px);
		border: none;
		border-radius: 0;
		background:
			radial-gradient(560px 380px at 88% 12%, rgba(196, 211, 58, 0.14), transparent 70%),
			radial-gradient(480px 360px at 8% 92%, rgba(61, 139, 221, 0.12), transparent 70%),
			rgba(5, 8, 12, 0.96);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		transform: translateX(100%);
		transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
		z-index: 55;
		counter-reset: navitem;
	}

	.header__nav.is-open { transform: none; }

	.header__nav-indicator { display: none; }

	.header__nav a {
		display: flex;
		align-items: baseline;
		gap: 16px;
		width: 100%;
		padding: 12px 0;
		overflow: visible;
		border-radius: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		font-size: clamp(26px, 6.5vw, 34px);
		font-family: var(--font-display);
		font-weight: 600;
		color: var(--text);
		counter-increment: navitem;

		/* estado inicial p/ animação em cascata */
		opacity: 0;
		transform: translateY(26px);
		transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
			color var(--transition);
	}

	.header__nav a::before {
		content: counter(navitem, decimal-leading-zero);
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 0.1em;
		color: var(--lime);
	}

	.header__nav a:hover { color: var(--lime-bright); }

	.header__nav.is-open a { opacity: 1; transform: none; }
	.header__nav.is-open a:nth-child(2) { transition-delay: 0.08s; }
	.header__nav.is-open a:nth-child(3) { transition-delay: 0.14s; }
	.header__nav.is-open a:nth-child(4) { transition-delay: 0.2s; }
	.header__nav.is-open a:nth-child(5) { transition-delay: 0.26s; }
	.header__nav.is-open a:nth-child(6) { transition-delay: 0.32s; }

	/* desativa o flip no mobile: texto normal, sem pseudo-cópias */
	.nav-flip { color: inherit; overflow: visible; }
	.nav-flip::before,
	.nav-flip::after { display: none; }
}

/* ---------- Seções / capítulos ---------- */

.chapter {
	min-height: 130vh;
	display: flex;
	align-items: center;
	padding: 140px 0;
	position: relative;
}

.chapter--hero { min-height: 100vh; padding-top: 0; padding-bottom: 0; }

.chapter--hero .container { width: 100%; }

.panel {
	background: var(--glass);
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 44px 48px;
	max-width: 620px;
}

.panel--wide { max-width: 100%; }

.chapter__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 18px;
	transition: color 0.6s ease;
}

.chapter__eyebrow::before {
	content: '';
	width: 30px; height: 2px;
	background: var(--accent);
	border-radius: 2px;
	transition: background 0.6s ease;
}

.chapter__title {
	font-size: clamp(30px, 4.6vw, 50px);
	margin-bottom: 18px;
}

.chapter__title em {
	font-style: normal;
	color: var(--lime);
}

.chapter__text {
	color: var(--text-muted);
	font-size: 17px;
	max-width: 520px;
}

.chapter__list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.chapter__list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: var(--text-muted);
	font-size: 15px;
}

.chapter__list li::before {
	content: '●';
	color: var(--lime);
	font-size: 9px;
	margin-top: 7px;
	flex-shrink: 0;
}

/* layout capítulo com mídia */
.chapter__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
	width: 100%;
}

.chapter__grid--flip > .chapter__media { order: -1; }

.chapter__media { display: flex; justify-content: center; gap: 20px; }

.chapter__media img {
	width: min(280px, 90%);
	border-radius: 28px;
	filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.6));
	transform-style: preserve-3d;
}

.chapter__media--duo img { width: min(240px, 44%); }
.chapter__media--duo img:last-child { margin-top: 56px; }

@media (max-width: 920px) {
	.chapter { min-height: auto; padding: 90px 0; }
	.chapter__grid { grid-template-columns: 1fr; gap: 36px; }
	.chapter__grid--flip > .chapter__media { order: 0; }
	.panel { padding: 30px 26px; }
}

/* ---------- Capítulo showcase (carrossel de telas) ---------- */

.chapter--showcase { min-height: 150vh; }

.chapter--showcase .container {
	display: flex;
	flex-direction: column;
	gap: 44px;
	width: 100%;
}

.showcase__head { max-width: 680px; }

.showcase__head .panel { max-width: 100%; }

/* Capítulo 1: texto à esquerda, carrossel 3D à direita */

.showcase__split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	width: 100%;
}

.showcase__split .panel { max-width: 100%; }

.showcase__split .deck__slide { width: clamp(180px, 16vw, 225px); }

.showcase__split .deck__stage {
	height: calc(clamp(180px, 16vw, 225px) * 2.12 + 76px);
}

@media (max-width: 1024px) {
	.showcase__split {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.showcase__split .deck__slide { width: min(60vw, 240px); }

	.showcase__split .deck__stage {
		height: calc(min(60vw, 240px) * 2.12 + 76px);
	}
}

/* ---------- Passos com ícones (capítulo 1 · versão B) ---------- */

.steps {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* linha pontilhada conectando os ícones */
.steps::before {
	content: '';
	position: absolute;
	left: 27px;
	top: 34px;
	bottom: 34px;
	width: 2px;
	background: repeating-linear-gradient(
		180deg,
		var(--glass-line) 0 6px,
		transparent 6px 14px
	);
}

.step {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	background: var(--glass);
	border: 1px solid var(--glass-line);
	border-radius: 16px;
	padding: 14px 20px 14px 14px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: transform var(--transition), border-color var(--transition),
		box-shadow var(--transition);
}

.step:hover {
	transform: translateX(8px);
	border-color: var(--accent);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.step__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 15px;
	font-size: 24px;
	background: rgba(196, 211, 58, 0.1);
	border: 1px solid rgba(196, 211, 58, 0.35);
	box-shadow: 0 0 22px -8px rgba(196, 211, 58, 0.5);
	transition: transform var(--transition);
}

.step:hover .step__icon { transform: scale(1.08) rotate(-4deg); }

.step__num {
	display: block;
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	transition: color 0.6s ease;
}

.step__body h3 {
	font-size: 15.5px;
	margin: 2px 0 3px;
}

.step__body p {
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--text-muted);
}


.carousel {
	position: relative;
}

.carousel__track {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 10px 4px 26px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
}

.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel__track.is-dragging * { pointer-events: none; }

.carousel__item {
	flex: 0 0 auto;
	width: clamp(210px, 23vw, 260px);
	scroll-snap-align: center;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.carousel__item img {
	width: 100%;
	border-radius: 30px;
	filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.5));
	-webkit-user-drag: none;
	user-select: none;
}

.carousel__caption {
	text-align: center;
}

.carousel__caption strong {
	display: block;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
}

.carousel__caption span {
	font-size: 12.5px;
	color: var(--text-muted);
}

.carousel__hint {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	transition: color 0.6s ease;
}

.carousel__hint::after {
	content: '→';
	font-size: 16px;
	animation: nudge 1.6s ease-in-out infinite;
}

@keyframes nudge {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(6px); }
}

/* ---------- Botão voltar ao topo ---------- */

.to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--glass-line);
	background: var(--glass-strong);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--text);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity var(--transition), transform var(--transition),
		visibility var(--transition), border-color var(--transition),
		color var(--transition), box-shadow var(--transition);
}

.to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.to-top:hover {
	border-color: var(--lime);
	color: var(--lime);
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

@media (max-width: 720px) {
	.to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}
}

/* ---------- Pilha de cards (capítulo 1 · Conecte) ---------- */

.stack {
	max-width: 620px;
	margin: 0 auto;
	width: 100%;
}

.showcase__split .stack { max-width: none; }

.stack__cards {
	position: relative;
	height: 430px;
	touch-action: pan-y;
}

.stack__card {
	position: absolute;
	top: 24px;
	left: 50%;
	width: min(540px, 100%);
	margin: 0;
	background: var(--glass-strong);
	border: 1px solid var(--glass-line);
	border-radius: 20px;
	padding: 24px 26px 26px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transform: translateX(-50%);
	will-change: transform, opacity;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease, border-color var(--transition);
}

.stack__card.is-front {
	border-color: var(--accent);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
	cursor: pointer;
}

.stack__vignette {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 10px 14px;
	margin-bottom: 18px;
}

.stack__vignette svg {
	display: block;
	width: 100%;
	height: 150px;
}

/* controles abaixo da pilha, nunca sobre o card */
.stack .deck__controls {
	position: relative;
	z-index: 40;
	margin-top: 18px;
}

.stack__num {
	display: block;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 6px;
	transition: color 0.6s ease;
}

.stack__info h3 {
	font-size: 19px;
	margin-bottom: 6px;
}

.stack__info p {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--text-muted);
}

@media (max-width: 720px) {
	.stack__cards { height: 460px; }
	.stack__card { padding: 20px 20px 22px; }
	.stack__vignette svg { height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
	.stack__card { transition: opacity 0.3s ease; }
}

/* ---------- Mapa dinâmico (capítulo 2 · Jogue) ---------- */

.geomap {
	position: relative;
	width: 100%;
	height: clamp(420px, 46vw, 540px);
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--glass-line);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.geomap__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* você (centro) + radar */

.geomap__me {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--lime-bright);
	border: 2.5px solid #10130a;
	box-shadow: 0 0 0 4px rgba(217, 235, 71, 0.25), 0 0 24px rgba(217, 235, 71, 0.7);
	transform: translate(-50%, -50%);
}

.geomap__ring {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: min(340px, 70%);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1.5px solid rgba(217, 235, 71, 0.5);
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
	animation: geomap-ring 3.6s ease-out infinite;
	pointer-events: none;
}

.geomap__ring--2 { animation-delay: 1.8s; }

@keyframes geomap-ring {
	0% { transform: translate(-50%, -50%) scale(0.08); opacity: 0.9; }
	100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* pins de jogadores */

.geomap__pin {
	position: absolute;
	z-index: 3;
	width: 30px;
	height: 36px;
	transform: translate(-50%, -100%);
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 36'%3E%3Cpath d='M15 35 L9 22 h12z' fill='%23d9eb47'/%3E%3Ccircle cx='15' cy='13' r='12' fill='%23d9eb47'/%3E%3Ccircle cx='15' cy='10' r='3.4' fill='%23161a10'/%3E%3Cpath d='M8.5 19.5 a6.5 5 0 0 1 13 0z' fill='%23161a10'/%3E%3C/svg%3E")
		center / contain no-repeat;
	filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.5));
	animation: geomap-pin 3s ease-in-out infinite;
}

@keyframes geomap-pin {
	0%, 100% { transform: translate(-50%, -100%); }
	50% { transform: translate(-50%, calc(-100% - 6px)); }
}

/* popups que se revezam */

.geomap__pop {
	position: absolute;
	z-index: 4;
	width: 176px;
	background: #fafbf5;
	border-radius: 14px;
	padding: 12px 14px 14px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: translateY(12px) scale(0.92);
	transform-origin: bottom center;
	transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.geomap__pop::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 14px;
	height: 14px;
	background: #fafbf5;
	border-radius: 2px;
	transform: translateX(-50%) rotate(45deg);
}

.geomap__pop.is-on {
	opacity: 1;
	transform: none;
}

.geomap__pop-tag {
	display: block;
	font-family: var(--font-display);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7b8069;
	margin-bottom: 9px;
}

.geomap__pop-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.geomap__avatar {
	flex: none;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #e2996f, #b85a35);
}

.geomap__bars { flex: 1; min-width: 0; }

.geomap__bars b {
	display: block;
	height: 8px;
	border-radius: 4px;
	background: #454a3c;
	margin: 5px 0;
}

.geomap__bars--center {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.geomap__chips {
	display: flex;
	gap: 6px;
	margin-top: 10px;
}

.geomap__chips i {
	width: 40px;
	height: 17px;
	border-radius: 9px;
	background: rgba(196, 211, 58, 0.35);
	border: 1px solid rgba(140, 155, 40, 0.45);
}

.geomap__alert {
	flex: none;
	width: 36px;
	height: 17px;
	border-radius: 9px;
	background: #ff4f57;
}

.geomap__pop-club {
	position: relative;
	height: 52px;
	margin-bottom: 16px;
}

.geomap__club-photo {
	position: absolute;
	inset: 0;
	border-radius: 9px;
	background: linear-gradient(180deg, #b85a35, #8a3d22);
	overflow: hidden;
}

.geomap__club-photo::after {
	content: '';
	position: absolute;
	inset: 9px 16px;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.geomap__club-logo {
	position: absolute;
	left: 50%;
	bottom: -11px;
	transform: translateX(-50%);
	width: 27px;
	height: 27px;
	border-radius: 50%;
	background: #46553d;
	border: 2px solid #fafbf5;
}

@media (max-width: 920px) {
	.geomap { height: 400px; }
}

@media (prefers-reduced-motion: reduce) {
	.geomap__ring,
	.geomap__pin { animation: none; }
	.geomap__ring { opacity: 0.25; transform: translate(-50%, -50%) scale(0.7); }
	.geomap__pop { transition: opacity 0.3s ease; transform: none; }
}

/* ---------- Deck 3D de mockups (capítulo 1) ---------- */

.deck { position: relative; }

.deck__stage {
	position: relative;
	height: calc(clamp(210px, 23vw, 260px) * 2.12 + 76px);
	perspective: 1400px;
	touch-action: pan-y;
}

.deck__slide {
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(210px, 23vw, 260px);
	margin: 0;
	cursor: pointer;
	will-change: transform;
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease,
		filter 0.55s ease;
}

.deck__slide img {
	width: 100%;
	border-radius: 30px;
	filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.5));
	-webkit-user-drag: none;
	user-select: none;
	pointer-events: none;
}

.deck__slide figcaption {
	text-align: center;
	margin-top: 14px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s ease 0.18s, transform 0.4s ease 0.18s;
}

.deck__slide.is-active { cursor: default; }
.deck__slide.is-active figcaption { opacity: 1; transform: none; }

.deck__slide figcaption strong {
	display: block;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
}

.deck__slide figcaption span {
	font-size: 12.5px;
	color: var(--text-muted);
}

.deck__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 10px;
}

.deck__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--glass-line);
	background: var(--glass);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--text);
	font-size: 17px;
	cursor: pointer;
	transition: var(--transition);
}

.deck__arrow:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-2px);
}

.deck__dots { display: flex; gap: 8px; }

.deck__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: var(--transition);
}

.deck__dot:hover { background: rgba(255, 255, 255, 0.5); }

.deck__dot.is-active {
	width: 26px;
	background: var(--accent);
}

@media (max-width: 920px) {
	.chapter--showcase { min-height: auto; }
	.carousel__item { width: 74vw; }

	.deck__slide { width: min(60vw, 240px); }
	.deck__stage { height: calc(min(60vw, 240px) * 2.12 + 76px); }
}

@media (prefers-reduced-motion: reduce) {
	.carousel__hint::after { animation: none; }
	.deck__slide { transition: opacity 0.3s ease; }
}

/* ---------- Hero ---------- */

.hero__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 100vh;
	padding-top: 30px;
	/* sobe o bloco para o subtítulo cair no céu escuro,
	   acima do horizonte da quadra */
	padding-bottom: clamp(90px, 18vh, 220px);
	max-width: 940px;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(196, 211, 58, 0.12);
	border: 1px solid rgba(196, 211, 58, 0.4);
	color: var(--lime);
	font-size: 13px;
	font-weight: 500;
	padding: 8px 18px;
	border-radius: 999px;
	margin-bottom: 26px;
	backdrop-filter: blur(8px);
}

.hero__title {
	font-size: clamp(40px, 7vw, 84px);
	letter-spacing: -0.03em;
	text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; }
.hero__title em { font-style: normal; color: var(--lime); }

.hero__subtitle {
	color: var(--text);
	font-size: clamp(16px, 1.6vw, 19px);
	font-weight: 500;
	margin-top: 24px;
	max-width: 520px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 2px 26px rgba(0, 0, 0, 0.85);
}

.store-badges { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.store-badges img { height: 50px; width: auto; }

.hero__scroll-hint {
	position: absolute;
	bottom: 34px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--text-faint);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-family: var(--font-display);
}

.hero__scroll-hint::after {
	content: '';
	width: 1.5px;
	height: 42px;
	background: linear-gradient(var(--lime), transparent);
	animation: drip 1.8s ease-in-out infinite;
}

@keyframes drip {
	0% { transform: scaleY(0); transform-origin: top; }
	55% { transform: scaleY(1); transform-origin: top; }
	100% { transform: scaleY(1); opacity: 0; }
}

/* faixa de esportes */
.sports-marquee {
	position: absolute;
	bottom: 0;
	left: 0; right: 0;
	overflow: hidden;
	border-top: 1px solid var(--glass-line);
	background: rgba(5, 8, 12, 0.5);
	backdrop-filter: blur(10px);
	padding: 14px 0;
}

.sports-marquee__track {
	display: flex;
	gap: 48px;
	width: max-content;
	animation: marquee 26s linear infinite;
	font-family: var(--font-display);
	font-size: 14px;
	color: var(--text-muted);
	white-space: nowrap;
}

.sports-marquee__track strong { color: var(--lime); font-weight: 600; }

@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- Contadores ---------- */

.stats-row {
	display: flex;
	gap: 36px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 32px;
	color: var(--lime);
	line-height: 1.1;
}

.stat span { font-size: 13px; color: var(--text-muted); }

/* ---------- Cards de feature (capítulo Evolua) ---------- */

.evolua__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 16px;
	margin-top: 32px;
	width: 100%;
}

.mini-card {
	background: var(--glass-strong);
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	backdrop-filter: blur(12px);
	padding: 22px;
	transition: var(--transition);
}

.mini-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.mini-card h3 {
	font-size: 16px;
	margin: 10px 0 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mini-card p { font-size: 13.5px; color: var(--text-muted); }

.mini-card__icon { font-size: 22px; }

.tag-premium {
	display: inline-block;
	background: var(--lime);
	color: #131a10;
	font-family: var(--font-display);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	vertical-align: middle;
}

/* ---------- Sessão noturna ---------- */

.night {
	min-height: 110vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 48px;
	padding: 120px 0;
}

.night__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: stretch;
}

/* Destaque único de download sobre a quadra preta */

.night__download {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.night__download h2 {
	font-size: clamp(36px, 5vw, 62px);
	letter-spacing: -0.02em;
	margin: 14px 0 18px;
	text-shadow: 0 6px 50px rgba(0, 0, 0, 0.7);
}

.night__download h2 em {
	font-style: normal;
	color: var(--lime);
}

.night__download > p {
	color: var(--text);
	font-size: clamp(16px, 1.7vw, 19px);
	max-width: 560px;
	margin-bottom: 34px;
	font-weight: 500;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 2px 26px rgba(0, 0, 0, 0.85);
}

.store-badges--lg { justify-content: center; }

.store-badges--lg img {
	height: 62px;
	filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
	transition: transform var(--transition);
}

.store-badges--lg a:hover img {
	transform: translateY(-3px) scale(1.03);
}

.night__note {
	margin-top: 26px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-faint);
}

.night__card {
	background: var(--glass-strong);
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	backdrop-filter: blur(14px);
	padding: 40px;
}

.night__card h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.night__card h2 em { font-style: normal; color: var(--lime); }
.night__card > p { color: var(--text-muted); margin-bottom: 24px; }

.newsletter-form { display: flex; gap: 12px; }

.newsletter-form .field { flex: 1; border-radius: 999px; padding: 15px 24px; }

.field {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--glass-line);
	border-radius: 12px;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	padding: 14px 18px;
	transition: var(--transition);
}

.field::placeholder { color: var(--text-faint); }

.field:focus {
	outline: none;
	border-color: var(--lime);
	box-shadow: 0 0 0 3px rgba(196, 211, 58, 0.18);
}

textarea.field { min-height: 150px; resize: vertical; }

.form-feedback { font-size: 14px; margin-top: 12px; display: none; }
.form-feedback.success { display: block; color: var(--lime); }
.form-feedback.error { display: block; color: #ff8a70; }

.newsletter-hint { font-size: 12px; color: var(--text-faint); margin-top: 12px; }
.newsletter-hint a { text-decoration: underline; }

@media (max-width: 920px) {
	.night__grid { grid-template-columns: 1fr; }
	.newsletter-form { flex-direction: column; }
	.night__card { padding: 28px 24px; }
}

/* ---------- Footer ---------- */

.footer {
	position: relative;
	z-index: 2;
	background: rgba(4, 6, 9, 0.92);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--glass-line);
	padding: 64px 0 0;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 44px;
	padding-bottom: 48px;
}

.footer__brand img { height: 50px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; }

.footer__social { display: flex; gap: 12px; margin-top: 18px; }

.footer__social a {
	width: 40px; height: 40px;
	border: 1px solid var(--glass-line);
	border-radius: 20px;
	display: flex;
	transition: var(--transition);
}

.footer__social a:hover { border-color: var(--lime); }
.footer__social img { width: 40px; height: 40px; }

.footer__col h4 { font-size: 15px; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col p { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.footer__col a:hover { color: var(--lime); }

.footer__col p.footer__address {
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--text-faint);
	margin-top: 4px;
}

.footer__contact-item { display: flex; align-items: center; gap: 10px; }
.footer__contact-item img { width: 20px; height: 20px; }

.footer__bottom { border-top: 1px solid var(--glass-line); padding: 22px 0; }

.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--text-faint);
}

.footer__developed { display: flex; align-items: center; gap: 10px; }
.footer__developed img { height: 18px; width: auto; opacity: 0.7; }

.footer__cookie-links { display: flex; align-items: center; gap: 18px; }
.footer__cookie-links a { color: var(--text-faint); text-decoration: none; font-size: 13px; }
.footer__cookie-links a:hover { color: var(--lime); }

@media (max-width: 920px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Reveals ---------- */

.reveal { opacity: 0; transform: translateY(34px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s ease; }

/* ---------- Páginas internas ---------- */

.page-body {
	background: linear-gradient(180deg, #0a1626 0%, #07101c 100%);
}

.page-body .header {
	background: rgba(5, 8, 12, 0.72);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: var(--glass-line);
}

.page-body .site { min-height: 100vh; display: flex; flex-direction: column; }
.page-body main { flex: 1; }

.page-hero {
	position: relative;
	padding: 160px 0 70px;
	border-bottom: 1px solid var(--glass-line);
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: -10% -5%;
	background:
		linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 100% 200px,
		linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 200px 100%;
	pointer-events: none;
}

.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); max-width: 760px; position: relative; }
.page-hero p { color: var(--text-muted); margin-top: 16px; max-width: 640px; font-size: 17px; position: relative; }
.page-hero a { color: var(--lime); text-decoration: underline; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lime);
	margin-bottom: 16px;
	position: relative;
}

.eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--lime); border-radius: 2px; }

/* FAQ */
.faq-page { padding: 64px 0 96px; }
.faq-page__group { max-width: 820px; margin: 0 auto 44px; }
.faq-page__group h2 { font-size: 21px; margin-bottom: 22px; color: var(--lime); }

.accordion-item {
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	background: var(--glass);
	backdrop-filter: blur(10px);
	margin-bottom: 14px;
	overflow: hidden;
	transition: var(--transition);
}

.accordion-item.is-open { border-color: rgba(196, 211, 58, 0.5); }

.accordion-item__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 21px 26px;
	color: var(--text);
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 500;
	text-align: left;
}

.accordion-item__btn::after {
	content: '+';
	font-size: 24px;
	color: var(--lime);
	flex-shrink: 0;
	transition: transform var(--transition);
	line-height: 1;
}

.accordion-item.is-open .accordion-item__btn::after { transform: rotate(45deg); }

.accordion-item__content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-item__content p { padding: 0 26px 22px; color: var(--text-muted); font-size: 15px; }

/* Contato */
.contact-page { padding: 64px 0 96px; }

.contact-page__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 56px;
	align-items: flex-start;
}

.contact-page__info h2 { font-size: 25px; margin-bottom: 14px; }
.contact-page__info > p { color: var(--text-muted); margin-bottom: 28px; }

.contact-page__channels { display: flex; flex-direction: column; gap: 16px; }

.contact-page__channel {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--glass);
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	backdrop-filter: blur(10px);
	padding: 17px 22px;
	transition: var(--transition);
}

.contact-page__channel:hover { border-color: rgba(196, 211, 58, 0.5); }
.contact-page__channel img { width: 22px; height: 22px; }
.contact-page__channel strong { display: block; font-family: var(--font-display); font-size: 14px; }
.contact-page__channel span { font-size: 14px; color: var(--text-muted); }

.contact-page__address { font-size: 14px; color: var(--text-faint); margin-top: 22px; line-height: 1.7; }

.contact-form {
	background: var(--glass);
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	backdrop-filter: blur(12px);
	padding: 38px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

@media (max-width: 920px) {
	.contact-page__grid { grid-template-columns: 1fr; }
	.contact-form { padding: 26px 22px; }
	.contact-form__row { grid-template-columns: 1fr; }
}

/* Legal */
.legal { padding: 56px 0 96px; }
.legal__content { max-width: 800px; margin: 0 auto; }
.legal__updated { font-size: 13px; color: var(--text-faint); margin-bottom: 36px; }
.legal__content h2 { font-size: 21px; margin: 42px 0 14px; }
.legal__content h3 { font-size: 17px; margin: 26px 0 10px; color: var(--lime); }
.legal__content p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 14px; }
.legal__content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.legal__content ul li { color: var(--text-muted); font-size: 15.5px; }
.legal__content a { color: var(--lime); text-decoration: underline; }

.legal__toc {
	background: var(--glass);
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	padding: 22px 26px;
	margin-bottom: 36px;
}

.legal__toc strong { font-family: var(--font-display); display: block; margin-bottom: 10px; font-size: 14px; }
.legal__toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.legal__toc ol li { font-size: 14px; }
.legal__toc a { color: var(--text-muted); text-decoration: none; }
.legal__toc a:hover { color: var(--lime); }

/* ---------- Acessibilidade / performance ---------- */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.sports-marquee__track { animation: none; }
	.hero__scroll-hint::after { animation: none; }
}

/* ---------- Banner de cookies ---------- */

.cookie-banner {
	position: fixed;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	z-index: 9999;
	width: min(920px, calc(100% - 32px));
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 18px 22px;
	background: var(--glass-strong);
	border: 1px solid var(--glass-line);
	border-radius: var(--radius);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
	animation: cookie-in 0.35s ease both;
}

@keyframes cookie-in {
	from { opacity: 0; transform: translate(-50%, 16px); }
	to { opacity: 1; transform: translate(-50%, 0); }
}

.cookie-banner__text {
	flex: 1 1 auto;
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.5;
}

.cookie-banner__link { color: var(--lime); text-decoration: underline; white-space: nowrap; }

.cookie-banner__actions {
	flex: 0 0 auto;
	display: flex;
	gap: 10px;
}

/* Aceitar e Recusar têm o MESMO peso visual (exigência do Guia de Cookies da ANPD) */
.cookie-banner__btn { padding: 11px 24px; font-size: 14px; }
.cookie-banner__btn--accept { background: var(--lime); color: #131a10; }
.cookie-banner__btn--accept:hover { background: var(--lime-bright); transform: translateY(-2px); }
.cookie-banner__btn--reject { background: transparent; border-color: var(--glass-line); color: var(--text); }
.cookie-banner__btn--reject:hover { border-color: var(--lime); color: var(--lime); }

@media (max-width: 640px) {
	.cookie-banner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 18px; bottom: 12px; }
	.cookie-banner__actions { justify-content: stretch; }
	.cookie-banner__btn { flex: 1 1 0; }
}

@media (prefers-reduced-motion: reduce) {
	.cookie-banner { animation: none; }
}

/* ---------- Tabela de cookies (página /cookies.html) ---------- */

.legal__table-wrap { overflow-x: auto; margin: 8px 0 20px; }

.legal__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 520px;
}

.legal__table th,
.legal__table td {
	text-align: left;
	padding: 12px 14px;
	border-bottom: 1px solid var(--glass-line);
	color: var(--text-muted);
	vertical-align: top;
}

.legal__table th {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--text);
	background: var(--glass);
}

.legal__table tr:last-child td { border-bottom: none; }
