/* Tema Oscuro Moderno - Azul y Negro Mejorado */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta Azul Eléctrico */
  --electric-blue: #00d4ff;
  --neon-blue: #0099ff;
  --deep-blue: #0066cc;
  --cyber-blue: #00ffff;
  --royal-blue: #1e3a8a;
  
  /* Paleta Negro Profundo */
  --void-black: #000000;
  --deep-black: #0a0a0a;
  --carbon-black: #111111;
  --slate-black: #1a1a1a;
  --charcoal: #2a2a2a;
  --dark-gray: #333333;
  
  /* Gradientes Avanzados */
  --gradient-primary: linear-gradient(135deg, var(--electric-blue), var(--neon-blue));
  --gradient-dark: linear-gradient(135deg, var(--void-black), var(--carbon-black));
  --gradient-cyber: linear-gradient(45deg, var(--cyber-blue), var(--electric-blue));
  --gradient-void: linear-gradient(180deg, var(--void-black), var(--deep-black));
  --gradient-glow: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
  
  /* Sombras Neón */
  --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.5);
  --shadow-cyber: 0 0 30px rgba(0, 255, 255, 0.4);
  --shadow-deep: 0 15px 35px rgba(0, 0, 0, 0.8);
  --shadow-electric: 0 0 40px rgba(0, 153, 255, 0.6);
  
  /* Transiciones Suaves */
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estilos Base */
body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gradient-void);
  color: var(--electric-blue);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animación de Carga Futurista */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 1.5s ease 3s forwards;
}

.loader-spin {
  width: 80px;
  height: 80px;
  border: 3px solid transparent;
  border-top: 3px solid var(--electric-blue);
  border-right: 3px solid var(--cyber-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: var(--shadow-neon);
  position: relative;
}

.loader-spin::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

nav {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 5%;
  position: static;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  transition: var(--transition-smooth);
}

nav.scrolled {
  padding: 15px 5%;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: var(--shadow-neon);
}

.logo {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 15px;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.logo i {
  font-size: 32px;
  color: var(--electric-blue);
  animation: glow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px var(--electric-blue));
}

.menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.menu li a {
  color: rgba(0, 212, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 25px;
  position: relative;
  border-radius: 12px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}

.menu li a:hover {
  color: var(--cyber-blue);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: 12px;
  transition: var(--transition-smooth);
  z-index: -1;
}

.menu li a:hover::before {
  opacity: 0.1;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: rgba(0, 212, 255, 0.8);
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    position: absolute;
    top: 60px;
    right: 0;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  }

  .menu-toggle {
    display: block;
  }

  .menu.show {
    display: flex;
  }

  .menu li {
    margin: 10px 0;
  }

  .menu li a {
    padding: 10px;
    border-radius: 8px;
  }

  .button {
    display: none;
  }

  .discord-modal-link {
    display: block;
    text-align: center;
  }

  .discord-modal-link a {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(0, 212, 255, 0.8);
    font-weight: 600;
    font-size: 16px;
  }

  .discord-modal-link a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.5s;
}

.modal-content {
  background-color: #121212;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: scaleUp 0.5s;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-btn:hover,
.close-btn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transform: scale(1.2);
}

.modal-menu {
  list-style: none;
  padding: 0;
}

.modal-menu li {
  margin: 10px 0;
}

.modal-menu li a {
  color: rgba(0, 212, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: block;
  width: 100%;
  text-align: center;
}

.modal-menu li a:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
/* Sección Hero Cinematográfica */
.hero {
  min-height: 100vh;
  background: var(--gradient-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 153, 255, 0.2) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 900px;
  color: white;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.2s ease 0.8s forwards;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff, var(--electric-blue), var(--cyber-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -3px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-cyber);
  border-radius: 2px;
  box-shadow: var(--shadow-neon);
}

.hero p {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin-bottom: 50px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--electric-blue);
  font-size: 28px;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 10px var(--electric-blue));
}

.scroll-indicator:hover {
  color: var(--cyber-blue);
  transform: translateX(-50%) scale(1.2);
  filter: drop-shadow(0 0 20px var(--cyber-blue));
}

/* Secciones Mejoradas */
.section {
  padding: 150px 5% 120px;
  position: relative;
  background: var(--gradient-void);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--electric-blue);
  margin-bottom: 25px;
  position: relative;
  letter-spacing: -2px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gradient-cyber);
  border-radius: 2px;
  box-shadow: var(--shadow-neon);
}

