/* Nodefusion.net - Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* CSS Reset y Variables */
:root {
  --electric-blue: #007bff;
  --electric-blue-dark: #0056b3;
  --electric-blue-light: #3395ff;
  --dark-bg: #0a0a0a;
  --dark-card: #111111;
  --dark-border: #1a1a1a;
  --gray-text: #a0a0a0;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--electric-blue) 0%, #0056b3 100%);
  --gradient-bg: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
  --shadow-glow: 0 0 30px rgba(0, 123, 255, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px; /* Offset para navbar fijo */
}

/* Scroll simple y efectivo */
@media (prefers-reduced-motion: no-preference) {
  html, body {
    scroll-behavior: smooth;
  }
}

/* Scroll suave personalizado ultra mejorado */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  * {
    scroll-behavior: smooth;
  }
  
  /* Momentum scrolling para WebKit */
  body {
    -webkit-overflow-scrolling: touch;
  }
}

/* Mejoras visuales para el scroll */
body {
  scroll-padding-top: 80px;
}

/* Efectos adicionales para elementos en scroll */
.tech-card, .feature-card, .contact-method {
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, filter;
}

.tech-card:hover, .feature-card:hover, .contact-method:hover {
  transform: translateY(-8px) scale(1.02) !important;
  filter: blur(0px) !important;
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

/* Efectos de scroll suaves para secciones */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section:nth-child(even) {
  transition-delay: 0.15s;
}

.section:nth-child(odd) {
  transition-delay: 0.3s;
}

/* Efectos adicionales para elementos internos */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* Ocultar cursor predeterminado */
}

/* Mostrar cursor normal en elementos específicos donde sea necesario */
input, textarea, select {
  cursor: text !important;
}

button, a, .btn-primary, .btn-secondary {
  cursor: none !important;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--electric-blue-dark);
}

/* Utilidades generales */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-primary::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:hover::before {
  left: 100%;
}

/* GiuAI Button */
.btn-giuai {
  background: linear-gradient(135deg, #6b46c1, #8b5cf6);
  color: var(--white);
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 90px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.btn-giuai:hover {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
  letter-spacing: 1.5px;
}

.btn-giuai::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-giuai:hover::before {
  left: 100%;
}

.btn-giuai::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-giuai:hover::after {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 12px 32px;
  border: 2px solid var(--gray-text);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--electric-blue);
  background: rgba(0, 123, 255, 0.1);
  transform: translateY(-2px);
}

/* Header y Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 20px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.1);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menus */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-toggle .arrow {
  transition: transform 0.3s ease;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 16px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
  margin-bottom: 8px;
}

.dropdown-item:hover {
  background: rgba(0, 123, 255, 0.1);
  color: var(--electric-blue);
}

.dropdown-item h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.dropdown-item p {
  font-size: 14px;
  color: var(--gray-text);
  margin: 0;
}

/* Game Dropdown - New Style with Images */
.game-dropdown {
  min-width: 600px;
  padding: 20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.game-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.2);
}

.game-image {
  width: 100%;
  height: 120px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
}

/* Game backgrounds - con imágenes reales */
.cs2-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), 
              url('https://cdn.cloudflare.steamstatic.com/steam/apps/730/header.jpg');
  background-size: cover;
  background-position: center;
}

.csgo-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
              url('https://cdn.akamai.steamstatic.com/steam/apps/730/capsule_616x353.jpg');
  background-size: cover;
  background-position: center;
}

.cs16-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
              url('https://cdn.akamai.steamstatic.com/steam/apps/10/capsule_616x353.jpg');
  background-size: cover;
  background-position: center;
}

.gmod-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
              url('https://cdn.akamai.steamstatic.com/steam/apps/4000/header.jpg');
  background-size: cover;
  background-position: center;
}

.minecraft-bg {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url('https://store-images.s-microsoft.com/image/apps.29741.13774133678237924.b2fb64a6-d8b2-4e05-a188-b727d48563ed.f5bc1582-f67e-4ef4-8d8a-7aac86b324f9?q=90&w=480&h=270');
  background-size: cover;
  background-position: center;
}

.fivem-bg {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url('https://cdn.cloudflare.steamstatic.com/steam/apps/271590/library_hero.jpg');
  background-size: cover;
  background-position: center;
}

/* Nuevos juegos */
.rust-bg {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url('https://cdn.cloudflare.steamstatic.com/steam/apps/252490/header.jpg');
  background-size: cover;
  background-position: center;
}

.ark-bg {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect width="200" height="120" fill="%232e7d32"/><polygon points="100,20 120,50 80,50" fill="%234caf50"/><rect x="90" y="50" width="20" height="40" fill="%23795548"/><ellipse cx="100" cy="95" rx="40" ry="10" fill="%23388e3c"/><text x="100" y="105" text-anchor="middle" fill="white" font-size="8" font-weight="bold">DINO</text></svg>');
  background-size: cover;
  background-position: center;
}

.otros-bg {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url('https://i.blogs.es/4d650a/gogga/1366_2000.jpeg');
  background-size: cover;
  background-position: center;
}

.otros-subtitle {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  font-weight: 400;
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 16px 12px 12px;
  color: white;
}

