/* ============================================================
   PROTOTIZEI - MAIN CSS - VERSÃO TECH AVANÇADA
   ============================================================ */

/* Google Fonts: carregado pelo base.html */

/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
  /* Cores base */
  --dark-0: #020209;
  --dark-1: #06060f;
  --dark-2: #0a0a1a;
  --dark-3: #0f0f28;
  --dark-4: #141435;

  /* Roxa - cor primária */
  --purple-900: #3b0764;
  --purple-800: #4c1d95;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a855f7;
  --purple-300: #c084fc;
  --purple-200: #ddd6fe;

  /* Ciano - acento tech */
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;

  /* Verde - status */
  --green-500: #10b981;
  --green-400: #34d399;

  /* Texto */
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-gray: #94a3b8;
  --text-muted: #64748b;

  /* Bordas */
  --border: rgba(139, 92, 246, 0.2);
  --border-hover: rgba(139, 92, 246, 0.6);
  --border-cyan: rgba(6, 182, 212, 0.3);

  /* Cards */
  --card-bg: rgba(6, 6, 20, 0.7);
  --card-bg-hover: rgba(10, 10, 30, 0.85);

  /* Glow */
  --glow-sm: 0 0 10px rgba(139, 92, 246, 0.4);
  --glow-md: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.2);
  --glow-lg: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
  --glow-cyan: 0 0 15px rgba(6, 182, 212, 0.5);

  /* Fontes */
  --font-orbitron: 'Orbitron', 'Courier New', monospace;
  --font-inter: 'Inter', -apple-system, sans-serif;

  /* Transições */
  --trans-fast: 0.15s ease;
  --trans-base: 0.3s ease;
  --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-bg: -2;
  --z-scanlines: -1;
  --z-base: 1;
  --z-card: 10;
  --z-nav: 100;
  --z-cursor: 9999;
  --z-loading: 10000;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-inter);
  background-color: var(--dark-0);
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

ul { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-base);
}

img { max-width: 100%; height: auto; display: block; }

button { cursor: none; border: none; background: none; font-family: inherit; }

::selection {
  background: var(--purple-600);
  color: var(--text-white);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb {
  background: var(--purple-600);
  border-radius: 3px;
  box-shadow: var(--glow-sm);
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark-0);
  z-index: var(--z-loading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: min(400px, 90vw);
}

.loader-logo {
  font-family: var(--font-orbitron);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--purple-400);
  letter-spacing: 0.3em;
  text-shadow: var(--glow-md);
  animation: pulse-glow 2s ease-in-out infinite;
}

.loader-subtitle {
  font-family: var(--font-orbitron);
  font-size: 0.6rem;
  color: var(--cyan-400);
  letter-spacing: 0.4em;
  opacity: 0.7;
}

.loader-terminal {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--green-400);
  width: 100%;
  min-height: 100px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  overflow: hidden;
}

.loader-terminal .terminal-line {
  opacity: 0;
  animation: terminal-fade 0.3s ease forwards;
}

.loader-bar {
  width: 100%;
  height: 2px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-400), var(--cyan-400));
  border-radius: 999px;
  width: 0%;
  box-shadow: var(--glow-sm);
  transition: width 0.1s ease;
}

.loader-percent {
  font-family: var(--font-orbitron);
  font-size: 0.75rem;
  color: var(--purple-300);
  letter-spacing: 0.15em;
}

/* ============================================================
   CANVAS NEURAL BACKGROUND
   ============================================================ */
#neural-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-bg);
  pointer-events: none;
}

/* ============================================================
   SCANLINES OVERLAY
   ============================================================ */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: var(--z-scanlines);
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--purple-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease;
  box-shadow: var(--glow-sm);
}

#cursor-ring {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--purple-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 50px;
  height: 50px;
  opacity: 0.8;
  border-color: var(--cyan-400);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1rem 2rem;
  background: rgba(2, 2, 9, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans-base), border-color var(--trans-base);
}

.header.scrolled {
  background: rgba(2, 2, 9, 0.92);
  border-bottom-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-image {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.logo-name {
  font-family: var(--font-orbitron);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.08em;
  text-shadow: var(--glow-sm);
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color var(--trans-base), background var(--trans-base);
  position: relative;
  letter-spacing: 0.03em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--purple-400);
  box-shadow: var(--glow-sm);
  transition: width var(--trans-base);
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(139, 92, 246, 0.08);
}

.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--purple-300); }