.section-title p {
  font-size: 1.4rem;
  color: rgba(0, 212, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Servicios Futuristas */
.services {
  background: var(--gradient-dark);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 50px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Tarjetas Holográficas */
.card, .service-card {
  background: linear-gradient(145deg, var(--carbon-black), var(--slate-black));
  border-radius: 25px;
  padding: 60px 45px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-deep);
}

.card::before, .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-glow);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.card::after, .service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.card:hover::before, .service-card:hover::before {
  opacity: 0.1;
}

.card:hover::after, .service-card:hover::after {
  opacity: 1;
}

.card:hover, .service-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: var(--shadow-electric);
  border-color: var(--electric-blue);
}

.card i, .service-card i {
  font-size: 4rem;
  color: var(--electric-blue);
  margin-bottom: 35px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 15px var(--electric-blue));
}

.card:hover i, .service-card:hover i {
  transform: scale(1.2) rotateY(360deg);
  color: var(--cyber-blue);
  filter: drop-shadow(0 0 25px var(--cyber-blue));
}

.card h3, .service-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.card p, .service-card p {
  color: rgba(0, 212, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

/* Botones Holográficos */
.button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gradient-primary);
  color: var(--void-black);
  padding: 18px 40px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-neon);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: var(--transition-fast);
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-electric);
  background: var(--gradient-cyber);
}

.button:active {
  transform: translateY(-2px) scale(1.02);
}

.button i {
  font-size: 20px;
  transition: var(--transition-fast);
}

.button:hover i {
  transform: translateX(8px) rotate(360deg);
}

/* Variaciones de Botones */
.button.outline {
  background: transparent;
  border: 2px solid var(--electric-blue);
  color: var(--electric-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.button.outline:hover {
  background: var(--electric-blue);
  color: var(--void-black);
  box-shadow: var(--shadow-electric);
}

.button.ghost {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--electric-blue);
  backdrop-filter: blur(10px);
}

.button.ghost:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-neon);
}

/* Sección About Mejorada */
.about {
  background: var(--gradient-void);
  position: relative;
}

.about-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-text {
  text-align: center;
  margin-bottom: 80px;
}

.about-text h3 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--electric-blue);
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.about-text p {
  font-size: 1.3rem;
  color: rgba(0, 212, 255, 0.8);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

.about-features, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  padding: 50px 0;
}

.feature {
  padding: 50px 40px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--carbon-black), var(--slate-black));
  box-shadow: var(--shadow-deep);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-electric);
}

.feature i {
  font-size: 3.5rem;
  color: var(--electric-blue);
  margin-bottom: 30px;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 15px var(--electric-blue));
}

.feature:hover i {
  transform: scale(1.2);
  color: var(--cyber-blue);
  filter: drop-shadow(0 0 25px var(--cyber-blue));
}

.feature h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature p {
  color: rgba(0, 212, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Footer Futurista */
footer {
  background: var(--gradient-dark);
  color: var(--electric-blue);
  padding: 80px 5% 40px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-neon);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.social-links a {
  color: rgba(0, 212, 255, 0.8);
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  color: var(--cyber-blue);
  background: rgba(0, 255, 255, 0.2);
  border-color: var(--cyber-blue);
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-cyber);
}

.logo-img {
  height: 60px; /* Aumenté de 30px a 40px */
  width: auto;
  vertical-align: middle;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem; /* Tamaño del texto "HORIZON" */
  font-weight: bold;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--void-black);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 6px;
  border: 2px solid var(--void-black);
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-cyber);
  box-shadow: var(--shadow-neon);
}

/* Animaciones Avanzadas */
@keyframes fadeOut {
  to { 
    opacity: 0; 
    visibility: hidden; 
  }
}

@keyframes spin {
  to { 
    transform: rotate(360deg); 
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateX(-50%) translateY(0); 
  }
  40% { 
    transform: translateX(-50%) translateY(-20px); 
  }
  60% { 
    transform: translateX(-50%) translateY(-10px); 
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1;
  }
  50% { 
    transform: scale(1.1); 
    opacity: 0.8;
  }
}

@keyframes glow {
  0%, 100% { 
    filter: drop-shadow(0 0 10px var(--electric-blue));
  }
  50% { 
    filter: drop-shadow(0 0 25px var(--cyber-blue));
  }
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  33% { 
    transform: translateY(-30px) rotate(120deg); 
  }
  66% { 
    transform: translateY(-15px) rotate(240deg); 
  }
}

