* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  font-weight: 400;

  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --neon-cyan: #00f0ff;
  --neon-blue: #0080ff;
  --neon-pink: #ff006e;
  --accent: #00d9ff;
  --text-light: #e0e0e0;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #0f0f1a 100%);
  min-height: 100vh;
  color: var(--text-light);
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

.orb-a {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-b {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
  top: 50%;
  right: 5%;
  animation-delay: 2s;
}

.orb-c {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
  bottom: 10%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.text-center {
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.block {
  display: block;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.neon-text {
  color: var(--neon-cyan);
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.8),
    0 0 14px rgba(0, 255, 255, 0.5),
    0 0 28px rgba(0, 200, 255, 0.3);
  animation: neonPulse 3.5s ease-in-out infinite alternate; /* ⚡ ritmo equilibrado */
  transition: all 0.4s ease;
}

/* Reflexo difuso */
.neon-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--neon-cyan);
  opacity: 0.2;
  filter: blur(5px);
  z-index: -1;
}

/* Pulso suave */
@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 5px rgba(0, 255, 255, 0.7),
      0 0 12px rgba(0, 255, 255, 0.4),
      0 0 20px rgba(0, 200, 255, 0.25);
  }
  100% {
    text-shadow:
      0 0 8px rgba(0, 255, 255, 1),
      0 0 18px rgba(0, 255, 255, 0.6),
      0 0 30px rgba(0, 200, 255, 0.4);
  }
}


.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-gray-300 {
  color: #d1d5db;
}

.max-w-3xl {
  max-width: 48rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.gap-4 {
  gap: 1rem;
}

a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.bg-accent {
  background-color: var(--accent);
}

.glow-button-light {
  position: relative;
  box-shadow:
    0 0 20px rgba(255, 107, 53, 0.5),
    0 0 40px rgba(255, 107, 53, 0.3),
    inset 0 0 20px rgba(255, 107, 53, 0.1);
  animation: buttonGlowLight 2s ease-in-out infinite alternate;
}

.glow-button {
  position: relative;
  box-shadow:
    0 0 20px rgba(0, 217, 255, 0.5),
    0 0 40px rgba(0, 217, 255, 0.3),
    inset 0 0 20px rgba(0, 217, 255, 0.1);
  animation: buttonGlow 2s ease-in-out infinite alternate;
}





@keyframes buttonGlow {
  from {
    box-shadow:
      0 0 20px rgba(0, 217, 255, 0.5),
      0 0 40px rgba(0, 217, 255, 0.3),
      inset 0 0 20px rgba(0, 217, 255, 0.1);
  }
  to {
    box-shadow:
      0 0 30px rgba(0, 217, 255, 0.7),
      0 0 60px rgba(0, 217, 255, 0.5),
      0 0 80px rgba(0, 128, 255, 0.3),
      inset 0 0 30px rgba(0, 217, 255, 0.2);
  }
}

@keyframes buttonGlowLight {
  from {
    box-shadow:
       0 0 20px rgba(255, 107, 53, 0.5),
        0 0 40px rgba(255, 107, 53, 0.3),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
  }
  to {
    box-shadow:
        0 0 30px rgba(255, 107, 53, 0.7),
        0 0 60px rgba(255, 107, 53, 0.5),
        0 0 80px rgba(255, 107, 53, 0.3),
        inset 0 0 30px rgba(243, 84, 26, 0.2);
  }
}

.glow-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(0, 217, 255, 0.8),
    0 0 80px rgba(0, 217, 255, 0.6),
    0 0 120px rgba(0, 128, 255, 0.4),
    inset 0 0 40px rgba(0, 217, 255, 0.3);
}

.text-white {
  color: #ffffff;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/10:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.stat-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 10px 40px rgba(0, 240, 255, 0.3),
    inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.bg-neon-900\/30 {
  background-color: rgba(0, 180, 200, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.bg-neon-900\/30:hover {
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.4),
    inset 0 0 15px rgba(0, 240, 255, 0.1);
}

.border-neon-800\/20 {
  border-color: rgba(0, 200, 220, 0.2);
}

.bg-purple-900\/30 {
  background-color: rgba(150, 100, 255, 0.4);
  border: 1px solid #2088c6;
}

.bg-purple-900\/30:hover {
  border-color: #2088c6;
  box-shadow:
    0 0 20px rgba(150, 100, 255, 0.4),
    inset 0 0 15px rgba(150, 100, 255, 0.1);
}

.border-purple-800\/20 {
  border-color: rgba(130, 90, 220, 0.2);
}

.bg-emerald-900\/30 {
  background-color: rgba(0, 200, 150, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.bg-emerald-900\/30:hover {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow:
    0 0 20px rgba(16, 185, 129, 0.4),
    inset 0 0 15px rgba(16, 185, 129, 0.1);
}

.border-emerald-800\/20 {
  border-color: rgba(5, 150, 105, 0.2);
}

.p-6 {
  padding: 1.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.backdrop-blur-sm {
  backdrop-filter: blur(8px);
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-neon-300 {
  color: #5eead4;
}

.text-purple-300 {
  color: #d8b4fe;
}

.text-emerald-300 {
  color: #6ee7b7;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.leading-tight {
  line-height: 1.25;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-20 {
  padding-bottom: 5rem;
}
