@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  color-scheme: dark;
  /* Paleta RUPSTACK integrada para IntegraFeira */
  --bg-primary: #080a0f;
  --bg-secondary: #0d111a;
  --bg-tertiary: #121824;
  --bg-card: rgba(18, 24, 36, 0.65);
  --bg-card-hover: rgba(24, 32, 48, 0.75);
  --bg-light: #F8FAFC;
  --bg-light-secondary: #EEF2F6;

  /* Cores de Destaque RUPSTACK */
  --color-primary: #13a39a;       /* Turquesa */
  --color-primary-dark: #0e827b;
  --color-primary-light: #2ac2b8;
  --color-primary-glow: rgba(19, 163, 154, 0.25);
  --color-accent: #cf7336;        /* Laranja Terroso */
  --color-accent-dark: #af5c26;
  --color-accent-light: #e28b52;
  --color-accent-glow: rgba(207, 115, 54, 0.2);
  --color-cyan: #2ac2b8;
  --color-purple: #8b5cf6;
  --color-danger: #e74c3c;
  --color-warning: #f39c12;

  /* Tipografia & Tons neutros */
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  
  /* Efeitos e Bordas (RUPSTACK Offset Stack) */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-glow: rgba(19, 163, 154, 0.4);
  --border-accent-glow: rgba(207, 115, 54, 0.4);
  --shadow-lg: 4px 4px 0px rgba(255, 255, 255, 0.15);
  --shadow-glow: 4px 4px 0px var(--color-primary);
  --shadow-accent-glow: 4px 4px 0px var(--color-accent);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* Animações RUPSTACK */
  --transition-fast:   150ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-slower: 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Gradiante de fundo tecnológico discreto */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -150px;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(90px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER & NAVEGAÇÃO FIXA (STICKY NAV)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}

.header.scrolled {
  background: rgba(8, 12, 20, 0.95);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-fast);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-cyan) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 14px;
  border-radius: 10px;
  transition: var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active, .nav-item-dropdown:hover .nav-link, .active-dropdown .nav-link {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after, .active-dropdown .nav-link::after {
  transform: scaleX(1);
}

/* Menus Dropdown (Glassmorphic Dark Tech) */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  cursor: pointer;
  gap: 6px;
  user-select: none;
}

.dropdown-trigger .arrow-down {
  transition: transform 0.3s ease;
  opacity: 0.6;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.nav-item-dropdown:hover .arrow-down, .nav-item-dropdown.mobile-open .arrow-down {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--color-primary);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: rgba(10, 15, 28, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 25px rgba(59, 130, 246, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Ponte invisível para evitar fechamento ao mover o cursor */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.nav-item-dropdown:hover .dropdown-panel,
.nav-item-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
  border-color: rgba(59, 130, 246, 0.25);
}

.dropdown-item-icon {
  font-size: 1.35rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dropdown-item:hover .dropdown-item-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(16, 185, 129, 0.25));
  border-color: var(--color-primary);
  transform: scale(1.06);
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dropdown-item-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.dropdown-item-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Ações da Direita do Menu (.nav-actions) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-btn-crm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.4);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-btn-crm:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10B981;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
  color: #fff;
}

.nav-btn-cta {
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1D4ED8 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
  text-decoration: none;
}

.nav-btn-cta:hover {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #1D4ED8 100%);
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.7);
  transform: translateY(-2px);
  color: #fff;
}

/* Botão Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-toggle:hover, .mobile-toggle[aria-expanded="true"] {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-primary);
  color: #fff;
}

/* ==========================================================================
   BOTões & MICROINTERAÇÕES (CTA)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.15);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  box-shadow: 6px 6px 0px var(--color-accent);
  transform: translate(-2px, -2px);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.15);
  border: 1px solid transparent;
}

.btn-accent:hover {
  background: var(--color-accent-light);
  box-shadow: 6px 6px 0px var(--color-primary);
  transform: translate(-2px, -2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  background: rgba(19, 163, 154, 0.05);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 6px 6px 0px var(--color-primary);
  transform: translate(-2px, -2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 18px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   HERO SECTION DE ALTO IMPACTO & MOCKUP DO PAINEL
   ========================================================================== */