.nav-cta {
  font-family: var(--font-orbitron);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-white);
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  border-radius: 6px;
  border: 1px solid rgba(168, 85, 247, 0.4);
  transition: all var(--trans-base);
  box-shadow: var(--glow-sm);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-500), var(--cyan-500));
  opacity: 0;
  transition: opacity var(--trans-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
  border-color: var(--purple-400);
}

.nav-cta:hover::before { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }

/* ============================================================
   UTILITÁRIOS GERAIS
   ============================================================ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-orbitron);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--cyan-400);
  padding: 0.35rem 1rem;
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--purple-300) 60%, var(--cyan-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-gray);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Animação de entrada */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay stagger */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   CARDS - BASE
   ============================================================ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans-base), box-shadow var(--trans-base), transform 0.15s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: none;
}

/* Brilho top */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--trans-base);
}

/* Efeito holográfico */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(139, 92, 246, 0.08) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--glow-sm);
}

.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }

/* Card neon (destaque) */
.card-neon {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--glow-md), inset 0 0 30px rgba(139, 92, 246, 0.05);
}

/* Card popular (pricing) */
.card-popular {
  border: 2px solid var(--purple-500);
  box-shadow: var(--glow-md);
  transform: scale(1.03);
  background: rgba(109, 40, 217, 0.1);
}

.card-popular:hover {
  transform: scale(1.03) translateY(-6px);
}

/* Ícone tech */
.tech-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--trans-base);
  position: relative;
  z-index: 1;
}

.card:hover .tech-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(6, 182, 212, 0.2));
  border-color: var(--purple-400);
  box-shadow: var(--glow-sm);
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: none;
  border: none;
}

/* Ripple */
.btn::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  top: var(--ripple-y, 50%);
  left: var(--ripple-x, 50%);
  translate: -50% -50%;
}

.btn.ripple::after {
  transform: scale(4);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: var(--text-white);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: var(--glow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-md);
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  border-color: var(--purple-400);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--purple-400);
  border: 1.5px solid var(--purple-600);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple-400);
  color: var(--purple-300);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.btn-instagram {
  background: transparent;
  color: var(--purple-400);
  border: 1.5px solid var(--purple-600);
}

.btn-instagram:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple-400);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Orb de fundo */
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--purple-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter-wrapper {
  display: inline-block;
  min-height: 1.2em;
}

#typewriter-text {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--purple-400);
  vertical-align: middle;
  margin-left: 2px;
  box-shadow: var(--glow-sm);
  animation: blink 1s step-end infinite;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-orbitron);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--green-400);
  padding: 0.4rem 0.875rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: pulse-glow-green 2s ease-in-out infinite;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--green-400);
}

/* Stats grid no lado direito do hero */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-400));
  opacity: 0;
  transition: opacity var(--trans-base);
}

.stat-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.stat-number {
  font-family: var(--font-orbitron);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--purple-400);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: var(--glow-sm);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.375rem;
  position: relative;
  z-index: 1;
}

.about-card p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.mission-card {
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.mission-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.mission-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mission-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--purple-400);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--purple-400);
}

.mission-feature span {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.02), transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.benefit-number {
  font-family: var(--font-orbitron);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple-400);
  text-shadow: var(--glow-sm);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.benefit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* ============================================================
   DEMO / CHAT SECTION
   ============================================================ */
.demo-section {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.04), transparent);
}

.demo-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--dark-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5), var(--glow-sm);
}

.chat-header {
  background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.chat-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  animation: avatar-pulse 2s ease-in-out infinite;
}

.rafael-avatar-header {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: var(--glow-sm), 0 0 16px rgba(139, 92, 246, 0.35);
  object-fit: cover;
  background: var(--dark-2);
}

.rafael-avatar-msg {
  border-color: rgba(139, 92, 246, 0.5) !important;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
  object-fit: cover;
  background: var(--dark-2);
}

.chat-agent-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--green-400);
}

.chat-messages {
  padding: 1.5rem;
  min-height: 280px;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(4, 4, 14, 0.6);
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 2px; }