/* Efectos de Partículas */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--electric-blue);
  border-radius: 50%;
  animation: particle-float 6s linear infinite;
  box-shadow: 0 0 6px var(--electric-blue);
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

/* Diseño Responsivo */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .menu {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 15px 5%;
  }
  
  .menu {
    display: none;
  }
  
  .hero {
    padding: 0 15px;
  }
  
  .section {
    padding: 100px 5% 80px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .card, .service-card {
    padding: 50px 35px;
  }
  
  .about-features, .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 30px;
  }
  
  .section {
    padding: 80px 5% 60px;
  }
  
  .card, .service-card {
    padding: 40px 25px;
  }
  
  .card i, .service-card i {
    font-size: 3.5rem;
  }
  
  .button {
    padding: 16px 32px;
    font-size: 15px;
  }
  
  .social-links a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Clases Utilitarias */
.text-gradient {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.neon-glow {
  box-shadow: var(--shadow-neon);
}

.cyber-glow {
  box-shadow: var(--shadow-cyber);
}

.holographic {
  background: linear-gradient(145deg, var(--carbon-black), var(--slate-black));
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-deep);
}

/* Variables CSS para el footer futurista */
:root {
  --electric-blue: #00d4ff;
  --cyber-blue: #00ffff;
  --neon-blue: #0099ff;
  --carbon-black: #0a0a0a;
  --slate-black: #1a1a1a;
  --deep-purple: #1a0d2e;
  --neon-purple: #9d4edd;
  
  --gradient-primary: linear-gradient(135deg, var(--electric-blue), var(--cyber-blue));
  --gradient-dark: linear-gradient(135deg, var(--carbon-black), var(--slate-black));
  --gradient-cyber: linear-gradient(135deg, var(--cyber-blue), var(--neon-blue));
  --gradient-horizon: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  
  --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.5);
  --shadow-cyber: 0 8px 30px rgba(0, 255, 255, 0.4);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Footer Futurista Mejorado */
.futuristic-footer {
  background: var(--gradient-horizon);
  color: var(--electric-blue);
  padding: 30px 5% 30px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  overflow: hidden;
  min-height: 400px;
}

/* Efectos de fondo animados */
.futuristic-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-neon);
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

.futuristic-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 8s ease-in-out infinite;
}

/* Contenedor principal */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Brand Section Mejorada */
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.footer-brand i {
  font-size: 3rem;
  color: var(--electric-blue);
  background: rgba(0, 212, 255, 0.1);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
  animation: float 3s ease-in-out infinite;
}

.footer-brand span {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #ffffff 0%, var(--electric-blue) 50%, var(--cyber-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  position: relative;
}

.footer-brand:hover i {
  transform: scale(1.1) rotate(10deg);
  color: var(--cyber-blue);
  border-color: var(--cyber-blue);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
}

/* Social Links Mejorados */
.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.social-links a {
  color: rgba(0, 212, 255, 0.9);
  font-size: 32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  background: rgba(0, 212, 255, 0.08);
  border: 2px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Efectos específicos por plataforma */
.social-links a[aria-label="Discord"] {
  background: rgba(114, 137, 218, 0.1);
  border-color: rgba(114, 137, 218, 0.4);
}

.social-links a[aria-label="Discord"]:hover {
  background: rgba(114, 137, 218, 0.2);
  border-color: #7289da;
  color: #7289da;
  box-shadow: 0 0 40px rgba(114, 137, 218, 0.5);
}

.social-links a[aria-label="PayPal"] {
  background: rgba(0, 48, 135, 0.1);
  border-color: rgba(0, 48, 135, 0.4);
}

.social-links a[aria-label="PayPal"]:hover {
  background: rgba(0, 48, 135, 0.2);
  border-color: #003087;
  color: #009cde;
  box-shadow: 0 0 40px rgba(0, 156, 222, 0.5);
}

.social-links a[aria-label="Email"] {
  background: rgba(234, 67, 53, 0.1);
  border-color: rgba(234, 67, 53, 0.4);
}

.social-links a[aria-label="Email"]:hover {
  background: rgba(234, 67, 53, 0.2);
  border-color: #ea4335;
  color: #ea4335;
  box-shadow: 0 0 40px rgba(234, 67, 53, 0.5);
}

.social-links a[aria-label="Instagram"] {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(255, 220, 128, 0.1));
  border-color: rgba(225, 48, 108, 0.4);
}

