/* Reset e Configurações Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Garantir que não haja espaçamento extra */
html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow-x: hidden;
}

:root {
  /* Cores Principais - Alinhadas com a plataforma interna */
  --primary-color: #00a2e8;
  --primary-dark: #0082c4;
  --primary-light: #33b5ed;
  --secondary-color: #415a77;
  --accent-color: #00c851;
  
  /* Cores de Fundo - Mais claras como na plataforma */
  --bg-primary: #dfe7f1;
  --bg-secondary: #fbfdff;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.6);
  
  /* Cores de Texto - Ajustadas para o fundo claro */
  --text-primary: #0d1b2a;
  --text-secondary: #415a77;
  --text-muted: #6b7280;
  
  /* Gradientes - Usando as novas cores */
  --gradient-primary: linear-gradient(135deg, #00a2e8 0%, #33b5ed 100%);
  --gradient-secondary: linear-gradient(135deg, #415a77 0%, #5a7396 100%);
  --gradient-accent: linear-gradient(135deg, #00c851 0%, #00a142 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  
  /* Sombras - Ajustadas para o tema claro */
  --shadow-sm: 0 1px 2px 0 rgba(13, 27, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(13, 27, 42, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(13, 27, 42, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(13, 27, 42, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 162, 232, 0.3);
  
  /* Transições */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Tamanhos */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 24px;
}

/* Tipografia */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  padding-bottom: 200px; /* Espaço para o footer fixo */
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Background Reativo e Dinâmico */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Teia Tecnológica Reativa */
.tech-web-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  overflow: visible;
}

.tech-web-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 500vh;
  opacity: 1;
  overflow: visible;
}

.tech-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 162, 232, 0.8), 0 0 8px rgba(0, 162, 232, 0.6);
  transition: all 0.3s ease;
  animation: tech-pulse 4s ease-in-out infinite;
  opacity: 0.9;
}

.tech-node::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(0, 162, 232, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tech-node.active {
  transform: scale(2.5);
  box-shadow: 0 0 25px rgba(0, 162, 232, 1), 0 0 15px rgba(0, 162, 232, 0.8), 0 0 8px rgba(51, 181, 237, 0.6);
  opacity: 1;
}

.tech-node.active::before {
  transform: scale(1.5);
  border-color: rgba(0, 162, 232, 0.6);
}

.tech-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(107, 114, 128, 0.5) 10%, 
    rgba(107, 114, 128, 0.8) 50%, 
    rgba(107, 114, 128, 0.5) 90%, 
    transparent 100%
  );
  transform-origin: left center;
  transition: all 0.3s ease;
  opacity: 0.7;
  box-shadow: 0 0 2px rgba(107, 114, 128, 0.3);
}

.tech-line.active {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 162, 232, 0.6) 10%, 
    rgba(0, 162, 232, 1) 50%, 
    rgba(0, 162, 232, 0.6) 90%, 
    transparent 100%
  );
  opacity: 1;
  box-shadow: 0 0 8px rgba(0, 162, 232, 0.6), 0 0 4px rgba(0, 162, 232, 0.8);
  height: 3px;
}

@keyframes tech-pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Partículas Flutuantes */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float 15s infinite linear;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(50px, 50px);
  }
  50% {
    transform: translate(0, 100px);
  }
  75% {
    transform: translate(-50px, 50px);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}



/* Efeitos de Hover Reativos */
.hero-visual:hover ~ .particles-container .particle {
  animation-duration: 8s !important;
  opacity: 0.8;
  transform: scale(1.5);
}

.feature-card:hover {
  box-shadow: 
    var(--shadow-xl),
    0 0 30px rgba(0, 162, 232, 0.2);
}

.feature-card:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 162, 232, 0.05) 0%, transparent 70%);
  border-radius: var(--border-radius-lg);
  pointer-events: none;
  animation: cardGlow 1s ease-out;
}

@keyframes cardGlow {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Navbar Moderna */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-modern {
    width: 100%;
    transition: all 0.3s ease;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.logo-icon {
  padding: 0.3rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  animation: pulse 2s infinite;
  img {
    width: 35px;
  }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.theme-toggle:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.btn-login {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-glow);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 162, 232, 0.4);
}

.btn-cta {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-glow);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: var(--transition-normal);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  z-index: 20;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00a2e8 0%, transparent 70%);
  top: 0;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff3366 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00ff9d 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 25;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #10b981;
  animation: slideInFromBottom 1s ease-out;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: slideInFromBottom 1s ease-out 0.2s both;
}