.message {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  animation: msg-appear 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.message-bubble {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 12px 12px 12px 4px;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 75%;
}

.message.user-msg {
  flex-direction: row-reverse;
}

.message.user-msg .message-avatar {
  background: var(--dark-3);
}

.message.user-msg .message-bubble {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.25);
  border-radius: 12px 12px 4px 12px;
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
}

.typing-dots {
  display: flex;
  gap: 3px;
}

.typing-dot {
  width: 5px;
  height: 5px;
  background: var(--purple-400);
  border-radius: 50%;
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

.chat-input-row {
  padding: 1rem 1.25rem;
  background: rgba(4, 4, 14, 0.8);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.chat-input {
  flex: 1;
  background: rgba(15, 15, 40, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-size: 0.9375rem;
  font-family: var(--font-inter);
  resize: none;
  outline: none;
  min-height: 44px;
  max-height: 120px;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}

.chat-input:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.chat-input::placeholder { color: var(--text-muted); }

.send-btn {
  width: 44px;
  height: 44px;
  background: rgba(109, 40, 217, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-base);
  flex-shrink: 0;
  cursor: none;
}

.send-btn.active {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  border-color: var(--purple-400);
  box-shadow: var(--glow-sm);
}

.send-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}

.demo-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  background: rgba(0,0,0,0.2);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 0.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-700), var(--purple-400));
  color: white;
  font-family: var(--font-orbitron);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--glow-sm);
  animation: pulse-glow 2s ease-in-out infinite;
}

.plan-name {
  font-family: var(--font-orbitron);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 0.375rem;
  position: relative;
  z-index: 1;
}

.plan-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.price-amount {
  font-family: var(--font-orbitron);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple-400);
  text-shadow: var(--glow-sm);
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.feature-check {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.02), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--purple-500);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.star {
  font-size: 1rem;
  filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.6));
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-white);
}

.author-title {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 2rem;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 80px rgba(139, 92, 246, 0.1);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-400), var(--cyan-400), transparent);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-white), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25;
}

.cta-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-form-card {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 1px solid var(--border);
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.375rem;
}

.contact-form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  margin-left: 0.125rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(4, 4, 14, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 0.9375rem;
  font-family: var(--font-inter);
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
  outline: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  font-size: 0.8125rem;
  color: #ef4444;
  margin-top: 0.375rem;
  display: none;
}

.form-error.show { display: block; }

.form-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green-400);
  padding: 0.875rem 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: 0.9375rem;
  text-align: center;
  display: none;
  animation: fadeInUp 0.4s ease;
}

.form-success.show { display: block; }

.loading-inline {
  display: none;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-orbitron);
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.875rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--trans-base);
}

.footer-links a:hover { color: var(--purple-400); }

.footer-cta-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-btns .btn {
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  justify-content: flex-start;
  gap: 0.625rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--trans-base);
}

.footer-legal a:hover { color: var(--purple-400); }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
}

.login-card {
  width: min(420px, 100%);
  padding: 2.5rem;
  background: rgba(6, 6, 20, 0.85);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--glow-sm), 0 0 80px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-400), var(--cyan-400));
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo {
  font-family: var(--font-orbitron);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.login-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.password-container {
  position: relative;
}

.password-container .form-input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  transition: color var(--trans-base);
}

.password-toggle:hover { color: var(--purple-400); }

.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: none;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  accent-color: var(--purple-500);
  cursor: none;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.login-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green-400);
  padding: 0.875rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  text-align: center;
  display: none;
  animation: fadeInUp 0.4s ease;
}

.login-success.show { display: block; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(139, 92, 246, 0.5); }
  50% { text-shadow: 0 0 25px rgba(139, 92, 246, 0.8), 0 0 50px rgba(139, 92, 246, 0.4); }
}

@keyframes pulse-glow-green {
  0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.5); }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes avatar-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0); }
}

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

@keyframes msg-appear {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes terminal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glitch-clip-1 {
  0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(-3px, 0); }
  25% { clip-path: inset(40% 0 50% 0); transform: translate(3px, 0); }
  50% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 0); }
  75% { clip-path: inset(10% 0 80% 0); transform: translate(2px, 0); }
}

