/* ========================================
   CSS Variables
======================================== */
:root {
  --color-brand-300: #8ec5ff;
  --color-brand-400: #59a5ff;
  --color-brand-500: #3381ff;
  --color-brand-600: #1b5ef5;

  --color-accent-400: #a78bfa;
  --color-accent-500: #8b5cf6;
  --color-accent-600: #7c3aed;

  --color-emerald-400: #34d399;
  --color-emerald-500: #10b981;

  --color-slate-950: #020617;
  --color-slate-900: #0f172a;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-slate-950);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--color-brand-500);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ========================================
   Utility Classes
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 672px;
}

.max-w-xl {
  max-width: 576px;
}

.hidden {
  display: none !important;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #3381ff 0%, #8b5cf6 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

/* Glows */
.glow-blue {
  box-shadow: 0 0 40px rgba(51, 129, 255, 0.15), 0 0 80px rgba(51, 129, 255, 0.05);
}

.glow-purple {
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15), 0 0 80px rgba(139, 92, 246, 0.05);
}

/* Text Colors */
.text-brand {
  color: var(--color-brand-300);
}

.text-red {
  color: #f87171;
}

.text-green {
  color: var(--color-emerald-400);
}

.text-blue {
  color: #60a5fa;
}

.text-purple {
  color: #a78bfa;
}

.text-orange {
  color: #fb923c;
}

.text-emerald {
  color: var(--color-emerald-400);
}

/* Background Colors */
.bg-blue {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(96, 165, 250, 0.1));
}

.bg-purple {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.1));
}

.bg-orange {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.1));
}

.bg-emerald {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.1));
}

.bg-cyan {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(34, 211, 238, 0.1));
}

.bg-pink {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(244, 114, 182, 0.1));
}

.bg-indigo {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(129, 140, 248, 0.1));
}

.bg-yellow {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.1));
}

.bg-teal {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(45, 212, 191, 0.1));
}

.bg-rose {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.2), rgba(251, 113, 133, 0.1));
}

.bg-brand {
  background: rgba(51, 129, 255, 0.6);
}

/* ========================================
   Background Effects
======================================== */
.background-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse-slow 4s ease-in-out infinite;
}

.orb-1 {
  top: -160px;
  left: -160px;
  width: 600px;
  height: 600px;
  background: rgba(27, 94, 245, 0.1);
}

.orb-2 {
  top: 33%;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.08);
  animation-delay: 2s;
}