.social-links a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 220, 128, 0.2));
  border-color: #e1306c;
  color: #e1306c;
  box-shadow: 0 0 40px rgba(225, 48, 108, 0.5);
}

/* Efecto de brillo en hover */
.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  transform: translateY(-8px) scale(1.15) rotate(5deg);
  animation: socialPulse 0.6s ease;
}

/* Footer Motto Mejorado */
.footer-motto {
  margin: 30px 0;
  position: relative;
}

.footer-motto p {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.footer-motto::before,
.footer-motto::after {
  content: '"';
  font-size: 4rem;
  color: var(--electric-blue);
  position: absolute;
  font-family: serif;
  opacity: 0.6;
}

.footer-motto::before {
  top: -10px;
  left: 50%;
  transform: translateX(-200px);
}

.footer-motto::after {
  bottom: -30px;
  right: 50%;
  transform: translateX(200px) rotate(180deg);
}

/* Copyright Mejorado */
.copyright {
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding-top: 40px;
  margin-top: 20px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.5px;
}

.copyright p strong {
  color: var(--electric-blue);
  font-weight: 600;
}

/* Animaciones */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
  }
}

@keyframes backgroundShift {
  0%, 100% {
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
      radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.06) 0%, transparent 60%),
      radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.04) 0%, transparent 70%);
  }
  50% {
    background: 
      radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
      radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.06) 0%, transparent 60%),
      radial-gradient(circle at 70% 30%, rgba(157, 78, 221, 0.04) 0%, transparent 70%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes socialPulse {
  0% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
  }
  100% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
}

/* Responsive Design Mejorado */
@media (max-width: 1024px) {
  .futuristic-footer {
    padding: 80px 4% 40px;
  }
  
  .footer-brand span {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  
  .footer-brand i {
    font-size: 2.5rem;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .futuristic-footer {
    padding: 60px 3% 30px;
  }
  
  .footer-content {
    gap: 35px;
  }
  
  .social-links {
    gap: 25px;
    margin: 30px 0;
  }
  
  .social-links a {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-brand span {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  
  .footer-brand i {
    font-size: 2rem;
    padding: 12px;
  }
  
  .footer-motto p {
    font-size: 1.2rem;
  }
  
  .footer-motto::before {
    transform: translateX(-150px);
  }
  
  .footer-motto::after {
    transform: translateX(150px) rotate(180deg);
  }
}

@media (max-width: 480px) {
  .futuristic-footer {
    padding: 40px 2% 20px;
    min-height: 350px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .social-links {
    gap: 20px;
    margin: 20px 0;
  }
  
  .social-links a {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
  
  .footer-brand span {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
  }
  
  .footer-brand i {
    font-size: 1.8rem;
    padding: 10px;
  }
  
  .footer-motto p {
    font-size: 1rem;
    padding: 15px 0;
  }
  
  .footer-motto::before,
  .footer-motto::after {
    font-size: 3rem;
  }
  
  .footer-motto::before {
    transform: translateX(-100px);
  }
  
  .footer-motto::after {
    transform: translateX(100px) rotate(180deg);
  }
  
  .copyright p {
    font-size: 0.9rem;
  }
}

/* Efectos adicionales para dispositivos táctiles */
@media (hover: none) {
  .social-links a:active {
    transform: translateY(-5px) scale(1.1);
  }
  
  .footer-brand:active i {
    transform: scale(1.05) rotate(5deg);
  }
}

/* Estilos generales */
.section {
    padding: 2rem 0;
}

.text-gradient {
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Tarjeta de afiliados */
.affiliate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.affiliate-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.affiliate-icon {
    font-size: 3rem;
    color: #8f94fb;
    margin-bottom: 1rem;
}

/* Estados de carga */
.loading-affiliates {
    padding: 2rem;
    color: #aaa;
}

.loading-affiliates i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Listado de afiliados */
.affiliates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.affiliate-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.affiliate-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.affiliate-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Botones */
.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discord-ticket-btn {
    background: #5865F2;
    color: white;
}

.discord-ticket-btn:hover {
    background: #4752c4;
}

/* Mensajes de error */
.error-message {
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 107, 107, 0.1);
}