@keyframes glitch-clip-2 {
  0%, 100% { clip-path: inset(70% 0 10% 0); transform: translate(3px, 0); }
  25% { clip-path: inset(5% 0 80% 0); transform: translate(-3px, 0); }
  50% { clip-path: inset(50% 0 30% 0); transform: translate(2px, 0); }
  75% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-desc { max-width: 100%; }
  .hero-buttons { justify-content: center; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .card-popular { transform: none; }
  .card-popular:hover { transform: translateY(-4px); }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header { padding: 0.875rem 1rem; }

  .nav-menu .nav-link { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .section { padding: 3rem 1rem; }

  .cta-content { padding: 2rem; }
  .contact-form-card { padding: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .footer-legal { justify-content: center; }

  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */
.solutions-section {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.03), transparent);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.solution-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 1.5rem;
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-md);
  border-color: var(--border-hover);
}

.solution-card--glow:hover {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), 0 0 60px rgba(139, 92, 246, 0.15);
}

.solution-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
}

.solution-accent--purple { background: linear-gradient(90deg, var(--purple-700), var(--purple-400)); }
.solution-accent--cyan   { background: linear-gradient(90deg, var(--cyan-600), var(--cyan-400)); }
.solution-accent--green  { background: linear-gradient(90deg, #059669, #34d399); }
.solution-accent--orange { background: linear-gradient(90deg, #c2410c, #fb923c); }
.solution-accent--yellow { background: linear-gradient(90deg, #b45309, #fbbf24); }
.solution-accent--gradient { background: linear-gradient(90deg, var(--purple-700), var(--cyan-500), var(--purple-400)); }

.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon--purple  { background: rgba(139, 92, 246, 0.15); color: var(--purple-400); }
.solution-icon--cyan    { background: rgba(6, 182, 212, 0.15);  color: var(--cyan-400); }
.solution-icon--green   { background: rgba(52, 211, 153, 0.15); color: #34d399; }
.solution-icon--orange  { background: rgba(251, 146, 60, 0.15); color: #fb923c; }
.solution-icon--yellow  { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.solution-icon--gradient {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  color: var(--purple-300);
}

.solution-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.solution-desc {
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.6;
  flex: 1;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: auto;
}

.solution-tag {
  font-size: 0.6875rem;
  padding: 0.2rem 0.625rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 999px;
  color: var(--purple-300);
  font-family: var(--font-orbitron);
  letter-spacing: 0.03em;
}

.solution-tag--glow {
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--cyan-300);
  background: rgba(6, 182, 212, 0.08);
}


/* ============================================================
   ECOSYSTEM SECTION
   ============================================================ */
.ecosystem-section {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.04), transparent);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

/* Terminal */
.eco-terminal-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.eco-terminal {
  background: rgba(4, 4, 16, 0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.08);
}

.eco-terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(10, 10, 30, 0.9);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.eco-term-dots {
  display: flex;
  gap: 6px;
}

.eco-dot-r { width: 12px; height: 12px; border-radius: 50%; background: #ff5f57; }
.eco-dot-y { width: 12px; height: 12px; border-radius: 50%; background: #ffbd2e; }
.eco-dot-g { width: 12px; height: 12px; border-radius: 50%; background: #28ca41; }

.eco-term-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-inter);
  letter-spacing: 0.02em;
}

.eco-terminal-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.eco-term-line {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eco-terminal.animated .eco-term-line { opacity: 1; transform: translateX(0); }

.eco-terminal.animated .term-l1  { transition-delay: 0.10s; }
.eco-terminal.animated .term-l2  { transition-delay: 0.30s; }
.eco-terminal.animated .term-l3  { transition-delay: 0.50s; }
.eco-terminal.animated .term-l4  { transition-delay: 0.70s; }
.eco-terminal.animated .term-l5  { transition-delay: 0.90s; }
.eco-terminal.animated .term-l6  { transition-delay: 1.10s; }
.eco-terminal.animated .term-l7  { transition-delay: 1.30s; }
.eco-terminal.animated .term-l8  { transition-delay: 1.50s; }
.eco-terminal.animated .term-l9  { transition-delay: 1.70s; }
.eco-terminal.animated .term-l10 { transition-delay: 1.95s; }

.tc-purple { color: #c084fc; }
.tc-cyan   { color: #22d3ee; }
.tc-green  { color: #4ade80; }
.tc-yellow { color: #fbbf24; }
.tc-muted  { color: var(--text-muted); }

.eco-blink-block {
  color: var(--purple-400);
  animation: blink 1s step-end infinite;
}

.eco-term-output { margin-top: 0.25rem; }

.eco-desc-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.eco-desc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.eco-desc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.eco-desc-dot--purple { background: var(--purple-500); box-shadow: 0 0 8px var(--purple-500); }
.eco-desc-dot--cyan   { background: var(--cyan-500);   box-shadow: 0 0 8px var(--cyan-500); }
.eco-desc-dot--green  { background: var(--green-500);  box-shadow: 0 0 8px var(--green-500); }

/* Orbit diagram */
.eco-orbit-wrapper {
  flex-shrink: 0;
}

.eco-orbit {
  position: relative;
  width: 520px;
  height: 520px;
}

.eco-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.eco-pulse-dot {
  animation: eco-pulse 2s ease-in-out infinite;
}

@keyframes eco-pulse {
  0%, 100% { opacity: 0.4; r: 4; }
  50% { opacity: 1; r: 6; }
}

.eco-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.8), rgba(139, 92, 246, 0.6));
  border: 2px solid rgba(139, 92, 246, 0.5);
  box-shadow: var(--glow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: eco-center-pulse 3s ease-in-out infinite;
}

@keyframes eco-center-pulse {
  0%, 100% { box-shadow: var(--glow-md); }
  50% { box-shadow: var(--glow-lg); }
}

.eco-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.eco-center-label {
  font-family: var(--font-orbitron);
  font-size: 0.45rem;
  color: var(--purple-200);
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-align: center;
}

.eco-node {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: all var(--trans-base);
  cursor: default;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.eco-node span {
  font-size: 0.55rem;
  font-family: var(--font-orbitron);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.eco-node--purple {
  border-color: rgba(139, 92, 246, 0.35);
  color: var(--purple-400);
}

.eco-node--purple:hover {
  border-color: var(--purple-500);
  box-shadow: var(--glow-sm);
  background: rgba(139, 92, 246, 0.1);
  transform: scale(1.12);
}

.eco-node--purple:hover span { color: var(--purple-300); }

.eco-node--cyan {
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--cyan-400);
}

.eco-node--cyan:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--glow-cyan);
  background: rgba(6, 182, 212, 0.1);
  transform: scale(1.12);
}

.eco-node--cyan:hover span { color: var(--cyan-300); }

.eco-node--sm {
  width: 56px;
  height: 56px;
}

.eco-node--sm span { font-size: 0.5rem; }


/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  border-top: 1px solid rgba(6, 182, 212, 0.1);
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.02), transparent);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process-num {
  font-family: var(--font-orbitron);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(139, 92, 246, 0.08);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
}

.process-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--trans-base);
}

.process-step:hover .process-icon-wrap {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
  background: rgba(139, 92, 246, 0.08);
}

.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.625rem;
  font-family: var(--font-orbitron);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

.process-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 2rem;
  color: var(--purple-600);
}

.process-connector::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-700), var(--cyan-600));
}

.process-connector::after {
  content: '›';
  font-size: 1.5rem;
  color: var(--cyan-500);
  line-height: 1;
  margin-left: -2px;
}


/* ============================================================
   TECH SECTION
   ============================================================ */
.tech-section {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  overflow: hidden;
}

.tech-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.tech-marquee {
  overflow: hidden;
  padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.tech-marquee-track {
  display: inline-flex;
  gap: 0.875rem;
  animation: marquee-left 28s linear infinite;
  white-space: nowrap;
}

.tech-marquee--reverse .tech-marquee-track {
  animation: marquee-right 22s linear infinite;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--text-gray);
  white-space: nowrap;
  transition: all var(--trans-base);
  backdrop-filter: blur(10px);
}

.tech-badge:hover {
  border-color: var(--border-hover);
  color: var(--text-white);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.tech-dot {
  font-size: 0.5rem;
  opacity: 0.6;
}

.tech-badge--lang      { color: var(--purple-300); border-color: rgba(139, 92, 246, 0.2); }
.tech-badge--framework { color: var(--text-gray); }
.tech-badge--ai        { color: var(--cyan-300); border-color: rgba(6, 182, 212, 0.25); }
.tech-badge--api       { color: #a3e635; border-color: rgba(163, 230, 53, 0.2); }
.tech-badge--db        { color: #fb923c; border-color: rgba(251, 146, 60, 0.2); }
.tech-badge--devops    { color: #60a5fa; border-color: rgba(96, 165, 250, 0.2); }

.tech-badge--ai:hover  { box-shadow: var(--glow-cyan); }
.tech-badge--lang:hover { box-shadow: var(--glow-sm); }


/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--trans-base);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-md);
  border-color: var(--border-hover);
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-family: var(--font-orbitron);
  letter-spacing: 0.08em;
  color: var(--cyan-400);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  width: fit-content;
}

.portfolio-tag--building {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.portfolio-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
  flex: 1;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.portfolio-tech span {
  font-size: 0.6875rem;
  padding: 0.2rem 0.625rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 6px;
  color: var(--purple-300);
  font-family: var(--font-orbitron);
  letter-spacing: 0.02em;
}

.portfolio-result {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.result-metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.result-value {
  font-family: var(--font-orbitron);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--purple-400);
  text-shadow: var(--glow-sm);
  line-height: 1;
}

.result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ============================================================
   RESPONSIVE — NOVAS SEÇÕES
   ============================================================ */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eco-orbit-wrapper {
    display: flex;
    justify-content: center;
  }

  .eco-orbit {
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -114px;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .process-connector { display: none; }

  .process-step {
    flex: 0 0 calc(50% - 1rem);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .eco-orbit {
    transform: scale(0.6);
    transform-origin: top center;
    margin-bottom: -208px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    flex: none;
    width: 100%;
    max-width: 340px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .eco-term-line {
    font-size: 0.8rem;
  }
}

/* ============================================================
   PRO TEASER SECTION (index.html)
   ============================================================ */
.pro-teaser-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(88,28,135,.06) 0%, rgba(6,182,212,.04) 100%);
  border-top: 1px solid rgba(139,92,246,.12);
  border-bottom: 1px solid rgba(139,92,246,.12);
}
.pro-teaser-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,246,.07) 0%, transparent 70%);
  pointer-events: none;
}
.pro-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pro-teaser-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-orbitron); font-size: .6rem; font-weight: 700;
  letter-spacing: .18em; color: var(--cyan-400);
  background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.3);
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.pro-badge-pulse {
  width: 6px; height: 6px; background: var(--cyan-400); border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-400); animation: pulse 1.5s ease-in-out infinite;
}
.pro-teaser-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem;
}
.pro-teaser-desc {
  font-size: 1rem; color: var(--text-gray);
  line-height: 1.75; margin-bottom: 2rem; max-width: 520px;
}
.pro-teaser-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.pro-feat-item { display: flex; align-items: flex-start; gap: .875rem; }
.pro-feat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pro-feat-icon--purple { background: rgba(139,92,246,.15); border: 1px solid rgba(139,92,246,.3); color: var(--purple-400); }
.pro-feat-icon--cyan   { background: rgba(6,182,212,.12);  border: 1px solid rgba(6,182,212,.3);  color: var(--cyan-400); }
.pro-feat-icon--green  { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3); color: var(--green-400); }
.pro-feat-title { font-size: .9375rem; font-weight: 600; color: var(--text-light); margin-bottom: .2rem; }
.pro-feat-desc  { font-size: .8125rem; color: var(--text-muted); line-height: 1.5; }
.pro-teaser-cta { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; }