.orb-3 {
  bottom: -80px;
  left: 33%;
  width: 600px;
  height: 400px;
  background: rgba(16, 185, 129, 0.06);
  animation-delay: 4s;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

.bounce {
  animation: bounce 2s infinite;
}

/* ========================================
   Navigation
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  color: #fff;
}

.nav-logo span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.nav-link.active {
  background: rgba(51, 129, 255, 0.2);
  color: var(--color-brand-300);
}

.mobile-toggle {
  display: flex;
  padding: 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(51, 129, 255, 0.2), rgba(139, 92, 246, 0.1));
  animation: float 6s ease-in-out infinite;
}

.hero-orb-2 {
  top: 25%;
  right: 25%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(52, 211, 153, 0.1));
  animation: float 6s ease-in-out 2s infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(51, 129, 255, 0.3);
  background: rgba(51, 129, 255, 0.1);
  color: var(--color-brand-300);
  font-size: 14px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 640px;
  margin: 32px auto 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-brand-600));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(51, 129, 255, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(51, 129, 255, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 64px auto 0;
}

.stat-card {
  padding: 20px 16px;
  text-align: center;
}

.stat-icon {
  margin: 0 auto 8px;
  color: var(--color-brand-400);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 2.25rem;
  }
}

.stat-label {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.scroll-indicator a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Sections
======================================== */
.section {
  position: relative;
  padding: 128px 0;
}

.section-divider {
  max-width: 1200px;
  height: 1px;
  margin: 0 auto 80px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.badge-number {
  color: var(--color-brand-400);
}

.badge-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 768px;
}

.section-text {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.section-text strong {
  color: rgba(255, 255, 255, 0.8);
}

/* Two Columns */
.two-columns {
  display: grid;
  gap: 64px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .two-columns {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ========================================
   Objeto Section - Comparison
======================================== */
.comparison-card {
  position: relative;
}

.comparison-before,
.comparison-after {
  padding: 24px;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.files-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(248, 113, 113, 0.1);
  font-size: 12px;
  color: rgba(248, 113, 113, 0.8);
}

.file-item::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f87171' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3C/svg%3E");
  flex-shrink: 0;
}

.comparison-arrow {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.arrow-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  color: #fff;
}

.solution-box {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(51, 129, 255, 0.2), rgba(139, 92, 246, 0.1));
  text-align: center;
}

.solution-icon {
  margin: 0 auto 8px;
  color: var(--color-brand-300);
}

.solution-title {
  font-size: 14px;
  font-weight: 600;
}

.solution-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Escopo Section
======================================== */
.scope-grid {
  display: grid;
  gap: 16px;
  margin-top: 64px;
}

@media (min-width: 640px) {
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .scope-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .scope-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.scope-card {
  padding: 20px;
  transition: all 0.3s ease;
}

.scope-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.scope-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
}

.scope-icon svg {
  color: inherit;
}

.bg-blue .scope-icon,
.bg-blue svg {
  color: #60a5fa;
}

.bg-purple svg {
  color: #a78bfa;
}

.bg-orange svg {
  color: #fb923c;
}

.bg-emerald svg {
  color: #34d399;
}

.bg-cyan svg {
  color: #22d3ee;
}

.bg-pink svg {
  color: #f472b6;
}

.bg-indigo svg {
  color: #818cf8;
}

.bg-yellow svg {
  color: #facc15;
}

.bg-teal svg {
  color: #2dd4bf;
}

.bg-rose svg {
  color: #fb7185;
}

.scope-card h3 {
  font-size: 14px;
  font-weight: 600;
}

.scope-card p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

.scope-note {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid rgba(51, 129, 255, 0.2);
  background: rgba(51, 129, 255, 0.05);
  text-align: center;
}

.scope-note p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.scope-note strong {
  color: var(--color-brand-300);
}

/* ========================================
   Unificação Section
======================================== */
.unification-card {
  padding: 32px;
}

.unification-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-400);
  margin-bottom: 24px;
}

.unification-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unification-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.unification-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.check-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  color: var(--color-emerald-400);
}

.unification-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Fluxo Section
======================================== */
.flow-card {
  margin-top: 64px;
  padding: 32px;
}

