/* =========================================================
   SCROLLBAR CUSTOMIZADO (CYBER STYLE)
   ========================================================= */
/* Compatibilidade com Firefox */
html {
	scrollbar-width: thin;
	scrollbar-color: rgba(var(--cyan-rgb), 0.6) var(--bg-deep);
}

/* Compatibilidade com Chrome, Edge, Safari, Opera */
::-webkit-scrollbar {
	width: 10px; /* Largura da barra vertical */
	height: 10px; /* Altura da barra horizontal, se houver */
}

/* O trilho por onde a barra corre */
::-webkit-scrollbar-track {
	background: var(--bg-deep);
	border-left: 1px solid rgba(var(--cyan-rgb), 0.1);
}

/* A barra (thumb) em si */
::-webkit-scrollbar-thumb {
	background: rgba(var(--cyan-rgb), 0.4);
	border-radius: 10px;
	/* Essa borda da mesma cor do fundo cria um efeito visual de que a barra é mais fina e flutuante */
	border: 2px solid var(--bg-deep);
	transition: background 0.3s ease;
}

/* Efeito ao passar o mouse ou clicar na barra */
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
	background: var(--cyan);
}

/* =========================================================
   VARIÁVEIS GLOBAIS (DESIGN SYSTEM: CYBER-NEURAL GLASS)
   ========================================================= */
:root {
	--bg-deep: #050914;
	--bg-glow: #101b3b;
	--cyan: #00f0ff;
	--cyan-rgb: 0, 240, 255;
	--green-pix: #00e676;
	--text-main: #ffffff;
	--text-muted: #8d99ae;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Rajdhani', sans-serif; }
body { background: radial-gradient(circle at top center, var(--bg-glow) 0%, var(--bg-deep) 100%); color: var(--text-main); min-height: 100vh; overflow-x: hidden; scroll-behavior: smooth; }

/* Canvas do fundo */
#neural-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; opacity: 0.5; }

/* Container Principal */
.wrapper { position: relative; z-index: 10; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* =========================================================
   HERO SECTION (CINEMATIC VIDEO BACKGROUND)
   ========================================================= */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 0;
	overflow: hidden;
}
/* --- CAMADA 0 E 1: VÍDEO E MÁSCARA --- */
.hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(5, 9, 20, 0.8) 0%, rgba(5, 9, 20, 0.4) 40%, rgba(5, 9, 20, 0.5) 80%, rgba(5, 9, 20, 1) 100%);
	z-index: 1;
}
/* --- CAMADA 2: HUD TOPO (BADGE) --- */
.hero-badge {
	position: absolute;
	top: 140px; /* Desce um pouco para fugir da Navbar */
	left: 50%; /* Joga pro meio da tela */
	z-index: 2;
	background: rgba(var(--cyan-rgb), 0.1);
	border: 1px solid rgba(var(--cyan-rgb), 0.3);
	color: var(--cyan);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.2);
	white-space: nowrap; /* Impede que o texto quebre em duas linhas */
}
#intro-badge.hero-badge {cursor: pointer;}
/* --- CAMADA 2: HUD BASE (BOTÃO E SETA) --- */
.hero-bottom-group {
	position: absolute;
	bottom: 50px; /* Crava no rodapé da tela */
	left: 50%; /* Joga pro meio da tela */
	transform: translateX(-50%); /* Centraliza perfeitamente no próprio eixo */
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px; /* Espaço tático entre o Botão e a Seta */
	width: 100%;
}

/* Botões */
.btn-glow { position: relative; display: inline-flex; align-items: center; justify-content: center; background: rgba(5, 9, 20, 0.4); backdrop-filter: blur(5px); color: var(--cyan); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 20px 45px; border: 2px solid var(--cyan); border-radius: 4px; cursor: pointer; text-decoration: none; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(var(--cyan-rgb), 0.2) inset, 0 0 20px rgba(var(--cyan-rgb), 0.2); }
.btn-glow:hover { background: var(--cyan); color: var(--bg-deep); box-shadow: 0 0 30px var(--cyan); transform: translateY(-3px); }
.btn-glow::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shine 3s infinite; }
@keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