/* Right: App preview card */
.pro-visual-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.pro-visual-header {
  display: flex; align-items: center; gap: .375rem;
  padding: .875rem 1rem; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.pro-visual-dot { width: 10px; height: 10px; border-radius: 50%; }
.pro-visual-dot--red    { background: #ff5f57; }
.pro-visual-dot--yellow { background: #ffbd2e; }
.pro-visual-dot--green  { background: #28ca41; }
.pro-visual-title {
  font-family: var(--font-orbitron); font-size: .58rem;
  font-weight: 700; letter-spacing: .1em; color: var(--text-muted); margin-left: .5rem;
}
.pro-channels-showcase {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .5rem; padding: 1rem; border-bottom: 1px solid var(--border);
}
.pro-channel-chip {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: .5rem .25rem; border-radius: 8px;
  font-size: .58rem; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  transition: all var(--trans-base);
}
.pro-channel-chip:hover { background: rgba(255,255,255,.06); color: var(--text-light); }
.pro-channel-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.pro-conv-preview { padding: .75rem 1rem; display: flex; flex-direction: column; gap: .5rem; }
.pro-conv-item {
  display: flex; align-items: center; gap: .625rem;
  padding: .5rem .625rem; border-radius: 8px;
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05);
}
.pro-conv-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .52rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.pro-conv-info { flex: 1; min-width: 0; }
.pro-conv-name { font-size: .68rem; font-weight: 600; color: var(--text-light); margin-bottom: .1rem; }
.pro-conv-msg  { font-size: .63rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pro-conv-tag {
  font-family: var(--font-orbitron); font-size: .44rem;
  font-weight: 700; padding: .2rem .4rem; border-radius: 4px; flex-shrink: 0;
}
.pro-conv-tag--ai     { background: rgba(139,92,246,.2); color: var(--purple-300); border: 1px solid rgba(139,92,246,.4); }
.pro-conv-tag--ticket { background: rgba(6,182,212,.15);  color: var(--cyan-400);   border: 1px solid rgba(6,182,212,.35); }
.pro-conv-tag--queue  { background: rgba(16,185,129,.15); color: var(--green-400);  border: 1px solid rgba(16,185,129,.35); }

@media (max-width: 1024px) { .pro-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 640px)  { .pro-channels-showcase { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   HERO: COMPACT STATS STRIP
   ============================================================ */
.hero-stats-strip {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.hstat {
  flex: 1;
  text-align: center;
}

.hstat-num {
  font-family: var(--font-orbitron);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--purple-400);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 14px rgba(139, 92, 246, 0.5);
}

.hstat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hstat-divider {
  width: 1px;
  height: 32px;
  background: rgba(139, 92, 246, 0.2);
  flex-shrink: 0;
}

/* ============================================================
   HERO: HOLOGRAPHIC ROBOT DISPLAY
   ============================================================ */
.holo-display {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 480 / 520;
  margin: 0 auto;
  overflow: visible;
  user-select: none;
}

/* Ambient radial background glow — centered on the ring platform area */
.holo-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 62%, rgba(139, 92, 246, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 60% 35% at 50% 68%, rgba(6, 182, 212, 0.09) 0%, transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}

/* SVG rings overlay — behind the robot */
.holo-rings-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Robot centering wrapper — JS drives transform for parallax */
.holo-robot-wrap {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -52%);
  width: 55%;
  z-index: 5;
  will-change: transform;
}

/* The robot image itself: glow + float animation */
.holo-robot-img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 22px rgba(139, 92, 246, 0.6))
    drop-shadow(0 0 50px rgba(139, 92, 246, 0.28))
    drop-shadow(0 0 90px rgba(6, 182, 212, 0.12));
  animation: holo-robot-float 5s ease-in-out infinite;
}

/* Glow pool — light cast on the "floor" under the robot */
.robot-glow-base {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.38) 0%, transparent 70%);
  filter: blur(8px);
  border-radius: 50%;
  animation: holo-pool-pulse 5s ease-in-out infinite;
}

/* Horizontal scan line sweeping top to bottom */
.holo-scan-line {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(6, 182, 212, 0.85) 20%,
    rgba(139, 92, 246, 0.9) 50%,
    rgba(6, 182, 212, 0.85) 80%,
    transparent
  );
  box-shadow:
    0 0 10px rgba(6, 182, 212, 0.7),
    0 0 28px rgba(6, 182, 212, 0.35);
  z-index: 8;
  pointer-events: none;
  animation: holo-scan 4s ease-in-out infinite;
}