@media (min-width: 640px) {
  .flow-card {
    padding: 48px;
  }
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flow-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.flow-step span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.flow-arrow {
  display: none;
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .flow-arrow {
    display: block;
  }
}

.flow-message {
  margin-top: 32px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(51, 129, 255, 0.2);
  background: linear-gradient(90deg, rgba(51, 129, 255, 0.1), rgba(139, 92, 246, 0.1), rgba(52, 211, 153, 0.1));
  text-align: center;
}

.flow-message p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.flow-message strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Dashboard Section
======================================== */
.dashboard-mockup {
  margin-top: 64px;
  padding: 8px;
  overflow: hidden;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px 16px 0 0;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: rgba(248, 113, 113, 0.6);
}

.dot.yellow {
  background: rgba(250, 204, 21, 0.6);
}

.dot.green {
  background: rgba(52, 211, 153, 0.6);
}

.topbar-url {
  flex: 1;
  margin-left: 16px;
  padding: 4px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.dashboard-content {
  padding: 16px;
}

@media (min-width: 640px) {
  .dashboard-content {
    padding: 24px;
  }
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .dashboard-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dashboard-stat {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-stat .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.dashboard-stat .stat-value {
  margin-top: 4px;
  font-size: 1.25rem;
  font-weight: 700;
}

.dashboard-stat .stat-change {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(52, 211, 153, 0.6);
}

.dashboard-charts {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .dashboard-charts {
    grid-template-columns: 2fr 1fr;
  }
}

.chart-area,
.status-area {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.chart-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 128px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(51, 129, 255, 0.4), rgba(51, 129, 255, 0.6));
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
}

.status-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-item {
  width: 100%;
}

.status-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.status-header span:last-child {
  color: rgba(255, 255, 255, 0.3);
}

.status-bar-bg {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.status-bar {
  height: 100%;
  border-radius: 3px;
  opacity: 0.6;
}

.status-bar.bg-emerald {
  background: var(--color-emerald-500);
}

.status-bar.bg-brand {
  background: var(--color-brand-500);
}

.status-bar.bg-orange {
  background: #f97316;
}

.dashboard-table {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.table-header .text-brand {
  font-size: 10px;
  color: var(--color-brand-400);
}

.table-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.row-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.row-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.row-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.row-type {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.row-status {
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 500;
}

.status-green {
  background: rgba(52, 211, 153, 0.1);
  color: var(--color-emerald-400);
}

.status-orange {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
}

.status-blue {
  background: rgba(51, 129, 255, 0.1);
  color: var(--color-brand-400);
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Benefícios Section
======================================== */
.benefits-grid {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gradient-blue-cyan {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-purple-pink {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.gradient-orange-red {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.gradient-emerald-teal {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.gradient-indigo-violet {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.gradient-yellow-orange {
  background: linear-gradient(135deg, #eab308, #f97316);
}

.gradient-rose-pink {
  background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.gradient-brand-accent {
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
}

.gradient-orange-yellow {
  background: linear-gradient(135deg, #f97316, #eab308);
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.benefit-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   Investimento Section
======================================== */
.pricing-card-wrapper {
  position: relative;
  max-width: 500px;
  margin: 64px auto 0;
}

.pricing-glow {
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(51, 129, 255, 0.2), rgba(139, 92, 246, 0.2), rgba(52, 211, 153, 0.2));
  filter: blur(40px);
}

.pricing-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.pricing-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(51, 129, 255, 0.1), rgba(139, 92, 246, 0.1), rgba(52, 211, 153, 0.1));
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(51, 129, 255, 0.2);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-brand-300);
  margin-bottom: 8px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.pricing-amount .currency {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-amount .value {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-amount .cents {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-subtitle {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-body {
  padding: 32px;
}

.pricing-body h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  flex-shrink: 0;
}

.feature-check svg {
  color: var(--color-emerald-400);
}

.pricing-feature span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-body .btn-primary {
  margin-top: 32px;
}

.pricing-note {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Timeline Section
======================================== */
.timeline {
  position: relative;
  margin-top: 64px;
  padding: 0 16px;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(51, 129, 255, 0.5), rgba(139, 92, 246, 0.5), rgba(52, 211, 153, 0.5));
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
  }

  .timeline-item.left {
    flex-direction: row;
  }

  .timeline-item.right {
    flex-direction: row-reverse;
  }
}

.timeline-content {
  padding: 24px;
  text-align: left;
}

@media (min-width: 768px) {
  .timeline-content {
    width: calc(50% - 40px);
  }

  .timeline-item.left .timeline-content {
    text-align: right;
    margin-right: auto;
  }

  .timeline-item.right .timeline-content {
    text-align: left;
    margin-left: auto;
  }
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.timeline-content p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.timeline-dot {
  display: none;
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--color-slate-950);
}

@media (min-width: 768px) {
  .timeline-dot {
    display: block;
  }
}

.timeline-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

/* ========================================
   Contato Section
======================================== */
.contact-card-wrapper {
  position: relative;
  max-width: 500px;
  margin: 48px auto 0;
}

.contact-glow {
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(51, 129, 255, 0.1), rgba(139, 92, 246, 0.1), rgba(52, 211, 153, 0.1));
  filter: blur(40px);
}

.contact-card {
  position: relative;
  padding: 32px;
  text-align: center;
}

@media (min-width: 640px) {
  .contact-card {
    padding: 40px;
  }
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(51, 129, 255, 0.2), rgba(139, 92, 246, 0.2));
  margin: 0 auto 24px;
}

.contact-icon svg {
  color: var(--color-brand-400);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-card > p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.contact-email:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-email svg {
  color: var(--color-brand-400);
}

.contact-email span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Footer
======================================== */
.footer {
  padding: 80px 0 32px;
}

.final-consideration {
  max-width: 768px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

@media (min-width: 640px) {
  .final-consideration {
    padding: 48px;
  }
}

.final-consideration h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .final-consideration h3 {
    font-size: 1.25rem;
  }
}

.final-consideration p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
}

.final-consideration p:first-of-type {
  margin-top: 0;
}

.final-consideration strong {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-accent-500));
  color: #fff;
}

.footer-logo span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   Animations
======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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