.hero {
  padding: 150px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #60A5FA;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(120deg, #3B82F6 0%, #00F2FE 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   MOCKUP DO PAINEL ADMINISTRATIVO EM CSS (DARK TECH)
   ========================================================================== */
.mockup-container {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  padding: 1px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: var(--transition-smooth);
}

.mockup-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(59, 130, 246, 0.25);
}

.mockup-inner {
  background: var(--bg-secondary);
  border-radius: 23px;
  overflow: hidden;
  position: relative;
}

.mockup-topbar {
  background: var(--bg-tertiary);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.mockup-title-bar {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.mockup-demo-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-glow);
  padding: 2px 8px;
  border-radius: 4px;
}

.mockup-body {
  padding: 24px;
}

.mockup-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.mockup-kpi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition-fast);
}

.mockup-kpi-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-primary);
}

.kpi-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
}

.kpi-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kpi-diff {
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.diff-up {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent);
}

.mockup-chart-section {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 12px;
  padding-top: 10px;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(59,130,246,0.3) 100%);
  transition: height 1s ease-out;
  position: relative;
  min-height: 12px;
}

.bar-fill.accent-fill {
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(16,185,129,0.3) 100%);
}

.bar-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   FAIXA DE BENEFÍCIOS (BENEFITS STRIP)
   ========================================================================== */
.benefits-strip {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 30px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  text-align: center;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.benefit-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   SEÇÃO DE AUTORIDADE (FEBIC 2026 / EXPERIÊNCIA REAL)
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.ecosystem-chain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 24px 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.ecosystem-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 130px;
  text-align: center;
  position: relative;
}

.eco-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.eco-circle.accent-circle {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.eco-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.eco-arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ==========================================================================
   PROBLEMAS VS. SOLUÇÃO (GRID DE RISCOS ESQUERDA / SOLUÇÃO DIREITA)
   ========================================================================== */
.problems-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.problems-box {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--color-danger);
  font-size: 1.4rem;
  font-weight: 700;
}

.problems-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.problem-icon {
  color: var(--color-danger);
  font-weight: 900;
  flex-shrink: 0;
}

.solution-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}

.solution-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: #fff;
}

.solution-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.solution-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-hl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.hl-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hl-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.hl-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   GRID DE MÓDULOS (15 MÓDULOS - VITRINE)
   ========================================================================== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-cyan));
  opacity: 0;
  transition: var(--transition-fast);
}

.module-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(59, 130, 246, 0.1);
}

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

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.module-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.module-icon-large {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-primary);
}

.module-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.module-subtitle {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.module-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.module-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   TABELA E FORMULÁRIOS CRM & LEADS
   ========================================================================== */
.form-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.25);
  background: rgba(0, 0, 0, 0.5);
}