.title-line {
  display: block;
  opacity: 0;
  animation: slideInFromBottom 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.gradient-text {
  background: linear-gradient(135deg, #00a2e8 0%, #33b5ed 50%, #415a77 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  animation: slideInFromBottom 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: slideInFromBottom 1s ease-out 0.6s both;
}

.btn-primary-new {
  position: relative;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  overflow: hidden;
}

.btn-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 162, 232, 0.4);
}

.btn-primary-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-new:hover::before {
  left: 100%;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.btn-primary-new:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-metrics {
  display: flex;
  gap: 2rem;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.hero-apps-info {
  margin-top: 2rem;
  text-align: center;
}

.apps-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-normal);
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.app-badge i {
  font-size: 1rem;
  color: var(--primary-color);
}

.apps-info-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-primary {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 162, 232, 0.5);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover .btn-glow {
  left: 100%;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 162, 232, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 162, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 162, 232, 0); }
}

.btn-secondary {
  padding: 1rem 2rem;
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--bg-card);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: slideInFromBottom 1s ease-out 0.8s both;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual Tech Interface */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInFromRight 1s ease-out 0.5s both;
}

.tech-interface {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.tech-interface:hover {
    transform: translateY(-5px);
}

.interface-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.interface-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.interface-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2), 0 3px 12px rgba(255, 255, 255, 0.15), 0 0 8px rgba(0, 162, 232, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 5px 18px rgba(255, 255, 255, 0.2), 0 0 12px rgba(0, 162, 232, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.indicator.active {
  background: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 162, 232, 0.6), 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 5px rgba(0, 162, 232, 0.8);
  border-color: var(--primary-color);
  transform: scale(1.15);
}

.indicator.active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.5;
  animation: indicator-pulse 2s infinite;
}

@keyframes indicator-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.2; }
}

.header-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.dashboard-preview {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-dots {
  display: flex;
  gap: 0.5rem;
}

.header-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-secondary);
}

.header-dots span:nth-child(1) { background: #ef4444; }
.header-dots span:nth-child(2) { background: #f59e0b; }
.header-dots span:nth-child(3) { background: #10b981; }

.header-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  grid-column: 1 / -1;
}

.metric-icon {
  font-size: 1.5rem;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.progress-ring {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188;
  stroke-dashoffset: 47;
  animation: progress-ring 2s ease-in-out infinite alternate;
}

.progress-text {
  position: absolute;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

@keyframes progress-ring {
  0% { stroke-dashoffset: 188; }
  100% { stroke-dashoffset: 47; }
}

.chart-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.25rem;
  height: 60px;
}

.bar {
  width: 8px;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: bar-grow 2s ease-in-out infinite alternate;
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes bar-grow {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* Market Leader Section */
.market-leader {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  margin: 4rem 0;
}

.market-leader-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.market-leader-background .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 162, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 162, 232, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

.market-leader-background .gradient-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.market-leader-background .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: orb-float 15s ease-in-out infinite;
}

.market-leader-background .orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00a2e8, #33b5ed);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.market-leader-background .orb-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #415a77, #5a7396);
  bottom: 20%;
  right: -5%;
  animation-delay: 5s;
}

.market-leader-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.section-header-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.leadership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-accent);
  border-radius: 30px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  box-shadow: var(--shadow-lg);
  animation: slideInFromBottom 0.8s ease-out;
}

.badge-icon {
  font-size: 1rem;
}

.market-leader-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

.market-leader-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  animation: slideInFromBottom 0.8s ease-out 0.4s both;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.differential-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  animation: slideInFromBottom 0.8s ease-out 0.6s both;
}

.differential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 162, 232, 0.05), rgba(51, 181, 237, 0.02));
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.differential-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 162, 232, 0.3);
}

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