.game-overlay h3 {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hover effects */
.game-card:hover .game-overlay {
  background: linear-gradient(transparent, rgba(0, 123, 255, 0.9));
}

.game-card:hover .game-overlay h3 {
  color: white;
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* FiveM destacado - más grande */
.fivem-featured {
  grid-column: span 3; /* Ocupa toda la fila inferior */
  grid-row: 3; /* Tercera fila */
  position: relative;
}

.fivem-featured .game-image {
  height: 140px; /* Más alto y ancho */
}

.fivem-featured .game-overlay {
  background: linear-gradient(transparent, rgba(255, 65, 108, 0.9));
  padding: 20px 16px 16px;
}

.fivem-featured .game-overlay h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.featured-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: #ff416c;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fivem-featured:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 32px rgba(255, 65, 108, 0.3);
}

.fivem-featured:hover .game-overlay {
  background: linear-gradient(transparent, rgba(255, 65, 108, 1));
}

.fivem-featured:hover .featured-badge {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

/* Client Area Dropdown */
.client-dropdown .dropdown-menu {
  min-width: 280px;
  padding: 16px;
  right: 0;
  left: auto;
}

.client-menu {
  background: var(--dark-card);
  border: 1px solid var(--electric-blue);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.client-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.client-menu-item:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: translateX(4px);
}

.client-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-icon svg {
  width: 16px;
  height: 16px;
  color: white;
}

.client-details h4 {
  font-weight: 600;
  margin: 0 0 2px 0;
  font-size: 14px;
  color: var(--white);
}

.client-details p {
  margin: 0;
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.3;
}

.client-menu-item:hover .client-details h4 {
  color: var(--electric-blue);
}

.client-menu-item:hover .client-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-item {
  margin-bottom: 16px;
}

.mobile-nav-link {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--electric-blue);
}

/* Hero Section con efecto sticky */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(0, 123, 255, 0.1) 0%, var(--dark-bg) 50%);
}

/* Contenido del hero con efecto parallax suave */
.hero-content {
  position: relative;
  z-index: 5;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
  will-change: transform, opacity;
  text-align: center;
  max-width: 1200px;
  padding: 0 2rem;
}

/* Estados del scroll para el hero */
.hero-content.scroll-phase-1 {
  transform: translateY(0px) scale(1);
  opacity: 1;
}

.hero-content.scroll-phase-2 {
  transform: translateY(-30px) scale(0.98);
  opacity: 0.9;
}

.hero-content.scroll-phase-3 {
  transform: translateY(-60px) scale(0.95);
  opacity: 0.7;
}

.hero-content.scroll-phase-4 {
  transform: translateY(-100px) scale(0.9);
  opacity: 0.4;
}



.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(255,255,255,0.03) 100px
    );
  pointer-events: none;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(100px); }
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: hero-fade-in 1s ease-out;
  padding: 0 20px;
}

/* Badge superior */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 123, 255, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--electric-blue);
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--electric-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Título con efectos */
.title-line {
  display: block;
  line-height: 1.1;
}

.glitch {
  position: relative;
  color: var(--white);
  animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: #ff0000;
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: #00ffff;
  z-index: -2;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(-2px, -2px); }
  20% { transform: translate(2px, 2px); }
  30% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  70% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, -2px); }
  90% { transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(2px, 2px); }
  20% { transform: translate(-2px, -2px); }
  30% { transform: translate(2px, -2px); }
  40% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  70% { transform: translate(2px, -2px); }
  80% { transform: translate(-2px, 2px); }
  90% { transform: translate(2px, 2px); }
}

/* Typewriter effect */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--electric-blue);
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--electric-blue); }
}

/* Stats del hero */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 4px;
}

.hero-stats .stat-label {
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
}

/* Botones mejorados */
.btn-primary.magnetic {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--electric-blue);
  transition: all 0.3s ease;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary.magnetic:hover .btn-bg {
  left: 0;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-primary.magnetic:hover .btn-icon {
  transform: translate(4px, -4px);
}

.btn-secondary.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary.glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--electric-blue);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-text);
  font-size: 14px;
  animation: float 3s ease-in-out infinite;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--electric-blue), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { height: 40px; opacity: 1; }
  50% { height: 20px; opacity: 0.5; }
}