/* Indicador de Rola */
.scroll-indicator { position: relative; color: var(--text-muted); animation: bounce 2s infinite; opacity: 0.7; cursor: pointer; transition: opacity 0.3s; }
.scroll-indicator:hover { opacity: 1; color: var(--cyan); }
.scroll-indicator i { font-size: 1.5rem; color: var(--cyan); filter: drop-shadow(0 0 5px rgba(0,240,255,0.5)); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-7px); } }

/* --- SEQUÊNCIA DE ABERTURA CINEMÁTICA (F.U.I INTRO) --- */
.intro-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.anim-badge-in {
	/* Nova animação que respeita o posicionamento X centralizado (-50%) */
	animation: cyber-drop-center 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	visibility: visible; pointer-events: auto;
}
@keyframes cyber-drop-center {
	0% { opacity: 0; transform: translate(-50%, -30px) scale(0.9); filter: blur(5px); }
	100% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
}

.anim-fade-up {
	animation: cyber-fade-up 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	visibility: visible; pointer-events: auto;
}
@keyframes cyber-fade-up {
	0% { opacity: 0; transform: translateY(30px); filter: blur(3px); }
	100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* [ADICIONADO] Ajuste Responsivo do Badge para Celulares */
@media (max-width: 768px) {
	.hero-badge {
		font-size: 0.9rem;
		top: 120px;
		white-space: normal;
		text-align: center;
		width: max-content;
		max-width: 90%;
	}
	.hero-bottom-group { bottom: 30px; }
}

/* =========================================================
   MÓDULOS DE PODER (ARSENAL)
   ========================================================= */
.modules-section { padding: 60px 0; }
.module-row {display: flex; align-items: center; justify-content: space-between; margin-bottom: 80px; gap: 40px;}
.module-row.reverse { flex-direction: row-reverse; }

.module-text { flex: 1; }
.module-tag { display: inline-block; font-size: 1rem; font-weight: 700; color: var(--cyan); border: 1px solid var(--cyan); padding: 5px 15px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 1px; }
.module-tag i { margin-right: 5px; }
.module-text h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 0 20px rgba(0,0,0,0.5); }
.module-text p { font-size: 1.5rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; }
.module-text strong { color: var(--text-main); }

.module-text ul { list-style: none; }
.module-text ul li {
	font-size: 1.1rem;
	margin-bottom: 25px; /* Mais respiro entre os itens */
	display: flex;
	align-items: flex-start; /* Trava o ícone no topo do texto */
	color: #c8d2e0;
}
.module-text ul li i {
	margin-right: 15px;
	margin-top: 4px; /* Alinha o ícone perfeitamente com a primeira linha do título */
	font-size: 1.2rem;
	color: var(--cyan);
	flex-shrink: 0; /* Impede que o ícone seja esmagado se o texto for muito longo */
}

.feature-detail {
	display: flex;
	flex-direction: column;
	gap: 6px; /* Espaço milimétrico entre o Título e a Descrição */
}
.feature-detail strong {
	color: var(--text-main);
	font-size: 1.2rem;
	letter-spacing: 0.5px;
}
.feature-detail span {
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--text-muted);
}

/* Visual do Holograma */
.module-visual { flex: 1; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.hologram-box { width: 100%; max-width: 450px; aspect-ratio: 4/3; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(var(--cyan-rgb), 0.3); border-radius: 20px; box-shadow: 0 0 30px rgba(var(--cyan-rgb), 0.2); display: flex; justify-content: center; align-items: center; padding: 40px; transform-style: preserve-3d; transition: transform 0.1s ease; cursor: crosshair; }
.hologram-box svg { width: 100%; height: 100%; transform: translateZ(50px); filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5)); }

/* =========================================================
   CTA FINAL E FOOTER
   ========================================================= */