.differential-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 162, 232, 0.2);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.card-header-diferencial{
  justify-content: unset !important;
}
.card-badge {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.card-metrics .metric {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.card-metrics .metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.card-metrics .metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

.feature-item i {
  color: var(--primary-color);
  width: 20px;
  font-size: 1rem;
}

.market-leader-cta {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  animation: slideInFromBottom 0.8s ease-out 0.8s both;
}

.cta-content {
  flex: 1;
  text-align: left;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
  
}

.cta-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Market Leader */
@media (max-width: 768px) {
  .market-leader {
    padding: 4rem 1rem;
  }
  
  .market-leader-title {
    font-size: 2rem;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .differential-card {
    padding: 1.5rem;
  }
  
  .market-leader-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .differentials-grid {
    grid-template-columns: 1fr;
  }
  
  .differential-card {
    padding: 1rem;
  }
  
  .card-metrics {
    grid-template-columns: 1fr;
  }
  
  .market-leader-cta {
    padding: 1.5rem;
  }
}

/* Smart Algorithm Section */
.smart-algorithm {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  background: var(--bg-primary);
  margin: 4rem 0;
}

.algorithm-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.algorithm-background .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 162, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 162, 232, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

.algorithm-background .gradient-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.algorithm-background .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: orb-float 15s ease-in-out infinite;
}

.algorithm-background .orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00a2e8, #33b5ed);
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.algorithm-background .orb-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #415a77, #5a7396);
  bottom: 30%;
  right: -5%;
  animation-delay: 5s;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}

.neural-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 162, 232, 0.4);
  animation: neural-pulse 3s ease-in-out infinite;
}

.neural-node:nth-child(odd) {
  animation-delay: 0.5s;
}

.neural-node:nth-child(even) {
  animation-delay: 1s;
}

@keyframes neural-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

.neural-connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 162, 232, 0.2), transparent);
  opacity: 0.2;
  animation: neural-flow 4s linear infinite;
}

@keyframes neural-flow {
  0% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.05;
  }
}

.algorithm-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

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

.disruption-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-accent);
  border-radius: 30px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  animation: slideInFromBottom 0.8s ease-out;
}

.algorithm-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

.line-through {
  position: relative;
  color: var(--text-muted);
}

.line-through::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ef4444;
  transform: translateY(-50%);
  animation: strikethrough 1s ease-out 1.5s both;
}

@keyframes strikethrough {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.algorithm-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  animation: slideInFromBottom 0.8s ease-out 0.4s both;
}

.algorithm-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin: 4rem 0;
  animation: slideInFromBottom 0.8s ease-out 0.6s both;
}

.comparison-side {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.old-way {
  border-left: 4px solid #ef4444;
}

.new-way {
  border-left: 4px solid var(--accent-color);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.comparison-header i {
  font-size: 1.5rem;
}

.old-way .comparison-header i {
  color: #ef4444;
}

.new-way .comparison-header i {
  color: var(--accent-color);
}

.comparison-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.comparison-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vs-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 162, 232, 0.3);
  animation: vs-pulse 2s ease-in-out infinite;
}

@keyframes vs-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.vs-line {
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
  margin-top: 1rem;
}

.optimization-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  animation: slideInFromBottom 0.8s ease-out 0.8s both;
}

.metric-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 162, 232, 0.08), rgba(51, 181, 237, 0.04));
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 162, 232, 0.4);
}

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

.metric-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-lg);
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.metric-description {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.algorithm-features {
  margin: 4rem 0;
  animation: slideInFromBottom 0.8s ease-out 1s both;
}

.features-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.features-grid-algorithm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item-algorithm {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: var(--transition-normal);
}

.feature-item-algorithm:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 162, 232, 0.3);
}

.feature-icon-algorithm {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.algorithm-cta {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-xl);
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-lg);
  animation: slideInFromBottom 0.8s ease-out 1.2s both;
}