/* Terminal mockup */
.hero-terminal {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px 12px 0 0;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-close {
  background: #ff5f57;
}

.btn-minimize {
  background: #ffbd2e;
}

.btn-maximize {
  background: #28ca42;
}

.terminal-title {
  font-size: 12px;
  color: var(--gray-text);
  font-family: 'Courier New', monospace;
}

.terminal-body {
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
}

.terminal-line {
  margin-bottom: 8px;
}

.prompt {
  color: var(--electric-blue);
  margin-right: 8px;
}

.command {
  color: #10b981;
}

.output {
  color: var(--gray-text);
  margin-left: 16px;
}

.cursor {
  color: var(--electric-blue);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Excel-like Grid Table Section */
.grid-table-section {
  background: var(--dark-bg);
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.grid-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.highlight-text {
  color: var(--electric-blue);
}

.grid-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Excel-like Grid - Larger like in the image */
.excel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.grid-cell {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 48px 32px;
  background: transparent;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

/* Feature cells (top row) */
.feature-cell {
  background: rgba(0, 0, 0, 0.1);
}

.feature-cell h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-cell p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* Empty cells */
.empty-cell {
  background: transparent;
  min-height: 120px;
}

/* Support cells - exact layout from image */
.support-title-cell {
  background: rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
  text-align: left;
}

.support-title-cell h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.support-text-cell {
  background: rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
  text-align: left;
}

.support-text-cell p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Testimonial cells in grid - with blue background like in image */
.testimonial-title-cell {
  background: linear-gradient(135deg, #1a365d, #2c5282);
  justify-content: center;
  align-items: center;
  text-align: left;
}

.testimonial-title-cell h2 {
  font-size: clamp(1.6rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.testimonial-gray {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-content-cell {
  background: linear-gradient(135deg, #1a365d, #2c5282);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.4;
}

.testimonial-author-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar-small {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.author-details-inline {
  text-align: left;
}

.author-name-small {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
}

.author-title-small {
  color: var(--gray-text);
  font-size: 13px;
  font-weight: 400;
}

/* Large cells for emphasis */
.large-cell {
  min-height: 380px !important;
  padding: 60px 40px !important;
}

.support-title-cell.large-cell h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem) !important;
}

.support-text-cell.large-cell p {
  font-size: 18px !important;
}

.testimonial-title-cell.large-cell h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem) !important;
}

.testimonial-content-cell.large-cell {
  padding: 50px 32px !important;
}

.testimonial-content-cell.large-cell .testimonial-quote {
  font-size: 22px !important;
  margin-bottom: 28px !important;
}

.testimonial-content-cell.large-cell .author-avatar-small {
  width: 48px !important;
  height: 48px !important;
  font-size: 18px !important;
}

.testimonial-content-cell.large-cell .author-name-small {
  font-size: 18px !important;
}

.testimonial-content-cell.large-cell .author-title-small {
  font-size: 14px !important;
}

/* Blue row background for entire testimonial row */
.blue-row {
  background: linear-gradient(135deg, #1a365d, #2c5282) !important;
}

/* Override for empty cells in blue row */
.empty-cell.blue-row {
  background: linear-gradient(135deg, #1a365d, #2c5282) !important;
}

/* Extended cells - occupy more space */
.extended-cell {
  grid-column: span 2;
}

/* Support Section */
.support-section {
  background: var(--dark-bg);
  padding: 80px 0;
  position: relative;
}

.support-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 1;
}

.support-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.support-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.support-text p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Testimonial Section */
.testimonial-clean-section {
  background: var(--dark-bg);
  padding: 80px 0;
  position: relative;
}

.testimonial-clean-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 1;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonial-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.gray-accent {
  color: var(--gray-text);
}

.testimonial-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: 24px;
  font-style: italic;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
}

.rating {
  color: #ffd700;
  font-size: 14px;
}

/* Responsive styles for clean layout */
@media (max-width: 1024px) {
  .excel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .extended-cell {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .grid-table-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .grid-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .grid-subtitle {
    font-size: 16px;
  }
  
  .excel-grid {
    grid-template-columns: 1fr;
  }
  
  .extended-cell {
    grid-column: span 1;
  }
  
  .grid-cell {
    padding: 24px 20px;
    min-height: 150px;
  }
  
  .feature-cell h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .feature-cell p {
    font-size: 13px;
  }
  
  .support-title-cell h2 {
    font-size: 1.5rem;
  }
  
  .support-text-cell p {
    font-size: 14px;
  }
  
  .testimonial-title-cell h2,
  .testimonial-title-cell.large-cell h2 {
    font-size: 1.4rem !important;
  }
  
  .testimonial-quote,
  .testimonial-content-cell.large-cell .testimonial-quote {
    font-size: 16px !important;
  }
  
  .testimonial-author-inline {
    flex-direction: column;
    gap: 8px;
  }
  
  .author-details-inline {
    text-align: center;
  }
  
  .large-cell {
    min-height: 250px !important;
    padding: 40px 24px !important;
  }
  
  .support-title-cell.large-cell h2 {
    font-size: 1.6rem !important;
  }
  
  .support-text-cell.large-cell p {
    font-size: 15px !important;
  }
  
  .cta-contact-methods {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .cta-contact-method {
    min-width: auto;
    width: 100%;
    max-width: 350px;
  }
  
  .support-section {
    padding: 60px 0;
  }
  
  .support-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .support-text p {
    font-size: 16px;
  }
  
  .testimonial-clean-section {
    padding: 60px 0;
  }
  
  .testimonial-header {
    margin-bottom: 50px;
  }
  
  .testimonial-header h2 {
    font-size: 1.6rem;
  }
  
  .testimonial-quote {
    font-size: 20px;
    margin-bottom: 28px;
  }
  
  .testimonial-content {
    padding: 32px 24px;
  }
  
  .testimonial-author {
    flex-direction: column;
    gap: 12px;
  }
  
  .author-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .clean-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .clean-feature-card {
    padding: 20px 16px;
  }
  
  .clean-title {
    font-size: 1.8rem;
  }
  
  .clean-subtitle {
    font-size: 15px;
    padding: 0 16px;
  }
  
  .support-text h2 {
    font-size: 1.5rem;
  }
  
  .support-text p {
    font-size: 15px;
    padding: 0 16px;
  }
  
  .testimonial-header h2 {
    font-size: 1.4rem;
    padding: 0 16px;
  }
  
  .testimonial-quote {
    font-size: 18px;
  }
  
  .testimonial-content {
    padding: 28px 20px;
    margin: 0 16px;
  }
}

.tech-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.tech-stack::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    linear-gradient(0deg, transparent 24%, rgba(0, 123, 255, 0.02) 25%, rgba(0, 123, 255, 0.02) 26%, transparent 27%),
    linear-gradient(90deg, transparent 24%, rgba(0, 123, 255, 0.02) 25%, rgba(0, 123, 255, 0.02) 26%, transparent 27%);
  background-size: 100px 100px;
  animation: gridMove 25s linear infinite;
  pointer-events: none;
  opacity: 0.3;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 60px 0;
}

.tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.tech-card:hover::before {
  transform: translateX(100%);
}

.tech-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--electric-blue);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.tech-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--electric-blue), #0056b3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.tech-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.tech-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.tech-card p {
  color: var(--gray-text);
  margin-bottom: 20px;
  font-size: 14px;
}

.tech-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--electric-blue);
  line-height: 1;
}

.stat-unit {
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
}

.tech-hover-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.5;
}

.tech-card:hover .tech-hover-content {
  opacity: 1;
  max-height: 100px;
  margin-top: 16px;
}

/* Live Dashboard */
.live-dashboard {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 123, 255, 0.3);
  border-radius: 20px;
  padding: 32px;
  margin-top: 60px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.live-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
  animation: scan-line 3s linear infinite;
}

@keyframes scan-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-text);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 123, 255, 0.5);
  transform: translateY(-2px);
}

.metric-label {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 4px;
  line-height: 1;
}

.metric-unit {
  font-size: 14px;
  color: var(--gray-text);
  margin-left: 4px;
}

.metric-trend {
  font-size: 12px;
  font-weight: 500;
}

.metric-trend.positive {
  color: #10b981;
}

.metric-trend.negative {
  color: #ef4444;
}

.metric-trend::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 4px;
}

.metric-trend.positive::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #10b981;
}

.metric-trend.negative::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #ef4444;
}