/* HUD floating tags (4 corners of the display) */
.holo-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-orbitron);
  font-size: 0.545rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--purple-300);
  background: rgba(10, 5, 28, 0.72);
  border: 1px solid rgba(139, 92, 246, 0.38);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  box-shadow:
    0 0 14px rgba(139, 92, 246, 0.18),
    inset 0 0 8px rgba(139, 92, 246, 0.06);
  backdrop-filter: blur(8px);
  z-index: 10;
  white-space: nowrap;
}

.holo-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--purple-400);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--purple-400);
  flex-shrink: 0;
  animation: holo-dot-blink 2.2s ease-in-out infinite;
}

.holo-tag-dot--cyan {
  background: var(--cyan-400);
  box-shadow: 0 0 6px var(--cyan-400);
}

/* Positioning: corners of the hologram panel */
.holo-tag--1 {
  top: 10%;
  left: 3%;
  animation: holo-tag-float 3.8s ease-in-out infinite 0s;
}
.holo-tag--2 {
  top: 10%;
  right: 3%;
  color: var(--cyan-300);
  border-color: rgba(6, 182, 212, 0.38);
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.18), inset 0 0 8px rgba(6, 182, 212, 0.06);
  animation: holo-tag-float 3.8s ease-in-out infinite 0.9s;
}
.holo-tag--3 {
  bottom: 22%;
  left: 3%;
  animation: holo-tag-float 3.8s ease-in-out infinite 1.8s;
}
.holo-tag--4 {
  bottom: 22%;
  right: 3%;
  color: var(--cyan-300);
  border-color: rgba(6, 182, 212, 0.38);
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.18), inset 0 0 8px rgba(6, 182, 212, 0.06);
  animation: holo-tag-float 3.8s ease-in-out infinite 2.7s;
}