.cta-title-algorithm {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-subtitle-algorithm {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Responsive Algorithm Section */
@media (max-width: 768px) {
  .smart-algorithm {
    padding: 4rem 1rem;
  }
  
  .algorithm-title {
    font-size: 2.5rem;
  }
  
  .algorithm-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .vs-divider {
    order: 2;
    flex-direction: row;
    margin: 1rem 0;
  }
  
  .vs-line {
    width: 50px;
    height: 2px;
    margin: 0 1rem;
  }
  
  .optimization-metrics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-grid-algorithm {
    grid-template-columns: 1fr;
  }
  
  .algorithm-cta {
    padding: 2rem;
  }
  
  .cta-title-algorithm {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .algorithm-title {
    font-size: 2rem;
  }
  
  .comparison-side {
    padding: 1.5rem;
  }
  
  .metric-card {
    padding: 1.5rem;
  }
  
  .metric-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .metric-value {
    font-size: 2rem;
  }
  
  .feature-item-algorithm {
    flex-direction: column;
    text-align: center;
  }
}

/* Features Section */
.features {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.features-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.features-background .gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.features-background .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orb-float 15s ease-in-out infinite;
}


.features-background .orb-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #00a2e8, #33b5ed);
  top: 10%;
  left: 33%;
  animation-delay: -5s;
  opacity: 0.7;
}

.features-background .orb-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #00a2e8, #33b5ed);
  top: 40%;
  left: 59%;
  animation-delay: -10s;
  opacity: 0.6;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.title-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Account Tabs */
.account-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
  padding: 0.5rem;
  background: var(--bg-glass);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  position: relative;
  z-index: 17;
}

.account-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.account-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.account-tab.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.account-tab.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.account-tab.active:hover::before {
  left: 100%;
}

.account-tab i {
  font-size: 1rem;
}

/* Features Content Container */
.features-container {
  position: relative;
}

/* Features Content */
.features-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  width: 100%;
}

.features-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: slideInFeatures 0.6s ease-out;
}

@keyframes slideInFeatures {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 20px rgba(0, 162, 232, 0.1);
  z-index: 16;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 8px 30px rgba(0, 162, 232, 0.25);
  border-color: rgba(0, 162, 232, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

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

.feature-large {
  grid-column: span 2;
}

.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.feature-badge {
  padding: 0.25rem 0.75rem;
  background: var(--bg-card);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Feature Visuals */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.ai-brain {
  position: relative;
  width: 100px;
  height: 100px;
}

.brain-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: node-pulse 2s ease-in-out infinite;
}

.brain-node:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.brain-node:nth-child(2) {
  top: 60%;
  left: 10%;
  animation-delay: 0.5s;
}

.brain-node:nth-child(3) {
  top: 40%;
  right: 20%;
  animation-delay: 1s;
}

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

.mini-chart {
  height: 60px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--bg-card);
}

.chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  animation: chart-line 3s ease-in-out infinite;
}

@keyframes chart-line {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.speed-indicator {
  position: relative;
  width: 80px;
  height: 40px;
}

.speed-arc {
  width: 80px;
  height: 40px;
  border: 3px solid var(--bg-card);
  border-bottom: none;
  border-radius: 80px 80px 0 0;
  border-top-color: var(--primary-color);
  animation: speed-rotate 2s linear infinite;
}

@keyframes speed-rotate {
  0% { transform: rotate(-90deg); }
  100% { transform: rotate(90deg); }
}

.achievement-preview {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.medal {
  font-size: 2rem;
  animation: medal-bounce 2s ease-in-out infinite;
}

.medal:nth-child(1) { animation-delay: 0s; }
.medal:nth-child(2) { animation-delay: 0.2s; }
.medal:nth-child(3) { animation-delay: 0.4s; }

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

.community-avatars {
  display: flex;
  align-items: center;
  gap: -0.5rem;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
}

.avatar:nth-child(1) { background: var(--gradient-primary); }
.avatar:nth-child(2) { background: var(--gradient-secondary); }
.avatar:nth-child(3) { background: var(--gradient-accent); }

.avatar-count {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.adaptive-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.question-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.question-node {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  animation: question-pulse 3s ease-in-out infinite;
}

.question-node.easy {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  animation-delay: 0s;
}

.question-node.medium {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  animation-delay: 0.5s;
}

.question-node.hard {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  animation-delay: 1s;
}

@keyframes question-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  33% { transform: scale(1.1); opacity: 1; }
}

/* Team Section */
.team {
  padding: 8rem 0;
  position: relative;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 162, 232, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(65, 90, 119, 0.03) 0%, transparent 50%);
  z-index: 15;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  z-index: 16;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(99, 102, 241, 0.3);
}

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

.team-image-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  padding: 3px;
  flex-shrink: 0;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition-normal);
}