@keyframes hero-fade-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-align: center;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--electric-blue), #3395ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--electric-blue) 20%, var(--electric-blue) 80%, transparent 100%);
  opacity: 0.8;
  border-radius: 2px;
  animation: highlight-glow 3s ease-in-out infinite;
}

@keyframes highlight-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.02);
  }
}

.dynamic-text {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.dynamic-text.changing {
  transform: scale(1.1) rotateX(10deg);
  opacity: 0.8;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gray-text);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-tagline {
  font-size: 14px;
  color: var(--gray-text);
  opacity: 0.8;
}

/* Sections generales */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gray-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Sección Features con fondo estiloso */
.section:has(.features-grid) {
  background: 
    radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 123, 255, 0.06) 0%, transparent 50%),
    var(--dark-card);
  position: relative;
  overflow: hidden;
}

.section:has(.features-grid)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(0, 123, 255, 0.01) 60px,
      rgba(0, 123, 255, 0.01) 62px
    );
  pointer-events: none;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-title {
  color: var(--electric-blue);
}

.feature-description {
  color: var(--gray-text);
  line-height: 1.6;
}

/* Control Panel Showcase */
.panel-showcase {
  background: linear-gradient(135deg, var(--electric-blue), #0056b3);
  position: relative;
  overflow: hidden;
}

.panel-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.panel-mockup {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.panel-content {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-border);
}

.panel-title {
  font-size: 20px;
  font-weight: 700;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-text {
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
}

.panel-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.control-btn {
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.control-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.control-btn.start {
  background: #10b981;
  color: white;
}

.control-btn.restart {
  background: #f59e0b;
  color: white;
}

.control-btn.stop {
  background: #ef4444;
  color: white;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
}

.stat-title {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gray-text);
}

.progress-bar {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.progress-cpu { background: var(--electric-blue); }
.progress-ram { background: #10b981; }

.stat-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.stat-label {
  color: var(--gray-text);
}

.stat-value {
  color: var(--white);
  font-weight: 500;
}

/* Sección Testimoniales con fondo estiloso */
.section:has(.testimonials-grid) {
  background: 
    radial-gradient(ellipse at top center, rgba(0, 123, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at bottom center, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
    var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.section:has(.testimonials-grid)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(0, 123, 255, 0.01) 30deg,
      transparent 60deg
    );
  pointer-events: none;
  opacity: 0.5;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 48px;
  color: var(--electric-blue);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.testimonial-info h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 14px;
}

.testimonial-text {
  color: var(--gray-text);
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-text);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--electric-blue);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--electric-blue);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 32px;
  text-align: center;
  color: var(--gray-text);
}

/* ==================== ANIMACIONES DE ENTRADA MEJORADAS ==================== */

/* Estados iniciales - elementos ocultos */
.fade-in,
.slide-in-left,
.slide-in-right,
.scale-in,
.animate-on-scroll,
.stagger-animation {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}

/* Fade In */
.fade-in {
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from Left */
.slide-in-left {
  transform: translateX(-60px) translateY(20px);
  transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Slide from Right */
.slide-in-right {
  transform: translateX(60px) translateY(20px);
  transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Scale In */
.scale-in {
  transform: scale(0.85) translateY(30px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Animación general */
.animate-on-scroll {
  transform: translateY(50px);
  transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animaciones escalonadas */
.stagger-animation {
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stagger-animation.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animaciones específicas para el hero - MÁS LENTAS */
.hero-title {
  transform: translateY(80px);
  transition: all 1.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  transform: translateY(60px);
  transition: all 1.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  transform: translateY(50px) scale(0.85);
  transition: all 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-buttons.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-stats {
  transform: translateY(60px);
  transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-stats.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animaciones para la planilla */
.excel-grid {
  transform: translateY(60px);
  transition: all 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.excel-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays escalonados para elementos de la planilla - MÁS LENTOS */
.stagger-animation:nth-child(1) { transition-delay: 0.3s; }
.stagger-animation:nth-child(2) { transition-delay: 0.6s; }
.stagger-animation:nth-child(3) { transition-delay: 0.9s; }
.stagger-animation:nth-child(4) { transition-delay: 1.2s; }

/* Loading spinner */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 123, 255, 0.3);
  border-top: 4px solid var(--electric-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==================== RESPONSIVE DESIGN AVANZADO ==================== */

/* Extra Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 6rem;
  }
  
  .excel-grid {
    max-width: 1500px;
  }
}

/* Large Screens */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 24px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .excel-grid {
    max-width: 1100px;
  }
  
  .grid-cell {
    padding: 40px 28px;
  }
}

/* Medium Screens - Tablets */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .excel-grid {
    max-width: 100%;
    margin: 0 16px;
  }
  
  .grid-cell {
    padding: 36px 24px;
    min-height: 240px;
  }
  
  .extended-cell {
    grid-column: span 1;
  }
  
  .feature-cell h3 {
    font-size: 16px;
  }
  
  .feature-cell p {
    font-size: 14px;
  }
  
  /* Game dropdown responsive */
  .game-dropdown {
    min-width: 500px;
  }
  
  .game-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .game-image {
    height: 100px;
  }
  
  .game-overlay h3 {
    font-size: 11px;
  }
  
  /* Client dropdown responsive */
  .client-dropdown .dropdown-menu {
    min-width: 250px;
    right: 0;
  }
  
  .fivem-featured {
    grid-column: span 1;
  }
  
  .fivem-featured .game-image {
    height: 120px;
  }
}

/* Small Screens - Mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 60px 0;
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin: 20px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    margin: 20px 0;
  }
  
  .hero-stats .stat-item {
    min-width: calc(50% - 8px);
  }
  
  .main-stat {
    transform: scale(1.1) !important;
    padding: 16px 12px !important;
  }
  
  .main-stat .stat-number {
    font-size: 2.5rem !important;
  }
  
  .main-stat .stat-label {
    font-size: 0.9rem !important;
  }
  
  .secondary-stat .stat-number {
    font-size: 1.5rem !important;
  }
  
  .excel-grid {
    grid-template-columns: 1fr;
    margin: 0 8px;
  }
  
  .grid-cell {
    padding: 28px 20px;
    min-height: 180px;
  }
  
  .feature-cell h3 {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .feature-cell p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .support-title-cell h2 {
    font-size: 1.6rem !important;
  }
  
  .support-text-cell p {
    font-size: 14px !important;
  }
  
  .testimonial-title-cell h2 {
    font-size: 1.4rem !important;
  }
  
  .testimonial-quote {
    font-size: 16px !important;
  }
  
  .panel-mockup {
    padding: 16px;
  }
  
  .panel-content {
    padding: 20px;
  }
  
  .panel-controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .cta-contact-methods {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-contact-method {
    width: 100%;
    min-width: auto;
  }
  
  /* Game dropdown mobile */
  .game-dropdown {
    min-width: 320px;
    padding: 16px;
  }
  
  .game-grid-new {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .game-image {
    height: 80px;
  }
  
  .game-overlay {
    padding: 12px 8px 8px;
  }
  
  .game-overlay h3 {
    font-size: 10px;
  }
}

/* Extra Small Screens - Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 40px 0;
    min-height: 70vh;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 24px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin: 16px 0;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 12px;
    margin: 16px 0;
  }
  
  .hero-stats .stat-number {
    font-size: 1.4rem;
  }
  
  .hero-stats .stat-label {
    font-size: 0.75rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    max-width: 280px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .grid-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .grid-subtitle {
    font-size: 15px;
    padding: 0 8px;
  }
  
  .excel-grid {
    margin: 0 4px;
  }
  
  .grid-cell {
    padding: 24px 16px;
    min-height: 160px;
  }
  
  .large-cell {
    min-height: 200px !important;
    padding: 32px 20px !important;
  }
  
  .feature-cell h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .feature-cell p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .support-title-cell h2 {
    font-size: 1.4rem !important;
    line-height: 1.2;
  }
  
  .support-text-cell p {
    font-size: 13px !important;
    line-height: 1.5;
  }
  
  .testimonial-title-cell h2 {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }
  
  .testimonial-quote {
    font-size: 15px !important;
    margin-bottom: 16px;
  }
  
  .author-avatar-small {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  
  .author-name-small {
    font-size: 14px !important;
  }
  
  .author-title-small {
    font-size: 11px !important;
  }
  
  .panel-mockup {
    padding: 12px;
  }
  
  .panel-content {
    padding: 16px;
  }
  
  .panel-controls {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .control-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .social-links {
    justify-content: center;
    gap: 12px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .cta-contact-section h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  
  .cta-contact-method {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }
  
  .cta-contact-details {
    text-align: center !important;
  }
}

/* Efectos especiales */
.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--electric-blue), #3395ff, var(--electric-blue));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: glow-rotate 2s linear infinite;
}

.glow-effect:hover::before {
  opacity: 0.7;
}

@keyframes glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Particles effect */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--electric-blue);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: 0.7;
  animation: float-particle 8s linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

/* Smooth transitions para todo */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* Focus states para accesibilidad - sin outline molesto */
button:focus,
a:focus,
input:focus {
  outline: none;
}

/* Solo mostrar focus en navegación por teclado */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}

input:focus {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}


/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: var(--transition-smooth);
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--electric-blue);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price {
  margin-bottom: 32px;
}

.currency {
  font-size: 20px;
  color: var(--gray-text);
  vertical-align: top;
}

.amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--electric-blue);
}

.period {
  font-size: 16px;
  color: var(--gray-text);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 32px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--electric-blue);
  font-weight: bold;
}

/* Stats Section */
.stats-section {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--electric-blue);
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: var(--gray-text);
  font-weight: 500;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 18px;
}

.contact-details p {
  color: var(--gray-text);
  font-size: 16px;
}

/* Contact Form */
.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-text);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-card));
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Contact section integrated in CTA */
.cta-contact-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-contact-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
}