/* Status indicator bar at bottom */
.holo-statusbar {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-orbitron);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green-400);
  z-index: 10;
  white-space: nowrap;
  opacity: 0.88;
}

.holo-statusbar-led {
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-400);
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================================
   HOLOGRAM KEYFRAMES
   ============================================================ */
@keyframes holo-robot-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@keyframes holo-scan {
  0%   { top: 4%;  opacity: 0; }
  4%   { opacity: 1; }
  92%  { opacity: 0.85; }
  100% { top: 96%; opacity: 0; }
}

@keyframes holo-tag-float {
  0%, 100% { transform: translateY(0px);  opacity: 0.82; }
  50%       { transform: translateY(-7px); opacity: 1; }
}

@keyframes holo-pool-pulse {
  0%, 100% { opacity: 0.5;  transform: translateX(-50%) scaleX(0.88); }
  50%       { opacity: 0.92; transform: translateX(-50%) scaleX(1.12); }
}

@keyframes holo-dot-blink {
  0%, 100% { opacity: 1;   }
  50%       { opacity: 0.25; }
}

/* ============================================================
   HOLOGRAM: RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .holo-display {
    max-width: 380px;
  }
  .hero-stats-strip {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .holo-display {
    max-width: 300px;
  }
  .holo-tag {
    font-size: 0.5rem;
    padding: 0.25rem 0.45rem;
  }
  .hstat-num {
    font-size: 1.125rem;
  }
}

/* ============================================================
   STING ERP SECTION
   ============================================================ */