.final-cta { text-align: center; padding: 100px 0; background: linear-gradient(to top, rgba(0, 240, 255, 0.05), transparent); border-top: 1px solid rgba(var(--cyan-rgb), 0.1); margin-top: 50px; border-radius: 20px; }
.final-cta h2 { font-size: 3.5rem; margin-bottom: 20px; color: #fff; }
.final-cta p { font-size: 1.4rem; color: var(--text-muted); margin: 0 auto 40px auto; }
.btn-whatsapp-huge { border-color: var(--green-pix); color: var(--green-pix); font-size: 1.6rem; padding: 25px 60px; box-shadow: 0 0 20px rgba(0,230,118,0.2) inset; }
.btn-whatsapp-huge:hover { background: var(--green-pix); color: #000; box-shadow: 0 0 40px var(--green-pix); }
.cta-note { margin-top: 20px !important; color: var(--text-muted); font-size: 1rem; }

footer { text-align: center; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 40px; }

/* =========================================================
   ANIMAÇÕES DE ENTRADA (REVEAL)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsividade */
@media (max-width: 992px) {
	.module-row, .module-row.reverse { flex-direction: column; text-align: center; gap: 30px; }
	.module-text ul li { justify-content: center; }
	.hero h1 { font-size: 3rem; }
	.module-text h2 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
	.btn-glow { font-size: 1.1rem; padding: 15px 30px; }
	.final-cta h2 { font-size: 2.2rem; }
	.final-cta p { font-size: 1.1rem; }
}

/* =========================================================
   NAVBAR PREMIUM (GLASSMORPHISM)
   ========================================================= */
.glass-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	background: rgba(5, 9, 20, 0.6);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(0, 240, 255, 0.1);
	transition: all 0.3s ease;
}

.nav-logo {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
}

.nav-logo span {
	color: var(--cyan);
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	color: var(--text-main);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: color 0.3s ease, text-shadow 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-links a:hover {
	color: var(--cyan);
	text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* =========================================================
   AJUSTE DA HERO (Para compensar a Navbar)
   ========================================================= */
.hero {
	/* Adicionamos padding-top para o texto não ficar atrás da Navbar */
	padding-top: 120px;
}

/* =========================================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================================= */
.whatsapp-float {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 65px;
	height: 65px;
	background-color: var(--green-pix);
	color: #000;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.2rem;
	box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
	z-index: 99;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
	transform: scale(1.15) rotate(10deg);
	box-shadow: 0 0 35px rgba(0, 230, 118, 0.8);
	background-color: #00ff84;
}

/* Classe dinâmica injetada via JS para sumir no rodapé */
.whatsapp-float.hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(40px) scale(0.5);
}

@keyframes pulse-wa {
	0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
	70% { box-shadow: 0 0 0 20px rgba(0, 230, 118, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Responsividade Navbar e Float */
@media (max-width: 768px) {
	.glass-nav {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}
	.nav-links {
		gap: 15px;
		font-size: 0.9rem;
	}
	.hero {
		padding-top: 140px;
	}
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 55px;
		height: 55px;
		font-size: 1.8rem;
	}
}

/* =========================================================
   SEÇÃO CLIENTES (SOCIAL PROOF CAROUSEL)
   ========================================================= */
.clients-section {
	padding: 80px 40px;
	text-align: center;
	/* Fundo claro, levemente prateado/gelo, dando ar de painel iluminado */
	background: #f8f9fa;
	border-radius: 20px;
	margin-bottom: 80px;
	/* Sombra escura para destacar o bloco do fundo dark, e uma borda neon sutil */
	box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(var(--cyan-rgb), 0.3);
	position: relative;
	z-index: 10;
}

.clients-section h2 {
	font-size: 2.5rem;
	color: var(--bg-deep); /* Texto principal escuro para contrastar no fundo branco */
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-weight: 700;
}

.clients-section p {
	font-size: 1.2rem;
	color: #5a6b7c; /* Cinza chumbo elegante para o subtítulo */
	margin-bottom: 50px;
}

/* O Container com máscara de fade nas bordas para sumir suavemente */
.logo-scroller {
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	/* A máscara usa preto para mostrar e transparente para esconder. Funciona perfeito no fundo claro */
	-webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
	mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.scroller__inner {
	display: flex;
	align-items: center;
	gap: 80px;
	width: max-content;
	animation: scroll-logos 40s linear infinite;
}

/* Pausa a rolagem se o usuário quiser olhar a logo */
.logo-scroller:hover .scroller__inner {
	animation-play-state: paused;
}

.scroller__inner img {
	height: 55px;
	/* Deixa a imagem cinza com leve transparência para não poluir visualmente */
	filter: grayscale(100%) opacity(0.6);
	transition: all 0.4s ease;
	object-fit: contain;
}

/* Efeito Hover: Revela as cores originais da logo da marmoraria ao passar o mouse */
.scroller__inner img:hover {
	filter: grayscale(0%) opacity(1);
	transform: scale(1.1);
}

/* A matemática do Loop contínuo */
@keyframes scroll-logos {
	to {
		transform: translateX(calc(-50% - 40px));
	}
}

/* Responsividade do Painel Claro */
@media (max-width: 768px) {
	.clients-section {
		padding: 50px 20px;
	}
	.clients-section h2 {
		font-size: 2rem;
	}
	.scroller__inner img {
		height: 40px; /* Logos um pouco menores no celular */
	}
	.scroller__inner {
		gap: 50px; /* Diminui o espaço entre as logos no mobile */
	}
}

/* =========================================================
   DESTAQUE: CRM KANBAN SHOWCASE
   ========================================================= */
.kanban-showcase-section {
	padding: 60px 0;
	position: relative;
	z-index: 10;
}

.text-center {
	text-align: center;
}

/* Container do Quadro */
.cyber-kanban {
	display: flex;
	gap: 20px;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(var(--cyan-rgb), 0.2);
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.6);
	overflow-x: auto; /* Permite rolar lateralmente no celular */
	transform-style: preserve-3d;
	transition: transform 0.3s ease, border 0.3s ease;
}

.cyber-kanban:hover {
	border-color: rgba(var(--cyan-rgb), 0.5);
	box-shadow: 0 20px 60px rgba(var(--cyan-rgb), 0.15);
}

/* Colunas do Kanban */
.kanban-col {
	flex: 1;
	min-width: 240px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cabeçalho das Colunas */
.k-header {
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--k-color);
	border-bottom: 2px solid var(--k-color);
	padding-bottom: 10px;
	margin-bottom: 20px;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Cards (Negócios) */
.k-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 15px;
	cursor: grab;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.k-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.k-client {
	color: var(--text-main);
	font-weight: 600;
	font-size: 1.1rem;
}

.k-value {
	color: var(--cyan);
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.5px;
}

/* Card de Pedido Fechado (Destaque Verde) */
.k-card.k-closed {
	background: rgba(0, 230, 118, 0.05);
	border-left: 4px solid var(--green-pix);
	border-color: rgba(0, 230, 118, 0.3) rgba(0, 230, 118, 0.3) rgba(0, 230, 118, 0.3) var(--green-pix);
}

.k-card.k-closed .k-value {
	color: var(--green-pix);
	text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

/* Responsividade Mobile para o Kanban */
@media (max-width: 768px) {
	.cyber-kanban {
		padding: 15px;
		gap: 15px;
	}
	.k-header { font-size: 0.95rem; }
	.k-client { font-size: 1rem; }
	.k-value { font-size: 1.1rem; }
}

/* =========================================================
   ACESSO RESTRITO (TOKEN CARDS) - [ADICIONADO]
   ========================================================= */
.restricted-section {
	padding: 80px 20px;
	text-align: center;
	position: relative;
	z-index: 10;
}
.restricted-header h2 {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 20px;
	text-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.5);
}
.restricted-header p {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin: 0 auto 60px auto;
	max-width: 800px;
	line-height: 1.6;
}

/* Grid Flexível para abrigar os cartões Holográficos */
.token-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	perspective: 1000px;
}

/* Glassmorphism base para os Cartões */
.token-card {
	background: rgba(16, 27, 59, 0.4);
	border: 1px solid rgba(var(--cyan-rgb), 0.2);
	border-radius: 16px;
	padding: 40px 30px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	cursor: crosshair; /* Reforça o design FUI */
}

.token-icon {
	font-size: 3.5rem;
	margin-bottom: 25px;
	transition: transform 0.3s ease;
}

.token-card h3 {
	font-size: 1.6rem;
	color: #fff;
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-weight: 700;
}

.token-card p {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.5;
}

/* Botões base dos Cartões */
.btn-token {
	background: transparent;
	padding: 12px 25px;
	border-radius: 5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	justify-content: center;
}

/* Modificadores de Temas por Cartão */
.card-galeria { border-color: rgba(0, 240, 255, 0.3); }
.card-galeria .token-icon { color: var(--cyan); filter: drop-shadow(0 0 10px rgba(var(--cyan-rgb), 0.4)); }
.card-galeria:hover { border-color: var(--cyan); box-shadow: 0 15px 40px rgba(var(--cyan-rgb), 0.2); transform: translateY(-10px); }
.card-galeria .btn-token { border: 1px solid var(--cyan); color: var(--cyan); }
.card-galeria .btn-token:hover { background: var(--cyan); color: var(--bg-deep); box-shadow: 0 0 20px rgba(var(--cyan-rgb), 0.4); }

.card-precos { border-color: rgba(212, 175, 55, 0.3); background: rgba(212, 175, 55, 0.05); }
.card-precos .token-icon { color: #d4af37; filter: drop-shadow(0 0 10px rgba(212,175,55,0.4)); }
.card-precos:hover { border-color: #d4af37; box-shadow: 0 15px 40px rgba(212,175,55,0.2); transform: translateY(-10px); }
.card-precos .btn-token { border: 1px solid #d4af37; color: #d4af37; }
.card-precos .btn-token:hover { background: #d4af37; color: #000; box-shadow: 0 0 20px rgba(212,175,55,0.4); }

.card-manual { border-color: rgba(155, 89, 182, 0.3); }
.card-manual .token-icon { color: #9b59b6; filter: drop-shadow(0 0 10px rgba(155,89,182,0.4)); }
.card-manual:hover { border-color: #9b59b6; box-shadow: 0 15px 40px rgba(155,89,182,0.2); transform: translateY(-10px); }
.card-manual .btn-token { border: 1px solid #9b59b6; color: #9b59b6; }
.card-manual .btn-token:hover { background: #9b59b6; color: #fff; box-shadow: 0 0 20px rgba(155,89,182,0.4); }

@media (max-width: 768px) {
	.restricted-header h2 { font-size: 2.2rem; }
}

/* =========================================================
   SIMULADOR F.U.I (MONITOR EXPANDIDO COM OVERLAY LATERAL)
   ========================================================= */
.simulator-section { padding: 80px 0; position: relative; z-index: 10; }

.simulator-container-wide {
	display: grid;
	grid-template-columns: 70px 1fr; /* Dock de 70px | Monitor de Vídeo Total */
	gap: 30px;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- COLUNA 1: DOCK TÁTICA (MENU SLIM) --- */
.simulator-menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
	position: relative;
	z-index: 100; /* Prioridade máxima sobre o monitor 3D */
}

.sim-btn {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(0, 240, 255, 0.1);
	border-radius: 12px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--text-muted);
	cursor: pointer;
	position: relative;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.sim-btn:hover {
	background: rgba(0, 240, 255, 0.05);
	border-color: rgba(0, 240, 255, 0.4);
	color: #fff;
	transform: translateX(5px);
}

.sim-btn.active {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--cyan);
	color: var(--cyan);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.3) inset, 0 0 15px rgba(0, 240, 255, 0.2);
}

/* Tooltip Holográfico via CSS Puro */
.sim-btn::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%) translateX(10px);
	background: rgba(16, 27, 59, 0.9);
	border: 1px solid var(--cyan);
	color: var(--cyan);
	padding: 8px 15px;
	border-radius: 4px;
	font-family: monospace;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 110;
}

.sim-btn:hover::after {
	opacity: 1;
	transform: translateY(-50%) translateX(20px);
}

/* --- COLUNA 2: MONITOR DE VÍDEO (MAX WIDTH) --- */
.simulator-monitor {
	position: relative; /* Transforma esta coluna na âncora do painel absoluto */
	perspective: 1000px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px; /* Será usado no mobile para afastar o vídeo do texto */
}

.monitor-glass {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	background: #000;
	border: 1px solid rgba(0, 240, 255, 0.3);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.15);
	transform-style: preserve-3d;
	z-index: 10;
}

#sim-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.scanlines {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
	background-size: 100% 4px; pointer-events: none; z-index: 2;
}

.hud-corners {
	position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
	border: 1px solid rgba(0, 240, 255, 0.1); pointer-events: none; z-index: 3;
}
.hud-corners::before, .hud-corners::after {
	content: ''; position: absolute; width: 20px; height: 20px; border-color: var(--cyan); border-style: solid;
}
.hud-corners::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hud-corners::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.glitch-overlay {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0, 240, 255, 0.8); mix-blend-mode: overlay; z-index: 5; opacity: 0; pointer-events: none;
}
.glitch-overlay.active { animation: glitch-flash 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }

/* --- BOTÃO FLUTUANTE DE INFO (DESKTOP) --- */
.btn-info-toggle {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(5, 9, 20, 0.7);
	border: 2px solid var(--cyan);
	color: var(--cyan);
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 40;
	transition: all 0.3s ease;
	animation: radar-pulse 2s infinite;
}
.btn-info-toggle:hover {
	background: var(--cyan);
	color: #000;
	box-shadow: 0 0 20px var(--cyan);
	transform: scale(1.1);
}
@keyframes radar-pulse {
	0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.6); }
	70% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* --- PAINEL DE TELEMETRIA (DESKTOP OVERLAY) --- */
.simulator-info {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	max-width: 90%;
	height: 100%;
	background: rgba(5, 9, 20, 0.85);
	border-left: 1px solid rgba(0, 240, 255, 0.4);
	padding: 40px 30px;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 50;
	transform: translateX(50px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.simulator-info.open {
	transform: translateX(0) !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	box-shadow: -15px 0 40px rgba(0,0,0,0.8);
}
.simulator-info.refreshing {
	opacity: 0 !important;
	transform: translateX(10px);
}

.btn-close-info {
	position: absolute;
	top: 20px;
	right: 20px;
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.3s ease, transform 0.3s ease;
}
.btn-close-info:hover {
	color: #ff3366;
	transform: rotate(90deg);
}

@keyframes blink { 0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--green-pix); } 50% { opacity: 0.3; text-shadow: none; } }

.info-header { font-family: monospace; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.blink-icon { color: var(--green-pix); animation: blink 1s infinite; }
.info-title { color: #fff; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; margin-top: 10px; text-shadow: 0 0 10px rgba(0,240,255,0.4); }
.info-divider { width: 50px; height: 3px; background: var(--cyan); margin-bottom: 20px; box-shadow: 0 0 10px var(--cyan); }
.info-desc { color: #c8d2e0; font-size: 1.1rem; line-height: 1.6; }
.info-graph-decoration { display: flex; gap: 5px; height: 30px; align-items: flex-end; margin-top: 30px; opacity: 0.5; }
.info-graph-decoration .bar { width: 10px; background: rgba(0, 240, 255, 0.2); border-radius: 2px 2px 0 0; }

/* =========================================================
   RESPONSIVIDADE MOBILE CIRÚRGICA (TRIPLO BLOCO EMPILHADO)
   ========================================================= */
@media (max-width: 1200px) {
	/* 1. Container Geral vira 1 única coluna */
	.simulator-container-wide {
		grid-template-columns: 1fr;
		max-width: 900px;
		padding: 0 15px;
	}

	/* 2. Menu Horizontal (Linha 1) */
	.simulator-menu {
		flex-direction: row;
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-top: 15px;
		padding-bottom: 20px;
		scrollbar-width: none;
	}
	.sim-btn { flex: 0 0 60px; scroll-snap-align: start; }
	.sim-btn:hover { transform: translateY(-5px); }
	.sim-btn::after { display: none; }

	/* 3. Desliga os botões do overlay (não precisa abrir/fechar no celular) */
	.btn-info-toggle, .btn-close-info {
		display: none !important;
	}

	/* 4. Mágica do Painel (Transforma overlay em Linha 3 estática) */
	.simulator-info {
		position: relative;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		width: 100%;
		max-width: 100%;
		height: auto;
		border-left: none;
		border-top: 2px solid rgba(0, 240, 255, 0.2);
		border-radius: 8px;
		padding: 25px 20px;
		box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	}
}
/* =========================================================
   HUD STORIES (MATRIZ DE TRANSMISSÃO VERTICAL)
   ========================================================= */
/* --- 1. A DOCK DE AROS (Nova Seção de Transição) --- */
.stories-showcase {
	width: 100vw;
	position: relative;
	z-index: 20;
	background: linear-gradient(to bottom, #050914 0%, rgba(16, 27, 59, 0.4) 50%, #050914 100%);
	padding: 40px 0 20px 0; /* Dá um respiro entre o vídeo do Hero e os ícones */
	border-bottom: 1px solid rgba(0, 240, 255, 0.05);
	left: 50%;
	transform: translateX(-50%);
	margin-left: 0;
	overflow: hidden;
}
.cyber-stories-dock {
	width: 100%;
	margin: 0 auto; /* Centraliza a caixa inteira na tela */
	z-index: 15;
	display: flex;
	justify-content: center; /* Centraliza os círculos horizontalmente no desktop */
	gap: 35px; /* Aumentado o espaço entre os aros para ficar mais elegante */
	padding: 10px 20px 30px 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.cyber-stories-dock::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
	.cyber-stories-dock {
		gap: 20px;
		margin-left: 20px;
		justify-content: flex-start;
	}
}

.story-ring {
	position: relative;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
	scroll-snap-align: start;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.2s ease;
}
.story-ring:hover { transform: scale(1.05); }

/* Aro Giratório Cibernético */
.spin-border {
	position: absolute;
	top: -4px; left: -4px; right: -4px; bottom: -4px;
	border-radius: 50%;
	border: 2px dashed var(--cyan);
	animation: cyber-spin 8s linear infinite;
	pointer-events: none;
}
@keyframes cyber-spin { 100% { transform: rotate(360deg); } }

/* Estado Visualizado (Lido) */
.story-ring.viewed .spin-border {
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.2);
	animation: none;
}

/* Avatar (Miniatura) */
.story-ring img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--bg-deep); /* Separa a imagem do aro que gira */
	z-index: 2;
}

/* Rótulo abaixo do aro */
.story-label {
	position: absolute;
	bottom: -22px;
	font-size: 0.75rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	text-shadow: 0 0 5px rgba(0,0,0,0.8);
}

/* --- 2. O MODAL TELA CHEIA (STORY VIEWER) --- */
.story-modal {
	position: fixed;
	top: 0; left: 0; width: 100vw; height: 100dvh;
	background: rgba(2, 4, 10, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 9999;
	display: none;
	flex-direction: column;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.story-modal.active { display: flex; opacity: 1; }

/* Barras de Progresso */
.story-progress-container {
	position: absolute;
	top: 15px; left: 10px; right: 10px;
	display: flex;
	gap: 5px;
	z-index: 10000;
}
.story-bar {
	flex: 1;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	overflow: hidden;
}
.story-fill {
	height: 100%;
	width: 0%;
	background: #fff;
	box-shadow: 0 0 10px #fff;
	/* A transição será controlada dinamicamente pelo JS */
}

/* Cabeçalho */
.story-header {
	position: absolute;
	top: 30px; left: 15px; right: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10000;
}
.story-sender { color: #fff; font-size: 0.9rem; font-weight: bold; letter-spacing: 1px; text-shadow: 0 0 5px rgba(0,0,0,0.8); display: flex; align-items: center; gap: 8px; }
.story-sender i { color: var(--green-pix); }
.story-close { background: transparent; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; text-shadow: 0 0 5px rgba(0,0,0,0.8); transition: color 0.2s; }
.story-close:hover { color: #ff3366; }

/* Áreas de Toque (Esquerda para voltar, Direita para avançar) */
.story-nav-area { position: absolute; top: 0; height: 100%; z-index: 9998; cursor: pointer; }
.story-nav-area.left { left: 0; width: 30%; }
.story-nav-area.right { right: 0; width: 70%; }

/* Área da Mídia (Limitado a formato celular mesmo no Desktop) */
.story-content-area {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
}
.story-content-area img, .story-content-area video {
	width: 100%;
	height: 100%;
	object-fit: contain; /* Garante que os 1080x1920 apareçam 100% sem cortar */
}