.cta-contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  min-width: 280px;
}

.cta-contact-method:hover {
  transform: translateY(-2px);
  background: rgba(0, 123, 255, 0.05);
  border-color: rgba(0, 123, 255, 0.3);
}

.cta-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.cta-contact-details {
  text-align: left;
}

.cta-contact-details h4 {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--white);
}

.cta-contact-link {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cta-contact-link:hover {
  color: var(--electric-blue-light);
  text-decoration: underline;
}

.cta-contact-details p {
  color: var(--gray-text);
  font-size: 13px;
  margin: 4px 0 0 0;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 24px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.notification-success {
  background: #10b981;
}

.notification-error {
  background: #ef4444;
}

.notification-info {
  background: #3b82f6;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--electric-blue);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  opacity: 0.7;
  mix-blend-mode: difference;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.theme-toggle:hover {
  background: var(--electric-blue);
  border-color: var(--electric-blue);
}

/* Search Functionality */
.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 25px;
  padding: 12px 20px 12px 50px;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.search-result-item {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
}

.search-result-item:hover {
  background: rgba(0, 123, 255, 0.1);
  color: var(--electric-blue);
}

.search-result-item:last-child {
  border-bottom: none;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: var(--gray-text);
}

/* Lazy Loading Images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

/* Copy to Clipboard */
[data-copy] {
  position: relative;
  cursor: pointer;
}

[data-copy]:hover::after {
  content: 'Click para copiar';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-card);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --electric-blue: #0080ff;
    --dark-bg: #000000;
    --dark-card: #1a1a1a;
    --white: #ffffff;
    --gray-text: #cccccc;
  }
}

/* Sección Argentina con fondo estiloso */
.argentina-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    var(--dark-card);
  position: relative;
  overflow: hidden;
}

.argentina-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 49%, rgba(0, 123, 255, 0.02) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 123, 255, 0.02) 50%, transparent 51%);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.3;
}

.argentina-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.argentina-visual {
  background: var(--dark-card);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--dark-border);
  text-align: center;
}