.sting-section {
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
}

.sting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Card visual */
.sting-visual-card {
  padding: 0;
  overflow: hidden;
  background: var(--dark-2);
}

.sting-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background: rgba(10, 10, 30, 0.9);
  border-bottom: 1px solid var(--border);
}

.sting-dots { display: flex; gap: 6px; }
.sting-dot { width: 12px; height: 12px; border-radius: 50%; }
.sting-dot--r { background: #ff5f57; }
.sting-dot--y { background: #ffbd2e; }
.sting-dot--g { background: #28ca41; }

.sting-card-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.sting-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}

.sting-metric {
  padding: 1.25rem 1.5rem;
  background: var(--dark-2);
}

.sting-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.sting-metric-value {
  font-family: var(--font-orbitron);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--purple-400);
  text-shadow: var(--glow-sm);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.sting-metric-delta { font-size: 0.75rem; font-weight: 500; }
.sting-delta--up   { color: var(--green-400); }
.sting-delta--down { color: #ef4444; }

.sting-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
}

.sting-mod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-gray);
  text-align: center;
}

.sting-mod-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.sting-statusbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(10, 10, 30, 0.6);
  border-top: 1px solid var(--border);
  font-family: var(--font-orbitron);
  font-size: 0.58rem;
  color: var(--green-400);
  letter-spacing: 0.08em;
}

.sting-status-led {
  width: 7px;
  height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--green-400);
}

/* Conteúdo textual */
.sting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-orbitron);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--purple-300);
  padding: 0.4rem 0.875rem;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.sting-badge-pulse {
  width: 7px;
  height: 7px;
  background: var(--purple-400);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: var(--glow-sm);
}

.sting-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.sting-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.sting-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.sting-cta {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.sting-fine {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .sting-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .sting-modules-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .sting-mod-ico { width: 32px; height: 32px; font-size: 1rem; }
}