.form-select {
  background-color: var(--bg-tertiary);
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* Tabela de CRM no Admin */
.crm-table-container {
  overflow-x: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.crm-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.crm-table th {
  background: var(--bg-tertiary);
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-glass);
}

.crm-table td {
  padding: 16px 20px;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.crm-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.status-novo { background: rgba(59, 130, 246, 0.2); color: #60A5FA; border: 1px solid #3B82F6; }
.status-demo { background: rgba(245, 158, 11, 0.2); color: #FBBF24; border: 1px solid #F59E0B; }
.status-contrato { background: rgba(16, 185, 129, 0.25); color: #34D399; border: 1px solid #10B981; }
.status-negocio { background: rgba(139, 92, 246, 0.25); color: #A78BFA; border: 1px solid #8B5CF6; }

/* ==========================================================================
   ACCORDION (FAQ) & INTERATIVIDADE
   ========================================================================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 950px;
  margin: 0 auto;
}

.accordion-item {
  background: linear-gradient(145deg, rgba(19, 26, 43, 0.7) 0%, rgba(13, 18, 31, 0.9) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

.accordion-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.15);
}

.accordion-item.active {
  border-color: var(--color-primary);
  background: linear-gradient(145deg, rgba(25, 35, 60, 0.8) 0%, rgba(14, 20, 35, 0.95) 100%);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(59, 130, 246, 0.25);
}

.accordion-header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-primary);
  user-select: none;
  transition: var(--transition-fast);
}

.accordion-item.active .accordion-header {
  color: #60A5FA;
  padding-bottom: 16px;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border-color: #10B981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* Compatibilidade total para .accordion-body e .accordion-content */
.accordion-body, .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 28px;
  opacity: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
}

.accordion-item.active .accordion-body, .accordion-item.active .accordion-content {
  max-height: 600px;
  padding: 0 28px 28px;
  opacity: 1;
}

.faq-answer-box {
  border-left: 3px solid var(--color-cyan);
  padding-left: 20px;
  background: rgba(0, 0, 0, 0.2);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 4px;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP (WHATSAPP WIDGET)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: bounce-pulse 3s infinite;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
}

.whatsapp-float span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.25s ease;
  font-size: 0.88rem;
}

.whatsapp-float:hover {
  width: auto;
  padding: 0 20px 0 16px;
  border-radius: 100px;
  background: #1EBE5D;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
  color: #fff;
  transform: scale(1.03);
  animation: none;
}

.whatsapp-float:hover span {
  max-width: 200px;
  opacity: 1;
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
  fill: #fff;
  flex-shrink: 0;
}

@keyframes bounce-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
  background-color: #05070D;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 340px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--color-cyan);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ==========================================================================
   ESTILOS PREMIUM - SOLICITAÇÃO DE DEMONSTRAÇÃO & FORMULÁRIOS INTERATIVOS
   ========================================================================== */
.demo-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.demo-sidebar-sticky {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.demo-info-card {
  background: linear-gradient(145deg, rgba(19, 26, 43, 0.7) 0%, rgba(13, 18, 31, 0.85) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 15px 35px -5px rgba(0,0,0,0.4);
}

.demo-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-top: 24px;
  padding-left: 8px;
}

.demo-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 24px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  opacity: 0.3;
}

.demo-timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.demo-timeline-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
  transition: var(--transition-fast);
}

.demo-timeline-item:hover .demo-timeline-num {
  transform: scale(1.15);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
  background: var(--color-primary-dark);
}

.demo-timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.demo-timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.demo-trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: var(--text-primary);
}

.demo-form-card {
  background: linear-gradient(160deg, rgba(19, 26, 43, 0.85) 0%, rgba(10, 14, 25, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.7), 0 0 30px rgba(59, 130, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.demo-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-cyan), var(--color-accent));
}

.form-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.form-step-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Grid otimizado de 2 e 3 colunas para campos do formulário */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 0.8fr;
  gap: 16px;
}

/* Checkboxes interativos no estilo Cards Modernos (Tile Selector) */
.module-tiles-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.module-tile-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.module-tile-label:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.module-tile-label:has(input:checked) {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.25) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.module-tile-input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.module-tile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.module-tile-title {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.module-tile-label:has(input:checked) .module-tile-title {
  color: #60A5FA;
}

.module-tile-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Efeitos em inputs no foco */
.form-control:focus, .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background-color: rgba(13, 18, 31, 0.95);
}

/* Responsividade adicional do formulário de demonstração */
@media (max-width: 1024px) {
  .demo-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .demo-sidebar-sticky {
    position: static;
  }
  .form-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid-3 .form-group:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .demo-form-card {
    padding: 24px 18px;
  }
  .form-grid-2, .form-grid-3, .module-tiles-container {
    grid-template-columns: 1fr;
  }
  .form-grid-3 .form-group:first-child {
    grid-column: span 1;
  }
}

/* ==========================================================================
   COMPATIBILIDADE & CORREÇÃO DE FORMULÁRIOS (.form-row, .kpi-grid, .kpi-card)
   ========================================================================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.kpi-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 25px rgba(59, 130, 246, 0.2);
  border-color: var(--color-primary);
}

/* ==========================================================================
   ESTILOS ENTERPRISE - PÁGINA DE CONTATO (.contact-split-grid, canais)
   ========================================================================== */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.contact-channel-card {
  background: linear-gradient(145deg, rgba(19, 26, 43, 0.75) 0%, rgba(13, 18, 31, 0.9) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.contact-channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.contact-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 130, 246, 0.15);
  background: var(--bg-secondary);
}

.contact-card-whatsapp:hover { border-color: rgba(16, 185, 129, 0.6); }
.contact-card-whatsapp:hover::before { background: var(--color-accent); box-shadow: 0 0 15px var(--color-accent); }

.contact-card-phone:hover { border-color: rgba(59, 130, 246, 0.6); }
.contact-card-phone:hover::before { background: var(--color-primary); box-shadow: 0 0 15px var(--color-primary); }

.contact-card-email:hover { border-color: rgba(6, 182, 212, 0.6); }
.contact-card-email:hover::before { background: var(--color-cyan); box-shadow: 0 0 15px var(--color-cyan); }

.contact-card-location:hover { border-color: rgba(245, 158, 11, 0.6); }
.contact-card-location:hover::before { background: var(--color-warning); box-shadow: 0 0 15px var(--color-warning); }

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

@media (max-width: 640px) {
  .contact-channels-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES - ENTERPRISE MOBILE NAV)
   ========================================================================== */
@media (max-width: 1150px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #070A12;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 32px 28px;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--border-glass);
    gap: 24px;
    z-index: 1050;
  }

  .nav-menu.nav-open, .nav-links.nav-open {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 12px 18px;
    justify-content: space-between;
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link:hover, .nav-link.active, .active-dropdown .nav-link {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    color: #fff;
  }

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

  /* Comportamento Dropdown no Celular / Tablet */
  .nav-item-dropdown {
    flex-direction: column;
    align-items: stretch;
  }
  
  .nav-item-dropdown::after { display: none; }

  .dropdown-panel {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 8px 0 6px 12px;
    margin-top: 2px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-item-dropdown.mobile-open .dropdown-panel {
    display: flex;
  }

  .dropdown-item {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 6px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
  }

  .nav-btn-crm, .nav-btn-cta {
    justify-content: center;
    padding: 14px 20px;
    font-size: 1.05rem;
    width: 100%;
  }

  .mobile-toggle { display: block; }
}

@media (max-width: 1024px) {
  .hero-grid, .problems-solution-grid {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 2.7rem; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 2.3rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .mockup-kpi-grid { grid-template-columns: 1fr; }
}

/* Força o modo escuro nativo para selects, options, inputs e textareas */
select, option, input, textarea, .form-control, .form-select {
  color-scheme: dark !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F3F4F6;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

select.form-select,
input.form-control,
textarea.form-control,
.form-control,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background-color: #0F172A !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-size: 0.98rem;
  font-family: inherit;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.form-control::placeholder,
textarea.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: #10B981 !important;
  background-color: #0B0F19 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.5);
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* Customização universal para elementos SELECT e suas OPTIONS */
select.form-select,
.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%3C34D399' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 18px !important;
  padding-right: 46px !important;
  cursor: pointer;
}

select option,
.form-select option {
  background-color: #1E293B !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  padding: 14px 18px;
  font-size: 0.96rem;
  font-weight: 500;
}

select option:hover,
select option:focus,
select option:checked,
.form-select option:hover,
.form-select option:focus,
.form-select option:checked {
  background-color: #0F172A !important;
  color: #34D399 !important;
  -webkit-text-fill-color: #34D399 !important;
}

/* Radio cards de alta visibilidade */
.custom-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-radio-card:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-1px);
}

.custom-radio-card:has(input:checked) {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.custom-radio-card input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #10B981;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.custom-radio-card .title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 3px;
}

.custom-radio-card .desc {
  color: #D1D5DB;
  font-size: 0.88rem;
  line-height: 1.45;
}

.custom-radio-card:has(input:checked) .title {
  color: #34D399;
}

.custom-radio-card:has(input:checked) .desc {
  color: #F9FAFB;
}

/* ==========================================================================
   ESTILOS DAS TELAS REAIS DO SISTEMA (FEBIC 2026 REAL UI)
   ========================================================================== */

/* Container de Janela/Moldura de Sistema */
.real-screen-frame {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 35px rgba(59, 130, 246, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 30px;
}

.real-screen-frame:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 30px 70px -12px rgba(0, 0, 0, 0.8), 0 0 45px rgba(59, 130, 246, 0.25);
}

.real-screen-topbar {
  background: #1e293b;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.real-screen-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.real-screen-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.real-screen-dot.red { background-color: #ef4444; }
.real-screen-dot.yellow { background-color: #f59e0b; }
.real-screen-dot.green { background-color: #10b981; }

.real-screen-url {
  font-family: monospace;
  font-size: 0.82rem;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.35);
  padding: 5px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.real-screen-badge-live {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Área de Conteúdo da Tela Real (Fundo Claro Fiel ao Sistema) */
.real-screen-canvas {
  background: #f1f5f9;
  color: #1e293b;
  padding: 28px;
  font-family: 'Inter', sans-serif;
}

.real-screen-canvas.compact {
  padding: 18px;
}

.real-screen-section-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- 1. PAINEL DO PARTICIPANTE (GRID 3x2) --- */
.participant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.participant-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.participant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Cores e Bordas dos Cards do Participante */
.participant-card.card-blue {
  border-color: #bfdbfe;
  background: #f0f7ff;
}

.participant-card.card-pink {
  border-color: #fbcfe8;
  background: #fdf2f8;
}

.participant-card.card-yellow {
  border-color: #fef08a;
  background: #fefce8;
}

.participant-card.card-purple {
  border-color: #e9d5ff;
  background: #faf5ff;
}

.participant-card.card-orange {
  border-color: #fed7aa;
  background: #fff7ed;
}

.participant-card.card-white-blue {
  border-color: #e2e8f0;
  background: #ffffff;
}

.p-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: inline-flex;
}

.p-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.p-card-title.color-blue { color: #1e40af; }
.p-card-title.color-pink { color: #db2777; }
.p-card-title.color-orange { color: #ea580c; }
.p-card-title.color-purple { color: #7e22ce; }
.p-card-title.color-yellow { color: #b45309; }
.p-card-title.color-darkblue { color: #1e3a8a; }

.p-card-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 18px;
  flex-grow: 1;
}

.p-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.p-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.p-btn-sm {
  padding: 6px 12px;
  font-size: 0.78rem;
}

.p-btn-locked {
  background: #e2e8f0;
  color: #64748b;
  border-color: #cbd5e1;
  cursor: not-allowed;
}

.p-btn-blue-view {
  background: #bfdbfe;
  color: #1d4ed8;
  flex: 1;
}
.p-btn-blue-view:hover { background: #93c5fd; }

.p-btn-pink-view {
  background: #fbcfe8;
  color: #be185d;
  flex: 1;
}
.p-btn-pink-view:hover { background: #f9a8d4; }

.p-btn-orange-outline {
  background: transparent;
  color: #ea580c;
  border: 1.5px solid #ea580c;
  width: 100%;
}
.p-btn-orange-outline:hover { background: #fff7ed; }

.p-btn-purple-outline {
  background: transparent;
  color: #7e22ce;
  border: 1.5px solid #7e22ce;
  width: 100%;
}
.p-btn-purple-outline:hover { background: #faf5ff; }

.p-btn-gold-filled {
  background: #fef08a;
  color: #854d0e;
  border: 1px solid #fde047;
  width: 100%;
}
.p-btn-gold-filled:hover { background: #fde047; }

.p-btn-navy-outline {
  background: transparent;
  color: #1e40af;
  border: 1.5px solid #1e40af;
  width: 100%;
}
.p-btn-navy-outline:hover { background: #eff6ff; }

.p-badge-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.p-badge-aberto {
  background: #ccfbf1;
  color: #0f766e;
  border: 1px solid #5eead4;
}

/* --- 2. CARDS DE MÉTRICAS EM TEMPO REAL (KPIS) --- */
.real-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

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

@media (max-width: 600px) {
  .real-kpi-grid {
    grid-template-columns: 1fr;
  }
}

.real-kpi-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  border-left: 6px solid #3b82f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.real-kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.real-kpi-card.stripe-cyan { border-left-color: #0ea5e9; }
.real-kpi-card.stripe-emerald { border-left-color: #10b981; }
.real-kpi-card.stripe-gold { border-left-color: #f59e0b; }
.real-kpi-card.stripe-orange { border-left-color: #f97316; }
.real-kpi-card.stripe-navy { border-left-color: #1d4ed8; }
.real-kpi-card.stripe-yellow { border-left-color: #eab308; }
.real-kpi-card.stripe-purple { border-left-color: #8b5cf6; }

.real-kpi-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.real-kpi-title.color-cyan { color: #0284c7; }
.real-kpi-title.color-emerald { color: #059669; }
.real-kpi-title.color-gold { color: #d97706; }
.real-kpi-title.color-orange { color: #ea580c; }
.real-kpi-title.color-navy { color: #1e40af; }
.real-kpi-title.color-yellow { color: #ca8a04; }
.real-kpi-title.color-purple { color: #7c3aed; }

.real-kpi-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.real-kpi-number.color-cyan { color: #0284c7; }
.real-kpi-number.color-emerald { color: #059669; }
.real-kpi-number.color-gold { color: #d97706; }
.real-kpi-number.color-orange { color: #ea580c; }
.real-kpi-number.color-navy { color: #1e40af; }
.real-kpi-number.color-yellow { color: #ca8a04; }
.real-kpi-number.color-purple { color: #7c3aed; }

.real-kpi-footer {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}
.real-kpi-footer a {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
}

/* --- 3. AÇÕES DE GESTÃO (BOTÕES/PÍLULAS COLORIDAS) --- */
.real-actions-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.real-actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.real-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.real-action-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  filter: brightness(1.08);
}

/* Cores fiéis aos botões da FEBIC */
.pill-blue-1 { background-color: #0070ba; }
.pill-cyan-1 { background-color: #0284c7; }
.pill-blue-2 { background-color: #0369a1; }
.pill-cyan-2 { background-color: #0ea5e9; }
.pill-blue-3 { background-color: #0077b6; }
.pill-gradient-rank { background: linear-gradient(90deg, #c2410c, #7c3aed); }
.pill-orange-1 { background-color: #ea580c; }
.pill-emerald { background-color: #059669; }
.pill-yellow { background-color: #eab308; color: #1e293b !important; }
.pill-purple-1 { background-color: #9333ea; }
.pill-blue-4 { background-color: #0284c7; }
.pill-purple-2 { background-color: #8b5cf6; }
.pill-orange-2 { background-color: #ea580c; }
.pill-blue-5 { background-color: #2563eb; }
.pill-indigo { background-color: #4f46e5; }
.pill-wine { background-color: #831843; }
.pill-orange-3 { background-color: #ea580c; }
.pill-teal { background-color: #059669; }
.pill-darkslate { background-color: #334155; }
.pill-red { background-color: #dc2626; }
.pill-slate { background-color: #1e293b; }

/* --- 4. GRÁFICOS ANALÍTICOS (DONUTS & BARRAS) --- */
.real-charts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .real-charts-grid {
    grid-template-columns: 1fr;
  }
}

.real-chart-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.real-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.real-chart-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.real-chart-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-cyan-tag { background: #e0f2fe; color: #0284c7; }
.badge-gold-tag { background: #fef3c7; color: #d97706; }
.badge-pink-tag { background: #fce7f3; color: #db2777; }
.badge-purple-tag { background: #f3e8ff; color: #7c3aed; }

/* Donut Chart SVG Container */
.donut-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.donut-svg-box {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 16px;
}

.donut-svg-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.donut-center-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.donut-center-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 0.72rem;
  color: #475569;
  font-weight: 600;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

/* Gráfico de Barras FEBIC */
.bar-chart-container {
  display: flex;
  align-items: flex-end;
  height: 170px;
  gap: 12px;
  padding: 10px 0 25px 35px;
  position: relative;
  border-left: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.bar-chart-axis-y {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #94a3b8;
  font-family: monospace;
  width: 30px;
  text-align: right;
  padding-right: 5px;
}

.bar-chart-item {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.bar-fill-gradient {
  width: 100%;
  max-width: 45px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #818cf8 0%, #db2777 100%);
  transition: height 0.6s ease;
}

.bar-fill-purple {
  background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}

.bar-x-label {
  position: absolute;
  bottom: -22px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
}

/* Tabs Navegador de Telas Interativo */
.screens-showcase-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.screen-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.screen-tab-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

.screen-tab-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.screen-tab-content {
  display: none;
  animation: fadeInTab 0.3s ease;
}

.screen-tab-content.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   PACOTE MASTER DE RESPONSIVIDADE MOBILE (SMARTPHONES E TABLETS)
   ========================================================================== */

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

  .hero-title {
    font-size: 2.6rem;
  }

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

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

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

  .real-charts-grid {
    grid-template-columns: 1fr;
  }

  .responsive-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  /* Layout Base & Containers */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  /* Header & Navegação */
  .header-content {
    height: 68px;
  }

  .header-logo-img {
    height: 44px !important;
    max-height: 44px !important;
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 40px !important;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 24px !important;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* Benefícios */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .benefit-item {
    padding: 14px 10px;
  }

  .benefit-text {
    font-size: 0.82rem;
  }

  /* Ecossistema Interativo */
  .ecosystem-chain {
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding: 18px 12px;
    gap: 6px;
  }

  .ecosystem-step {
    min-width: 105px;
    gap: 8px;
  }

  .eco-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .eco-label {
    font-size: 0.78rem;
  }

  .eco-arrow {
    font-size: 1.1rem;
  }

  /* Módulos do Sistema */
  .modules-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .module-card {
    padding: 24px 20px;
  }

  /* Molduras e Janelas de Telas Reais */
  .real-screen-frame {
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .real-screen-topbar {
    padding: 10px 14px;
    gap: 8px;
  }

  .real-screen-url {
    display: none; /* Oculta URL longa para não quebrar a barra no celular */
  }

  .real-screen-badge-live {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .real-screen-canvas {
    padding: 16px 12px !important;
  }

  .real-screen-section-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

  /* 1. Painel do Participante no Celular */
  .participant-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .participant-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .p-card-title {
    font-size: 1rem;
  }

  .p-card-desc {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .p-card-actions {
    flex-wrap: wrap;
  }

  .p-btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  /* 2. KPIs em Tempo Real no Celular */
  .real-kpi-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .real-kpi-card {
    min-height: auto;
    padding: 16px 18px;
  }

  .real-kpi-number {
    font-size: 2.2rem !important;
  }

  /* 3. Ações de Gestão (21 Botões) no Celular */
  .real-actions-wrapper {
    padding: 16px 12px;
  }

  .real-actions-grid {
    gap: 8px;
  }

  .real-action-pill {
    font-size: 0.8rem;
    padding: 8px 12px;
    flex: 1 1 calc(50% - 8px);
    min-width: 130px;
    justify-content: center;
    text-align: center;
  }

  /* 4. Gráficos Analíticos no Celular */
  .real-charts-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .real-chart-card {
    padding: 16px 12px;
  }

  .donut-svg-box {
    width: 140px;
    height: 140px;
  }

  .donut-center-val {
    font-size: 1.5rem;
  }

  .bar-chart-container {
    height: 150px;
    padding-left: 28px;
    gap: 6px;
  }

  .bar-x-label {
    font-size: 0.65rem;
  }

  /* Navegador de Abas das Telas */
  .screens-showcase-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }

  .screen-tab-btn {
    scroll-snap-align: start;
    font-size: 0.8rem;
    padding: 10px 14px;
    flex-shrink: 0;
  }

  /* Rodapé */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

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

  .footer-bottom > div:last-child {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }


  /* Botão Flutuante do WhatsApp */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem !important;
  }

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

  .real-action-pill {
    flex: 1 1 100%;
  }

  .badge-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}

/* ==========================================================================
   RUPSTACK INTEGRATED GRAPHICS & TRANSITIONS
   ========================================================================== */

/* Splash Screen (Tela de Carregamento) */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0b111a;
  transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1), 
              transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  cursor: default;
  animation: splash-safety-dismiss 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splash-safety-dismiss {
  0%, 82% { opacity: 1; transform: translateY(0); }
  99%     { opacity: 0.01; transform: translateY(-5vh); pointer-events: none; }
  100%    { opacity: 0; transform: translateY(-6vh); pointer-events: none; visibility: hidden; }
}

#splash-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.splash-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  pointer-events: none;
  text-align: center;
  padding: 2.5rem 3.8rem;
  background: #ffffff;
  border: 1.5px solid rgba(11, 17, 26, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 8px 8px 0px #0b111a;
  animation: splash-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes splash-appear {
  0% { opacity: 0; transform: translateY(16px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.splash-logo img {
  height: 62px;
  width: auto;
  max-width: 80vw;
  object-fit: contain;
  mix-blend-mode: darken;
  filter: contrast(1.15);
}

.splash-slogan {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1a202c;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.splash-progress {
  width: 160px;
  height: 3px;
  background: rgba(11, 17, 26, 0.12);
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.splash-progress::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 100%;
  background: #0b111a;
  animation: progress-fill 2.4s cubic-bezier(0.35, 0, 0.25, 1) forwards;
}

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

#splash-screen.is-hidden,
#splash-screen.is-hidden * {
  opacity: 0 !important;
  transform: translateY(-6vh) !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Transição de cores Grayscale */
html {
  transition: filter 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html.monochrome, html.site-bw {
  filter: grayscale(100%) contrast(1.04);
}

/* Classes para animação de scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slower) ease,
              transform var(--transition-slower) ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) !important;
}

.animate-on-scroll[data-delay="1"] { transition-delay: 100ms; }
.animate-on-scroll[data-delay="2"] { transition-delay: 200ms; }
.animate-on-scroll[data-delay="3"] { transition-delay: 300ms; }
.animate-on-scroll[data-delay="4"] { transition-delay: 400ms; }
.animate-on-scroll[data-delay="5"] { transition-delay: 500ms; }

/* Efeito de Brilho e Hover do Logotipo */
.logo img {
  filter: brightness(1) contrast(1) drop-shadow(0 0 10px rgba(19, 163, 154, 0.45));
  transition: transform var(--transition-fast) ease, filter var(--transition-fast) ease;
}
.logo:hover img {
  transform: scale(1.03);
  filter: brightness(1.1) contrast(1.05) drop-shadow(0 0 16px var(--color-primary));
}

/* Partículas e fumaça no Hero */
.hero {
  position: relative;
}

.hero-smoke-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: float-dot var(--duration, 4s) ease-in-out var(--delay, 0s) infinite alternate;
}

@keyframes float-dot {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  100% {
    transform: translateY(-24px) scale(1.5);
    opacity: 0.35;
  }
}