.location-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.location-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.location-text p {
  font-size: 1rem;
  color: var(--gray-text);
  margin: 0;
}

.global-reach h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.reach-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.reach-item {
  text-align: center;
}

.reach-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 0.25rem;
}

.reach-label {
  font-size: 0.875rem;
  color: var(--gray-text);
  font-weight: 500;
}

.argentina-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.15);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.info-card p {
  color: var(--gray-text);
  line-height: 1.6;
}

/* Sección Precios con fondo estiloso */
.section:has(.pricing-simple) {
  background: 
    radial-gradient(circle at 40% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
    var(--dark-card);
  position: relative;
  overflow: hidden;
}

.section:has(.pricing-simple)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    conic-gradient(from 0deg at 20% 20%, transparent 0deg, rgba(0, 123, 255, 0.02) 90deg, transparent 180deg),
    conic-gradient(from 180deg at 80% 80%, transparent 0deg, rgba(139, 92, 246, 0.02) 90deg, transparent 180deg);
  pointer-events: none;
}

/* Sección de precios simplificada */
.pricing-simple {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--white);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--dark-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
}

.service-item:hover {
  border-color: var(--electric-blue);
  transform: translateX(8px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.service-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-content p {
  color: var(--gray-text);
}

.pricing-cta {
  text-align: center;
  background: var(--dark-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
}

.pricing-cta p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Sección Contacto con fondo estiloso */
.section:has(.contact-simple) {
  background: 
    radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at top left, rgba(0, 123, 255, 0.06) 0%, transparent 50%),
    var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.section:has(.contact-simple)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(0, 123, 255, 0.03) 0%, transparent 25%),
    radial-gradient(circle at 85% 85%, rgba(16, 185, 129, 0.03) 0%, transparent 25%);
  pointer-events: none;
}

/* Contacto simplificado */
.contact-simple {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-method {
  background: var(--dark-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
  text-align: center;
}

.contact-method:hover {
  transform: translateY(-4px);
  border-color: var(--electric-blue);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.15);
}

.contact-method .contact-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-method .contact-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.contact-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-link {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.contact-link:hover {
  color: var(--electric-blue-light);
  text-decoration: underline;
}

.contact-details p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Layout moderno como la competencia */
.modern-layout {
  background: var(--dark-bg) !important;
  padding: 6rem 0 !important;
  position: relative !important;
}

/* FORZAR estilos para que se vean */
.modern-layout * {
  border: none !important;
  box-sizing: border-box !important;
}

.main-section {
  text-align: center;
  margin-bottom: 6rem;
}

.main-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.blue-text {
  color: var(--electric-blue);
}

.gray-text {
  color: var(--gray-text);
}

.main-description {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Bloques de contenido fluidos */
.content-blocks {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Fila de características */
.feature-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 3rem !important;
}

.feature-item {
  background: rgba(255, 255, 255, 0.02) !important;
  padding: 2.5rem 2rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.4s ease !important;
  backdrop-filter: blur(10px) !important;
}

.feature-item:hover {
  transform: translateY(-8px) !important;
  background: rgba(0, 123, 255, 0.08) !important;
  border-color: rgba(0, 123, 255, 0.3) !important;
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1) !important;
}

.feature-item h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.feature-item p {
  color: var(--gray-text) !important;
  line-height: 1.6 !important;
  font-size: 0.9rem !important;
}

/* Bloque de soporte destacado */
.support-highlight {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.support-content {
  padding: 4rem 3rem;
  text-align: center;
}

.support-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.support-content p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Sección de testimonial */
.testimonial-section {
  text-align: center;
}

.testimonial-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: lowercase;
}

.author-details {
  text-align: left;
}

.author-name {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.stars {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Ajustes para hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 580px;
  max-width: 90%;
}

.stat-item {
  text-align: center;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Stat principal - Argentina centrado */
.main-stat {
  /* Ya está centrado por orden en HTML */
}

.main-stat .stat-number {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  color: var(--electric-blue);
}

.main-stat .stat-label {
  color: var(--electric-blue);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stats secundarios */
.secondary-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 0.3rem;
  line-height: 1;
}

.secondary-stat .stat-label {
  font-size: 0.75rem;
  color: var(--gray-text);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.7;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Texto dinámico en hero - ancho fijo para evitar saltos */
.dynamic-text {
  display: inline-block;
  color: var(--electric-blue);
  transition: all 0.5s ease;
  position: relative;
  min-width: 280px;
  text-align: center;
}

.dynamic-text.changing {
  opacity: 0;
  transform: translateY(-10px);
}

/* Mejorar el subtítulo del hero */
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin: 2rem auto;
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
}

/* Responsive adaptations */
@media (max-width: 768px) {
  .hero-stats {
    gap: 2rem;
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
    margin: 1.5rem auto;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .argentina-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .argentina-visual {
    padding: 2rem;
  }
  
  .location-badge {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .reach-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Responsive para layout moderno */
@media (max-width: 768px) {
  .modern-layout {
    padding: 4rem 0;
  }
  
  .main-section {
    margin-bottom: 4rem;
  }
  
  .main-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .main-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .content-blocks {
    gap: 3rem;
  }
  
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .feature-item {
    padding: 2rem 1.5rem;
  }
  
  .support-content {
    padding: 3rem 2rem;
  }
  
  .testimonial-footer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .author-details {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: row;
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
    margin: 1rem auto;
    padding: 0 1rem;
  }
  
  .quote-bubble p {
    font-size: 1.2rem;
  }
  
  .quote-author {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .author-details {
    text-align: center;
  }
  
  .service-flow-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  .feature-item h3 {
    font-size: 0.9rem;
  }
  
  .support-content {
    padding: 2rem 1rem;
  }
  
  .support-content h2 {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
}

/* ==================== PÁGINAS LEGALES ==================== */
.legal-page {
  min-height: 100vh;
  padding: 100px 0 60px;
  background: var(--dark-bg);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px;
  backdrop-filter: blur(10px);
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--electric-blue), #3395ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: var(--gray-text);
  font-size: 16px;
  font-style: italic;
}

.legal-sections {
  margin-bottom: 60px;
}

.legal-section {
  margin-bottom: 48px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.legal-section:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 123, 255, 0.2);
  transform: translateY(-2px);
}

.legal-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--electric-blue);
  border-radius: 2px;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 24px 0 12px 0;
}

.legal-section p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 16px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.legal-section li {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.legal-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--electric-blue);
  font-weight: bold;
}

.legal-section strong {
  color: var(--white);
  font-weight: 600;
}

.legal-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer p {
  color: var(--gray-text);
  margin-bottom: 32px;
  font-size: 16px;
}

.legal-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-actions {
  display: flex;
  align-items: center;
}

/* Error Page Styles */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.error-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.error-visual {
  margin-bottom: 40px;
}

.error-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

/* Beautiful 404 Page Styles */
.error-illustration {
  margin-bottom: 40px;
}

.server-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.server-rack {
  background: var(--dark-card);
  border: 2px solid var(--dark-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.server-unit {
  width: 200px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
  transition: all 0.3s ease;
}

.server-unit.offline {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  animation: server-error 2s ease-in-out infinite;
}

@keyframes server-error {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.server-lights {
  display: flex;
  gap: 8px;
}

.light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: light-blink 2s ease-in-out infinite;
}

.light.red {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.light.green {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  animation-delay: 0.5s;
}

@keyframes light-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--electric-blue);
  background: linear-gradient(135deg, var(--electric-blue), #3395ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
}

.offline-dot {
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-error 1.5s infinite;
}

.suggestions-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: left;
}

.suggestions-box h3 {
  color: var(--electric-blue);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  background: rgba(0, 123, 255, 0.05);
  border-color: rgba(0, 123, 255, 0.2);
  transform: translateY(-2px);
}

.suggestion-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.suggestion-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.suggestion-item span {
  color: var(--gray-text);
  font-weight: 500;
}

.popular-services {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-services h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(0, 123, 255, 0.05);
  border-color: var(--electric-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

/* .minecraft-bg ya está definido arriba */
.fivem-bg-small { background: linear-gradient(135deg, #ff416c, #ff4b2b); }
.cs2-bg-small { background: linear-gradient(135deg, #ff6b35, #f7931e); }

.service-info h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.service-info p {
  color: var(--electric-blue);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.error-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-error 2s infinite;
}

@keyframes pulse-error {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.status-text {
  color: #ef4444;
  font-weight: 600;
  font-size: 14px;
}

.error-message h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.error-description {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: left;
}

.error-suggestions h3 {
  color: var(--electric-blue);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.error-suggestions ul {
  list-style: none;
  padding: 0;
}

.error-suggestions li {
  color: var(--gray-text);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.error-suggestions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--electric-blue);
  font-weight: bold;
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.quick-links {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-links h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: rgba(0, 123, 255, 0.1);
  border-color: var(--electric-blue);
  transform: translateY(-2px);
}

.quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: white;
}

.minecraft-color { background: linear-gradient(135deg, #56ab2f, #a8e6cf); }
.fivem-color { background: linear-gradient(135deg, #ff416c, #ff4b2b); }
.cs2-color { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.support-color { background: var(--gradient-primary); }

.error-easter-egg {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.error-easter-egg p {
  color: var(--gray-text);
  font-size: 14px;
  margin: 0;
  font-style: italic;
}

.error-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--electric-blue);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-up 5s linear infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

/* Animaciones de entrada para páginas legales */
.legal-content {
  opacity: 0;
  transform: translateY(40px);
  animation: legal-fade-in 1s ease-out forwards;
}

@keyframes legal-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.legal-section {
  opacity: 0;
  transform: translateY(30px);
  animation: section-fade-in 0.8s ease-out forwards;
}

.legal-section:nth-child(1) { animation-delay: 0.2s; }
.legal-section:nth-child(2) { animation-delay: 0.4s; }
.legal-section:nth-child(3) { animation-delay: 0.6s; }
.legal-section:nth-child(4) { animation-delay: 0.8s; }
.legal-section:nth-child(5) { animation-delay: 1.0s; }

@keyframes section-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Error page animations */
.error-visual,
.error-message,
.error-actions,
.quick-links {
  opacity: 0;
  transform: translateY(30px);
}

.error-visual.animate-in { animation: fade-in-up 0.8s ease-out forwards; }
.error-message.animate-in { animation: fade-in-up 0.8s ease-out 0.2s forwards; }
.error-actions.animate-in { animation: fade-in-up 0.8s ease-out 0.4s forwards; }
.quick-links.animate-in { animation: fade-in-up 0.8s ease-out 0.6s forwards; }

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive para páginas legales */
@media (max-width: 768px) {
  .legal-content {
    padding: 40px 24px;
    margin: 0 16px;
  }
  
  .legal-header h1 {
    font-size: 2.2rem;
  }
  
  .legal-section {
    padding: 24px 20px;
  }
  
  .legal-section h2 {
    font-size: 20px;
  }
  
  .legal-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .error-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .error-number {
    flex-direction: column;
    gap: 10px;
  }
  
  .digit-4 {
    font-size: 4rem;
  }
  
  .server-icon {
    width: 6rem;
    height: 6rem;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 32px 20px;
    margin: 0 12px;
  }
  
  .legal-section {
    padding: 20px 16px;
  }
  
  .legal-section h2 {
    font-size: 18px;
  }
  
  .legal-section p {
    font-size: 15px;
  }
  
  .legal-section li {
    font-size: 14px;
  }
}

/* ==================== PÁGINA SOBRE NOSOTROS ==================== */

/* About Hero Section */
.about-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  padding: 120px 0 80px;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.5;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--white);
  letter-spacing: -0.02em;
  text-align: center;
}

.about-description {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 48px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-additional-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-feature-spacer {
  height: 180px;
}

.feature-icon-about {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-about svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-content p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 15px;
}


.server-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.server-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.server-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 32px 24px 24px;
}

.server-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.server-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-dot.online {
  background: #10b981;
  animation: pulse 2s infinite;
}

.stat-dot.processing {
  background: var(--electric-blue);
  animation: pulse 2s infinite;
  animation-delay: 0.5s;
}

/* About Stats Section */
.about-stats-section {
  background: var(--dark-bg);
  padding: 80px 0;
  position: relative;
}

.about-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.about-stats-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.about-stats-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.about-stats-header p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  background: rgba(0, 123, 255, 0.05);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-4px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.about-stat-card .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--electric-blue);
  margin-bottom: 16px;
  line-height: 1;
}

.about-stat-card .stat-text {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 15px;
}

/* Values Section */
.about-values-section {
  background: var(--dark-card);
  padding: 80px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.values-header p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(0, 123, 255, 0.05);
  border-color: rgba(0, 123, 255, 0.3);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-card p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 15px;
}

/* Innovation Section */
.innovation-section {
  background: var(--dark-bg);
  padding: 80px 0;
  position: relative;
}

.innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}

.innovation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.innovation-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.3;
}

.innovation-text p {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.7;
}

.server-infrastructure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.infrastructure-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.infrastructure-overlay {
  position: absolute;
  top: 24px;
  right: 24px;
}

.tech-badge {
  background: rgba(0, 123, 255, 0.9);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.tech-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Mission Section */
.mission-section {
  background: var(--dark-card);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.mission-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.mission-content p {
  font-size: 20px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* About CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-card));
  padding: 80px 0;
  text-align: center;
}

.about-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.about-cta-content p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.about-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive para About */
@media (max-width: 1024px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .innovation-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description {
    font-size: 16px;
  }
  
  .about-features {
    gap: 24px;
  }
  
  .about-feature {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .server-img,
  .infrastructure-img {
    height: 250px;
  }
  
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .about-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stat-card,
  .value-card {
    padding: 24px 20px;
  }
  
  .about-stat-card .stat-number {
    font-size: 36px;
  }
}

/* ==================== PÁGINA CARRERAS ==================== */
.careers-page {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: var(--dark-bg);
}

.careers-content {
  max-width: 800px;
  margin: 0 auto;
}

.careers-header {
  text-align: center;
  margin-bottom: 80px;
}

.careers-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--electric-blue), #3395ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-subtitle {
  font-size: 20px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Process Steps */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--gray-text);
  line-height: 1.5;
  font-size: 14px;
}

.step-arrow {
  color: var(--electric-blue);
}

/* Application CTA */
.application-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  text-align: center;
}

.application-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.application-description {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.application-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-text);
  font-size: 14px;
  margin: 0;
}

.form-note svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Next Steps */
.next-steps {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.next-steps h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

.steps-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.info-item p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

/* Success Message */
.success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  animation: success-appear 0.5s ease-out;
}

.success-message h3 {
  color: #10b981;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-message p {
  color: var(--gray-text);
  margin-bottom: 24px;
  font-size: 16px;
}

@keyframes success-appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive para Carreras */
@media (max-width: 768px) {
  .careers-page {
    padding: 100px 0 60px;
  }
  
  .careers-content {
    margin: 0 20px;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-arrow {
    transform: rotate(90deg);
  }
  
  .application-section {
    padding: 30px 20px;
  }
  
  .btn-large {
    min-width: 200px;
    padding: 18px 32px;
    font-size: 16px;
  }
  
  .steps-info {
    flex-direction: column;
    gap: 24px;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .info-item p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .careers-header h1 {
    font-size: 2.2rem;
  }
  
  .careers-subtitle {
    font-size: 18px;
  }
  
  .application-section {
    padding: 24px 16px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
  }
}

/* ==================== PÁGINA GIUAI ==================== */
.giuai-page {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.giuai-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.giuai-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.giuai-hero {
  margin-bottom: 80px;
}

.giuai-title {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.giuai-text {
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

.ai-text {
  background: linear-gradient(135deg, #06b6d4, #0891b2, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate-reverse;
}

@keyframes glow {
  0% { filter: brightness(1) drop-shadow(0 0 20px rgba(139, 92, 246, 0.3)); }
  100% { filter: brightness(1.2) drop-shadow(0 0 30px rgba(139, 92, 246, 0.6)); }
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #6b46c1, #8b5cf6);
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  color: white;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.badge-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 50px;
  opacity: 0;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulse-ring {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.3; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* Description */
.giuai-description {
  margin-bottom: 80px;
}

.description-text {
  font-size: 24px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Preview */
.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6b46c1, #8b5cf6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 16px;
}

/* CTA Section */
.giuai-cta {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.giuai-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.giuai-cta p {
  color: var(--gray-text);
  font-size: 18px;
  margin-bottom: 40px;
}

.email-form {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.email-input::placeholder {
  color: var(--gray-text);
  opacity: 0.7;
}

.notify-btn {
  background: linear-gradient(135deg, #6b46c1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.notify-btn:hover {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Back Section */
.back-section {
  text-align: center;
}

.back-link {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive para GiuAI */
@media (max-width: 768px) {
  .giuai-page {
    padding: 100px 0 60px;
  }
  
  .giuai-title {
    font-size: clamp(3rem, 12vw, 6rem);
    gap: 10px;
  }
  
  .description-text {
    font-size: 20px;
  }
  
  .features-preview {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .giuai-cta {
    padding: 40px 20px;
  }
  
  .email-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .notify-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .giuai-title {
    flex-direction: column;
    gap: 0;
  }
  
  .coming-soon-badge {
    padding: 12px 24px;
  }
  
  .badge-text {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

/* Print styles */
@media print {
  .header,
  .mobile-toggle,
  .mobile-menu,
  .particles,
  .custom-cursor,
  .theme-toggle,
  .error-particles {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .section,
  .legal-section {
    break-inside: avoid;
  }
  
  .legal-content {
    background: white !important;
    border: 1px solid #ddd !important;
    color: black !important;
  }
}