.team-image-container:hover .team-image {
  transform: scale(1.05);
}

.team-info {
  flex: 1;
}

.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.team-description {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.75rem;
}

.team-social a {
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 162, 232, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 162, 232, 0.4), 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

/* Pricing Section */
.pricing {
  padding: 8rem 0;
  background: 
      radial-gradient(circle at 30% 20%, rgba(0, 162, 232, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(65, 90, 119, 0.05) 0%, transparent 50%);
  position: relative;
  z-index: 15;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pill-toggle {
    position: relative;
    display: flex;
    background: var(--bg-card);
    padding: 4px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pill-option {
    position: relative;
    padding: 8px 24px;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.pill-option.active {
    color: white;
}

.pill-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--gradient-primary);
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.pill-option[data-period="yearly"].active ~ .pill-slider {
    transform: translateX(100%);
}

.discount {
    background: var(--gradient-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

/* Estilos para os preços */
.price-monthly {
    display: block;
}

.price-yearly {
    display: none;
}

/* Quando o plano anual estiver ativo */
.pill-toggle .pill-option[data-period="yearly"].active ~ .pill-slider ~ .price-monthly {
    display: none;
}

.pill-toggle .pill-option[data-period="yearly"].active ~ .pill-slider ~ .price-yearly {
    display: block;
}

.pill-option {
    position: relative;
    padding: 8px 24px;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.pill-option.active {
    color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition-normal);
  z-index: 16;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 162, 232, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
    color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

.plan-price {
  text-align: center;
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.25rem;
  color: var(--text-secondary);
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.plan-features i {
  color: var(--primary-color);
  font-size: 1rem;
}

.plan-button {
    width: 100%;
  padding: 1rem;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

.plan-button:hover {
  background: var(--bg-glass);
  transform: translateY(-2px);
}

.plan-button.featured {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

.plan-button.featured:hover {
  box-shadow: 0 0 20px rgba(0, 162, 232, 0.4);
}


.main-content {
  position: relative;
  width: 100%;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 2rem 0 0;
  border-top: 1px solid rgba(0, 162, 232, 0.1);
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

/* Ajustes para footer fixo */
.footer {
  margin: 0;
}

.footer-container {
  position: fixed;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 0;
  background-color: var(--bg-secondary);
}

.footer-main {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
    flex-direction: column;
  gap: 1rem;
}

.brand-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  .link-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}

.link-group h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 0.5rem;
}

.link-group a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.link-group a:hover {
  color: var(--text-primary);
}

.footer-bottom {
    display: flex;
  justify-content: space-between;
    align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

/* Garantir que o footer fique completamente colado no bottom */
.footer:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 1rem;
}

body > :last-child {
  margin-bottom: 0 !important;
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* Animações */
@keyframes slideInFromBottom {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  0% {
      opacity: 0;
      transform: translateX(50px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

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

/* Responsividade */
@media (max-width: 1024px) {
  .hero-main {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
  }
  
  .hero-title {
      font-size: 3.5rem;
  }
  
  .hero-actions {
      flex-direction: column;
    align-items: center;
      gap: 2rem;
  }
  
  .tech-interface {
      max-width: 100%;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
  }
  
  .feature-large,
  .feature-wide {
      grid-column: span 1;
  }
  
  .feature-wide {
      grid-template-columns: 1fr;
  }
  
  .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
  }
  
  .footer-main {
      gap: 2rem;
  }
  
  .footer-links {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
      padding: 1rem;
  }
  
  .logo-text {
      font-size: 1.25rem;
  }
  
  .btn-login {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
  }
  
  .hero-title {
      font-size: 2.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
      gap: 2rem;
  }
  
  .hero-metrics {
      justify-content: center;
  }

  .hero-apps-info {
    margin-top: 1.5rem;
  }

  .apps-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .metrics-grid {
      grid-template-columns: 1fr;
  }
  
  .tech-interface {
      max-width: 100%;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .account-tabs {
      flex-direction: column;
      max-width: 300px;
      gap: 0.5rem;
  }
  
  .account-tab {
      padding: 0.75rem 1rem;
    justify-content: center;
  }
  
  .footer {
    padding: 1.5rem 0 0;
  }
  
  body {
    padding-bottom: 150px;
  }
  
  .footer-main {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
  
  /* Team responsividade */
  .team {
    padding: 4rem 0;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .team-card {
    padding: 1.5rem;
  }
  
  .team-image-container {
    width: 100px;
    height: 100px;
  }
  
  .team-social a {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .nav-container,
  .hero-container,
  .features-container,
  .pricing-container,
  .footer-container {
      padding: 1rem;
  }
  
  .footer {
    padding: 1rem 0 0;
  }
  
  body {
    padding-bottom: 120px;
  }
  
  .hero-title {
      font-size: 2.2rem;
  }
  
  .hero-description {
      font-size: 1rem;
  }
  
  .orb {
      display: none;
  }
  
  .tech-interface {
      padding: 1rem;
      max-width: 100%;
  }
  
  .progress-circle {
      width: 100px;
      height: 100px;
  }
  
  .progress-svg {
      width: 100px;
      height: 100px;
  }
  
  .btn-primary-new {
    width: 100%;
      justify-content: center;
  }
  
  .hero-metrics {
    width: 100%;
  }
  
  /* Team mobile */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 350px;
    margin: 2rem auto 0;
  }
  
  .team-card {
    padding: 1.5rem 1rem;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
  
  .team-role {
    font-size: 0.85rem;
  }
  
  .team-description {
    font-size: 0.85rem;
  }
}

/* Estados de Carregamento */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

/* Melhorias de Performance */
* {
  will-change: transform;
}

.hero-visual,
.feature-card,
.pricing-card {
  transform: translateZ(0);
}

/* Tema Escuro (já implementado) */
@media (prefers-color-scheme: dark) {
  /* Já está implementado por padrão */
}

/* Modo de Alto Contraste */
@media (prefers-contrast: high) {
  :root {
      --text-primary: #ffffff;
      --text-secondary: #e5e5e5;
      --bg-glass: rgba(255, 255, 255, 0.15);
      --bg-card: rgba(255, 255, 255, 0.1);
  }
}

/* Redução de Movimento */
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
  }
}

.interface-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.interface-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.data-visualization {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.chart-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.progress-circle {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8;
}

.progress-bar {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 37;
  animation: progress-animation 2s ease-in-out infinite alternate;
}

/* Specific stroke colors for each tab */
.interface-content[data-content="0"] .progress-bar {
  stroke: url(#progress-gradient-1);
}

.interface-content[data-content="1"] .progress-bar {
  stroke: url(#progress-gradient-2);
}

.interface-content[data-content="2"] .progress-bar {
  stroke: url(#progress-gradient-3);
}

@keyframes progress-animation {
  0% { stroke-dashoffset: 283; }
  100% { stroke-dashoffset: 37; }
}

.progress-value {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.progress-label {
  position: absolute;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-item {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition-fast);
}

.metric-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.metric-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: left;
}

.metric-value-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.metric-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: white;
  flex-shrink: 0;
}

.metric-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.live-analysis {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-top: 1rem;
}

.analysis-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #ef4444;
  font-weight: 600;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-live 1s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.analysis-stream {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stream-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: var(--transition-fast);
}

.stream-line.active {
  opacity: 1;
  color: var(--text-primary);
}

.stream-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-secondary);
  transition: var(--transition-fast);
}

.stream-line.active .stream-dot {
  background: var(--primary-color);
  animation: pulse-stream 2s infinite;
}

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

/* Background Tecnológico */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #00a2e8 0%, transparent 70%);
  top: -300px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #33b5ed 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation-delay: -5s;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float 15s infinite linear;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(50px, 50px);
  }
  50% {
    transform: translate(0, 100px);
  }
  75% {
    transform: translate(-50px, 50px);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}


.stripe-pricing-wrapper {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.pricing-background .gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pricing-background .orb-white {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00a2e8, #33b5ed);
    filter: blur(100px);
    opacity: 0.95;
    top: 60px;
    left: 27%;
    transform: translateX(-50%);
    animation: orb-float 15s ease-in-out infinite;
}
.custom-plan-price-aluno {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stripe-section-header {
    position: relative;
    z-index: 1;
}

.hero-background{
  .orb-1 {
      width: 600px;
      height: 600px;
    }
}

.custom-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28ffb8;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.custom-price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}

/* Seção Por que Somos Melhores */
.why-better {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.why-better-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: -1;
}

.why-better-background .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

.why-better-background .gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.why-better-background .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: orb-float 6s ease-in-out infinite;
}

.why-better-background .orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10b981, #059669);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.why-better-background .orb-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.why-better-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.superiority-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
  border-radius: 30px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  animation: slideInFromBottom 0.8s ease-out;
}

.why-better-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

.why-better-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
  animation: slideInFromBottom 0.8s ease-out 0.4s both;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin: 4rem 0;
  animation: slideInFromBottom 0.8s ease-out 0.6s both;
}

.comparison-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.comparison-card.generic {
  border-left: 4px solid #ef4444;
}

.comparison-card.intelecttus {
  border-left: 4px solid var(--accent-color);
}

.comparison-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.comparison-card .card-header i {
  font-size: 2rem;
}

.comparison-card.generic .card-header i {
  color: #ef4444;
}

.comparison-card.intelecttus .card-header i {
  color: var(--accent-color);
}

.comparison-card .card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 1rem;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.comparison-card.generic .comparison-list li i {
  color: #ef4444;
}

.comparison-card.intelecttus .comparison-list li i {
  color: var(--accent-color);
}

.superiority-features {
  margin: 6rem 0;
  animation: slideInFromBottom 0.8s ease-out 0.8s both;
}

.superiority-features .features-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.superiority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.superiority-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.superiority-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.superiority-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.superiority-icon i {
  font-size: 1.5rem;
  color: white;
}

.superiority-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
}

.superiority-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.why-better-cta {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  animation: slideInFromBottom 0.8s ease-out 1s both;
}

.why-better-cta .cta-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.why-better-cta .cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.why-better-cta .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .why-better {
    padding: 4rem 0;
  }
  
  .why-better-title {
    font-size: 2.5rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vs-divider {
    display: none;
  }
  
  .superiority-grid {
    grid-template-columns: 1fr;
  }
  
  .superiority-item {
    flex-direction: column;
    text-align: center;
  }
  
  .why-better-cta .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .why-better-title {
    font-size: 2rem;
  }
  
  .comparison-card {
    padding: 1.5rem;
  }
  
  .superiority-item {
    padding: 1.5rem;
  }
  
  .why-better-cta {
    padding: 2rem;
  }
}

.apps-available {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.apps-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: -1;
}

.apps-background .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 162, 232, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 162, 232, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

.apps-background .gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.apps-background .orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: orb-float 8s ease-in-out infinite;
}

.apps-background .orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.apps-background .orb-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.apps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.apps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.apps-badge .badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 12px;
}

.apps-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.apps-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
  max-width: 600px;
  line-height: 1.6;
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.app-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition-normal);
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.app-card:hover::before {
  opacity: 0.05;
}

.app-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 162, 232, 0.2);
}

.app-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-md);
}

.app-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.app-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.app-features {
  margin-bottom: 32px;
}

.app-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.app-features .feature-item i {
  color: var(--primary-color);
  font-size: 14px;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.app-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color: white;
}

.app-download-btn.android {
  background: var(--gradient-primary);
}

.app-download-btn.ios {
  background: var(--gradient-secondary);
}

.apps-cta {
  text-align: center;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  margin-top: 60px;
}

.apps-cta .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.apps-cta .cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.apps-cta .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .apps-available {
    padding: 80px 0;
  }

  .apps-title {
    font-size: 2.5rem;
  }

  .apps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .app-card {
    padding: 30px;
  }

  .apps-cta {
    padding: 40px 20px;
  }

  .apps-cta .cta-title {
    font-size: 2rem;
  }

  .apps-cta .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (max-width: 480px) {
  .apps-title {
    font-size: 2rem;
  }

  .app-card {
    padding: 24px;
  }

  .app-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .app-title {
    font-size: 1.5rem;
  }

  .apps-cta .cta-title {
    font-size: 1.8rem;
  }
}