/* AutoForge Landing Page Styles */
/* Colores: Negro (#000000) y Amarillo (#FFD700) */

:root {
  /* Colores principales */
  --primary-black: #000000;
  --primary-yellow: #FFD700;
  --secondary-yellow: #FFC107;
  --accent-yellow: #FFEB3B;
  --electric-yellow: #FFFF00;
  
  /* Grises */
  --gray-dark: #1a1a1a;
  --gray-medium: #2d2d2d;
  --gray-light: #f5f5f5;
  --gray-text: #666666;
  --gray-border: #e5e5e5;
  
  /* Nuevos colores de soporte */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;
    /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Outfit', 'Inter', sans-serif;
  
  /* Shadows mejoradas */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-neon: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
  
  /* Transitions mejoradas */
  --transition-fast: 0.15s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Bordes */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background: #0f0f0f;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  white-space: nowrap;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:focus {
  outline: none;
  text-decoration: none;
}

.btn:active {
  transform: translateY(0px);
  transition: all 0.1s ease;
}

/* Efecto de brillo suave */
.btn::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 ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn span,
.btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn:hover span {
  transform: translateX(-1px);
}

.btn:hover i {
  transform: translateX(2px);
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  color: var(--primary-black);
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFED4A, var(--primary-yellow));
  box-shadow: 
    0 6px 20px rgba(255, 215, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 
    0 3px 10px rgba(255, 215, 0, 0.3),
    0 1px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: rgba(255, 215, 0, 0.08);
  color: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 2px 10px rgba(255, 215, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--secondary-yellow);
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0px);
  box-shadow: 
    0 2px 8px rgba(255, 215, 0, 0.2),
    0 1px 4px rgba(0, 0, 0, 0.05);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-glow {
  /* Animación de glow eliminada - botón estático */
}

/* Button focus styles */
.btn:focus-visible {
  outline: 2px solid rgba(255, 215, 0, 0.5);
  outline-offset: 2px;
}

/* Hero buttons - animación de entrada */
.hero-buttons .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-buttons .btn:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-buttons .btn:nth-child(2) {
  animation-delay: 0.5s;
}

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

.section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--primary-black);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Styles - Modern & Advanced */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.95) 50%,
    rgba(0, 0, 0, 0.98) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 2px 16px rgba(255, 215, 0, 0.1);
  border-bottom-color: rgba(255, 215, 0, 0.2);
}

.header.scrolled .header-background {
  opacity: 1;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  position: relative;
}

/* Logo Styles - Enhanced */
.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  margin-right: var(--spacing-2xl);
}

.logo:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.logo-icon {
  width: 54px;
  height: 54px;
  background: transparent;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  margin-right: -0.6rem;
}



.logo-icon i {
  font-size: 1.3rem;
  color: var(--primary-black);
  z-index: 1;
  position: relative;
  animation: logoRotate 3s ease-in-out infinite alternate;
}

.logo-image {
  width: 43px;
  height: 43px;
  transition: all 0.3s ease;
  background: transparent;
  object-fit: contain;
}

.logo:hover .logo-image {
  transform: scale(1.1);
}

@keyframes logoRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

.logo-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-text {
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow), var(--primary-yellow));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: rgba(255, 215, 0, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 2px;
  opacity: 0.9;
  white-space: nowrap;
}

/* Navigation Menu - Enhanced */
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-xs);
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--border-radius-lg);
}

.nav-link i {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.nav-link span {
  position: relative;
  z-index: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-yellow);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover i,
.nav-link.active i {
  transform: scale(1.1);
  color: var(--primary-yellow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}



.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 16px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta-btn::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.5s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 24px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.nav-cta-btn:hover::before {
  left: 100%;
}

.nav-cta-btn i {
  transition: transform 0.3s ease;
}

.nav-cta-btn:hover i {
  transform: translateX(2px);
}

/* Mobile Menu Button - Enhanced */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 45px;
  height: 45px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-btn:hover {
  background: rgba(255, 215, 0, 0.1);
}

.menu-line {
  width: 24px;
  height: 2px;
  background: var(--primary-yellow);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg);
  transform: translateY(-50px);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: var(--spacing-xl);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--primary-yellow);
  font-size: 1.5rem;
  font-weight: 800;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary-yellow);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg) 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-yellow);
  background: rgba(255, 215, 0, 0.1);
  border-left-color: var(--primary-yellow);
  transform: translateX(8px);
}

.mobile-nav-link i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.mobile-menu-footer {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  text-decoration: none;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  
  .nav-menu {
    gap: var(--spacing-sm);
  }
  
  .nav-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 75px;
  }
  
  .nav-menu,
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-tagline {
    font-size: 0.7rem;
  }
}

/* Header Animations */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Dark theme support - Fixed */


/* Enhanced mobile menu animations */
@media (max-width: 768px) {
  .mobile-nav-link {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-overlay.active .mobile-nav-link {
    transform: translateX(0);
    opacity: 1;
  }
  
  .mobile-menu-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
  .mobile-menu-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
  .mobile-menu-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
  .mobile-menu-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }
  .mobile-menu-overlay.active .mobile-nav-link:nth-child(6) { transition-delay: 0.6s; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.98));
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

@keyframes heroGlow {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  z-index: 1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 30s linear infinite;
  z-index: 1;
}

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

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

@keyframes pulse-glow {
  0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes particles-float {
  0% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-10px) translateX(10px); }
  50% { transform: translateY(-20px) translateX(0px); }
  75% { transform: translateY(-10px) translateX(-10px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes glow-pulse {
  0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

/* Hero Content */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.hero-content {
  padding-right: var(--spacing-lg);
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 50%, var(--electric-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
  overflow: visible;
}

.neon-text {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  animation: subtleGlow 4s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
  0% {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  }
  100% {
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}



.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
  align-items: center;
}

.hero-buttons .btn {
  flex-shrink: 0;
  min-width: 180px;
  text-align: center;
  justify-content: center;
  pointer-events: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  margin-right: var(--spacing-3xl);
  justify-items: center;
  align-items: flex-start;
  max-width: 650px;
  padding: var(--spacing-lg) 0;
  grid-template-rows: 1fr;
  align-content: start;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  min-height: 120px;
  flex-shrink: 0;
}

.stat-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  letter-spacing: -1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number:hover {
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  transform: scale(1.05);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  max-width: 140px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
  position: relative;
}

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

.automation-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  max-width: 600px;
  min-height: 400px;
  margin-left: auto;
  margin-right: -100px;
  position: relative;
  align-items: flex-start;
  overflow: visible;
  z-index: 1000;
}

.showcase-card {
  position: relative;
  width: 450px;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(255, 215, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform-origin: left center;
  margin-left: 50px;
}

.showcase-card .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: var(--spacing-md);
  background: inherit;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  opacity: 1;
}

.showcase-card .details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--spacing-md);
  background: rgba(20, 20, 20, 0.85);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.showcase-card:hover .details {
  opacity: 1;
  z-index: 3;
}

.showcase-card:hover .thumb {
  opacity: 0;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: var(--spacing-md);
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 12px rgba(255, 215, 0, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-card:hover .card-icon::before {
  opacity: 1;
}

.showcase-card i {
  font-size: 1.5rem;
  color: var(--primary-black);
  transition: all 0.3s ease;
}

.showcase-card span {
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.showcase-card .details h4 {
  margin: 0 0 var(--spacing-md) 0;
  color: var(--primary-yellow);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.showcase-card .details h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-yellow), var(--secondary-yellow));
  border-radius: 1px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-card:hover .details h4::after {
  opacity: 1;
  width: 60px;
  transition-delay: 0.1s;
}

.showcase-card .details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-sm);
}

.showcase-card .details li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
  white-space: normal;
  overflow: visible;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(255, 215, 0, 0.06);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.showcase-card:hover .details li {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card:hover .details li:nth-child(1) { transition-delay: 0.2s; }
.showcase-card:hover .details li:nth-child(2) { transition-delay: 0.3s; }
.showcase-card:hover .details li:nth-child(3) { transition-delay: 0.4s; }
.showcase-card:hover .details li:nth-child(4) { transition-delay: 0.5s; }

.showcase-card:hover {
  width: 600px;
  height: 260px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 6px 20px rgba(255, 215, 0, 0.15),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(0) scale(1.01);
  z-index: 100;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  
  .hero-buttons .btn {
    min-width: 150px;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
  }
  
  .hero-stats {
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    margin-left: 0;
    justify-items: center;
    max-width: 100%;
    padding: var(--spacing-md) 0;
  }
  
  .stat-item {
    min-width: 100px;
    align-items: center;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
  
  .stat-label {
    font-size: 0.9rem;
    max-width: 100px;
    text-align: center;
  }
  
  .automation-showcase {
    max-width: 100%;
    gap: var(--spacing-sm);
    margin: 0 auto;
  }
  
  .showcase-card {
    width: auto !important;
    height: auto !important;
    min-height: 80px;
    flex-direction: column !important;
    margin-left: 0;
  }
}

/* Services Section - Transición suave a tono medio-oscuro */
.services {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.98));
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
}

.services-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, rgba(255, 215, 0, 0.01) 30%, transparent 70%);
  transform: translate(-50%, -50%);
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 4.8rem;
}



.services-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-highlight {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.services-highlight i {
  color: var(--primary-yellow);
  font-size: 1.1rem;
}

/* Services Metrics */
.services-metrics {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-sm) var(--spacing-md);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.metric-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.metric-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  flex-shrink: 0;
}

.metric-icon svg {
  width: 16px;
  height: 16px;
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Services Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Tier Cards */
.service-tier {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: var(--spacing-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.service-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-tier:hover::before {
  opacity: 1;
}

.service-tier:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 
    0 10px 30px rgba(255, 215, 0, 0.12),
    0 0 20px rgba(255, 215, 0, 0.08);
}

/* Featured Service */
.service-tier.featured {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.08) 0%, 
    rgba(45, 45, 45, 0.95) 30%, 
    rgba(35, 35, 35, 0.98) 100%);
  transform: scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 8px 25px rgba(255, 215, 0, 0.15),
    0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-tier.featured:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 12px 35px rgba(255, 215, 0, 0.2),
    0 0 30px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-tier-badge {
  position: absolute;
  top: -8px;
  right: var(--spacing-md);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.8));
  color: var(--primary-black);
  padding: calc(var(--spacing-xs) * 1.2) calc(var(--spacing-md) * 1);
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-xs) * 0.6);
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.3),
    0 0 15px rgba(255, 215, 0, 0.2);
  animation: pulse-badge 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

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

.service-tier-badge svg {
  width: 16px;
  height: 16px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* Service Tier Header */
.service-tier-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--spacing-sm) * 1.2);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-lg);
  text-align: center;
}

.service-tier-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.8));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(255, 215, 0, 0.25);
}

.service-tier-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.service-tier:hover .service-tier-icon::before {
  animation: shimmer 1.5s ease-in-out;
  opacity: 1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-tier-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-black);
  z-index: 1;
  position: relative;
}

.service-tier-title h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-xs);
  line-height: 1.2;
}

.service-tier-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.3;
}

/* Service Tier Content */
.service-tier-content {
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}

.service-tier-description {
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.service-tier-description p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

.service-tier-features {
  margin-bottom: var(--spacing-sm);
}

.service-tier-features .feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: calc(var(--spacing-sm) * 0.8);
  padding: calc(var(--spacing-xs) * 0.8);
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.service-tier-features .feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.service-tier-features .feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-yellow);
  flex-shrink: 0;
}

.service-tier-features .feature-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.service-tier-examples {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: var(--spacing-md);
  border: 1px solid rgba(255, 215, 0, 0.08);
  backdrop-filter: blur(5px);
}

.service-tier-examples h4 {
  color: rgba(255, 215, 0, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-sm) * 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-tier-examples ul {
  list-style: none;
}

.service-tier-examples ul li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: calc(var(--spacing-xs) * 1.2);
  padding-left: calc(var(--spacing-sm) * 1.2);
  position: relative;
  font-size: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.service-tier-examples ul li:hover {
  color: rgba(255, 255, 255, 0.95);
}

.service-tier-examples ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: rgba(255, 215, 0, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
}

/* Service Tier Footer */
.service-tier-footer {
  margin-top: auto;
}

/* Service Tier Pricing */
.service-tier-pricing {
  text-align: center;
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.price-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-yellow);
  display: inline-block;
  margin-right: 4px;
}

.price-period {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.service-tier-btn {
  width: 100%;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--primary-yellow);
  padding: var(--spacing-sm);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  backdrop-filter: blur(10px);
  min-height: 40px;
}

.service-tier-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-tier-btn:hover svg {
  transform: translateX(2px);
}

.service-tier-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
}

.service-tier-btn.primary {
  background: rgba(255, 215, 0, 0.15);
  color: var(--primary-yellow);
  border-color: rgba(255, 215, 0, 0.4);
  font-weight: 600;
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.2),
    0 0 10px rgba(255, 215, 0, 0.1);
}

.service-tier-btn.primary:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(255, 215, 0, 0.3),
    0 0 15px rgba(255, 215, 0, 0.2);
}

/* Services Process */
.services-process {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(15px);
}

.services-process h3 {
  font-size: 1.8rem;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-xs);
}

.timeline-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

/* Services CTA */
.services-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: var(--spacing-2xl);
  backdrop-filter: blur(20px);
}

.services-cta h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-md);
}

.services-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section - Fondo oscuro premium con efectos avanzados */
.features {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.98));
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

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

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

.features-particles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 40px 40px, rgba(255, 215, 0, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 80px 20px, rgba(255, 215, 0, 0.01) 1px, transparent 1px);
  background-size: 100px 100px, 120px 120px, 160px 160px;
}

.features-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, rgba(255, 215, 0, 0.01) 35%, transparent 70%);
  transform: translate(-50%, -50%);
}

/* Features Header */
.features-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.features-header .section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--electric-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-header .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

.features-metrics {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(15px);
}

.metric-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.features-content {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(15px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card.premium {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.feature-card.premium::after {
  content: 'PREMIUM';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-yellow);
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-yellow);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.feature-card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: var(--spacing-sm);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--electric-yellow));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.feature-icon i {
  color: var(--primary-black);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.feature-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.3);
  animation: feature-pulse 2s ease-in-out infinite;
  z-index: 1;
}

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

.feature-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: white;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
  color: var(--primary-yellow);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.feature-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.benefit-tag {
  font-size: 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary-yellow);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  font-weight: 500;
}

.feature-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

/* Features Visual Center */
.features-visual-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: var(--spacing-2xl) 0;
  position: relative;
}

.svg-container {
  position: relative;
  width: 500px;
  height: 350px;
  margin-bottom: var(--spacing-xl);
  perspective: 1000px;
}

.features-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features-svg.primary-svg {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  z-index: 2;
}

.features-svg.secondary-svg {
  opacity: 0;
  transform: rotateY(-90deg) scale(0.8);
  z-index: 1;
}

.features-svg.secondary-svg.active {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  z-index: 2;
}

.features-svg.primary-svg.inactive {
  opacity: 0;
  transform: rotateY(90deg) scale(0.8);
  z-index: 1;
}

.svg-toggle {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.svg-toggle-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.svg-toggle-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.svg-toggle-btn.active {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.svg-toggle-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.svg-toggle-btn:hover i {
  transform: scale(1.1);
}

.svg-toggle-btn.active i {
  transform: scale(1.1) rotate(5deg);
}

.center-diagram {
  position: relative;
  width: 400px;
  height: 400px;
}

.diagram-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--electric-yellow));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.core-icon i {
  font-size: 2.5rem;
  color: var(--primary-black);
  margin-bottom: var(--spacing-xs);
}

.core-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-black);
}

.core-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 0.3; }
  100% { transform: scale(1.6); opacity: 0; }
}

.diagram-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connection-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-yellow), transparent);
  opacity: 0;
  animation: connection-appear 0.5s ease forwards;
}

.connection-line:nth-child(1) { 
  top: 60px; left: 50%; height: 80px; transform: translateX(-50%) rotate(0deg); 
  animation-delay: 0.8s;
}
.connection-line:nth-child(2) { 
  top: 120px; left: 60%; height: 80px; transform: translateX(-50%) rotate(60deg); 
  animation-delay: 0.9s;
}
.connection-line:nth-child(3) { 
  top: 180px; left: 60%; height: 80px; transform: translateX(-50%) rotate(120deg); 
  animation-delay: 1.0s;
}
.connection-line:nth-child(4) { 
  top: 240px; left: 50%; height: 80px; transform: translateX(-50%) rotate(180deg); 
  animation-delay: 1.1s;
}
.connection-line:nth-child(5) { 
  top: 180px; left: 40%; height: 80px; transform: translateX(-50%) rotate(240deg); 
  animation-delay: 1.2s;
}
.connection-line:nth-child(6) { 
  top: 120px; left: 40%; height: 80px; transform: translateX(-50%) rotate(300deg); 
  animation-delay: 1.3s;
}

@keyframes connection-appear {
  0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

.diagram-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  font-size: 1.2rem;
  opacity: 0;
  animation: node-appear 0.5s ease forwards;
  backdrop-filter: blur(10px);
}

.node-1 { top: 30px; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; }
.node-2 { top: 80px; right: 50px; animation-delay: 0.9s; }
.node-3 { bottom: 80px; right: 50px; animation-delay: 1.0s; }
.node-4 { bottom: 30px; left: 50%; transform: translateX(-50%); animation-delay: 1.1s; }
.node-5 { bottom: 80px; left: 50px; animation-delay: 1.2s; }
.node-6 { top: 80px; left: 50px; animation-delay: 1.3s; }

@keyframes node-appear {
  0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

/* Features Explanation Styles */
.features-explanation {
  margin: var(--spacing-2xl) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.explanation-content h3 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.explanation-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-xs);
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

.benefits-summary {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);
  backdrop-filter: blur(15px);
}

.benefits-summary h4 {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.4;
}

.benefits-list i {
  color: var(--primary-yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Features CTA */
.features-cta {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  margin-top: var(--spacing-lg);
}

.features-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.features-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
}

/* Features Process */
.features-process {
  text-align: center;
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(15px);
}

.features-process h3 {
  font-size: 1.8rem;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.process-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  color: var(--primary-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto var(--spacing-md);
}

.process-item h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.process-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Features Benefits */
.features-benefits {
  text-align: center;
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(10px);
}

.features-benefits h3 {
  font-size: 1.8rem;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.benefit-item i {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  min-width: 30px;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .svg-container {
    width: 450px;
    height: 320px;
  }
  
  .features-header .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .features-metrics {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .metric-item {
    min-width: 150px;
  }
  
  .features-explanation {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .explanation-content h3 {
    font-size: 1.6rem;
  }
  
  .explanation-content p {
    font-size: 1rem;
  }
  
  .step-item {
    padding: var(--spacing-sm);
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .benefits-summary {
    padding: var(--spacing-lg);
  }
  
  .benefits-summary h4 {
    font-size: 1.2rem;
  }
  
  .benefits-list li {
    font-size: 0.9rem;
  }
  
  .features-header .section-title {
    font-size: 1.8rem;
  }
  
  .features-header .section-subtitle {
    font-size: 1rem;
  }
  
  .features-cta h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .feature-card {
    padding: var(--spacing-lg);
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .features {
    padding: var(--spacing-2xl) 0;
  }
  
  .features-explanation {
    margin: var(--spacing-xl) 0;
    gap: var(--spacing-lg);
  }
  
  .explanation-content h3 {
    font-size: 1.4rem;
  }
  
  .explanation-content p {
    font-size: 0.9rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    margin: 0 auto;
  }
  
  .step-content h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .benefits-summary {
    padding: var(--spacing-md);
  }
  
  .benefits-summary h4 {
    font-size: 1.1rem;
  }
  
  .benefits-list li {
    font-size: 0.85rem;
  }
  
  .features-header .section-title {
    font-size: 1.6rem;
  }
  
  .features-grid {
    gap: var(--spacing-md);
  }
  
  .feature-card {
    padding: var(--spacing-md);
  }
  
  .features-metrics {
    gap: var(--spacing-sm);
  }
  
  .metric-item {
    padding: var(--spacing-sm);
    min-width: 120px;
  }
  
  .metric-number {
    font-size: 1.5rem;
  }
  
  .benefit-tag {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  /* Tools responsive para pantallas muy pequeñas */
  .tools-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .tool-category {
    padding: var(--spacing-sm);
  }
  
  .category-title {
    font-size: 1rem;
  }
  
  .tool-item {
    padding: var(--spacing-xs);
  }
  
  .tool-item span {
    font-size: 0.85rem;
  }
}

/* Tools Section - Transición a fondo claro elegante */
.tools {
  padding: var(--spacing-2xl) 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 45%),
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.tools::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.tools::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 215, 0, 0.02) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Patrón sutil para tools */
.tools-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 215, 0, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 40px 40px, rgba(255, 215, 0, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 80px 20px, rgba(255, 215, 0, 0.15) 1px, transparent 1px);
  background-size: 120px 120px, 160px 160px, 200px 200px;
  opacity: 0.4;
  z-index: 1;
  animation: tools-pattern-float 20s linear infinite;
}

@keyframes tools-pattern-float {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-10px) translateX(5px); }
  100% { transform: translateY(0px) translateX(0px); }
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.tool-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: var(--spacing-xl);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.tool-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.tool-category:hover::before {
  left: 100%;
}

.tool-category:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.category-title {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: #ffffff;
  border-bottom: 2px solid var(--primary-yellow);
  padding-bottom: var(--spacing-sm);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.category-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--electric-yellow));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.tools-list {
  display: grid;
  gap: var(--spacing-sm);
}

.tool-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  transition: all var(--transition-fast);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.tool-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tool-item:hover::after {
  opacity: 1;
}

.tool-item:hover {
  background: linear-gradient(135deg, rgba(255, 221, 51, 0.1), rgba(255, 221, 51, 0.2));
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 8px 20px rgba(255, 221, 51, 0.3),
    0 0 15px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.tool-item i {
  color: var(--primary-yellow);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.tool-logo {
  width: 28px;
  height: 28px;
  color: var(--primary-yellow);
  opacity: 0.8;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.tool-item:hover .tool-logo {
  opacity: 1;
  color: var(--electric-yellow);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}



.tool-item i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tool-item:hover i::before {
  opacity: 1;
}

.tool-item:hover i {
  color: var(--electric-yellow);
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 0 15px rgba(255, 221, 51, 0.8);
}

.tool-item span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.tool-item:hover span {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Tools CTA */
.tools-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.tools-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tools-cta:hover::before {
  opacity: 1;
}

.tools-cta h3 {
  font-size: 1.8rem;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.tools-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Statistics Section - Fondo oscuro intermedio para crear ritmo */
.statistics {
  padding: var(--spacing-2xl) 0;
  background: 
    radial-gradient(circle at 60% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 45%),
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 30%, #1a1a1a 70%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0.05) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.statistics::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(245, 245, 245, 0.03) 100%);
  z-index: 1;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-xl);
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left var(--transition-slow);
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--primary-yellow);
  box-shadow: 
    0 25px 50px rgba(255, 215, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.stat-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: rotate(45deg) translate(-100%, -100%); }
  50% { transform: rotate(45deg) translate(0%, 0%); }
  100% { transform: rotate(45deg) translate(100%, 100%); }
}

.stat-icon i {
  font-size: 2rem;
  color: var(--primary-black);
  position: relative;
  z-index: 1;
}

.stat-content .stat-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  line-height: 1;
}

.stat-content .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Statistics CTA */
.stats-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(15px);
}

.stats-cta h3 {
  font-size: 1.8rem;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.stats-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Section - Moderna y Cómoda */
.testimonials {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
}

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

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  animation: pattern-drift 20s ease-in-out infinite;
}

.testimonials-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.testimonials-header .section-title {
  margin-bottom: var(--spacing-md);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, var(--primary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-header .section-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card.modern {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card.modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 215, 0, 0.02) 0%, 
    transparent 50%, 
    rgba(255, 215, 0, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card.modern:hover::before {
  opacity: 1;
}

.testimonial-card.modern:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 20px 40px rgba(255, 215, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card.modern.featured {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 8px 32px rgba(255, 215, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-badge {
  position: absolute;
  top: -12px;
  right: var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  color: var(--primary-black);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.testimonial-badge i {
  font-size: 0.9rem;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.testimonial-rating {
  display: flex;
  gap: var(--spacing-xs);
}

.testimonial-rating i {
  color: var(--primary-yellow);
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  transition: all 0.3s ease;
}

.testimonial-rating i:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

.testimonial-quote {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.testimonial-card.modern:hover .testimonial-quote {
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-content {
  flex: 1;
  margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}

.avatar-initial {
  color: var(--primary-black);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.author-info {
  flex: 1;
}

.author-info h4 {
  color: var(--primary-yellow);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.author-info span {
  color: #cccccc;
  font-size: 0.85rem;
  opacity: 0.8;
}

.testimonial-stats {
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.stat-value {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.stat-label {
  color: #cccccc;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.8;
}

.testimonials-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.testimonials-cta h3 {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.testimonials-cta p {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .testimonial-card.modern {
    padding: var(--spacing-lg);
  }
  
  .testimonials-header .section-title {
    font-size: 2rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .testimonial-quote {
    align-self: flex-end;
  }
}

/* =====================================================
   CONTACT FORM SECTION - Modern & Interactive
   ===================================================== */

/* Contact Section */
.contact {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  overflow: hidden;
}

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

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  animation: pattern-drift 25s ease-in-out infinite;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  animation: glow-pulse 6s ease-in-out infinite;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--border-radius-xl);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.method-icon i {
  font-size: 1.5rem;
  color: var(--primary-black);
}

.method-content h4 {
  color: var(--primary-yellow);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.method-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

/* Form Container */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-2xl);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.form-header h3 {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Form Styles */
.contact-form {
  position: relative;
  z-index: 2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.form-group {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  padding-left: 3.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-lg);
  color: white;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-yellow);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 0 0 3px rgba(255, 215, 0, 0.1),
    0 4px 12px rgba(255, 215, 0, 0.2);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 3.5rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
  padding: 0 var(--spacing-xs);
  white-space: nowrap;
  z-index: 5;
}

.form-group textarea + label {
  top: var(--spacing-md);
  transform: translateY(0);
}

/* Estilos específicos para campos sin label */
.form-group select:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
  color: white;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -8px;
  left: var(--spacing-md);
  transform: translateY(0);
  font-size: 0.85rem;
  color: var(--primary-yellow);
  background: rgba(15, 15, 15, 0.9);
  font-weight: 500;
  padding: 0 var(--spacing-xs);
  z-index: 10;
}

.form-icon {
  position: absolute;
  top: 50%;
  left: var(--spacing-md);
  transform: translateY(-50%);
  color: rgba(255, 215, 0, 0.6);
  font-size: 1.1rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group:focus-within .form-icon {
  color: var(--primary-yellow);
  transform: translateY(-50%) scale(1.2);
}

.form-group:hover .form-icon {
  transform: translateY(-50%) scale(1.2);
  color: var(--primary-yellow);
}

.form-group .form-icon {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animación de regreso al estado normal */
.form-group:not(:hover):not(:focus-within) .form-icon {
  transform: translateY(-50%) scale(1);
  color: rgba(255, 215, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group:not(:hover):not(:focus-within) select ~ .form-icon {
  transform: translateY(-50%) scale(1);
}

.form-group:not(:hover):not(:focus-within) textarea ~ .form-icon {
  transform: translateY(0) scale(1);
}

.form-group textarea ~ .form-icon {
  top: var(--spacing-md);
  transform: translateY(0);
}

/* Ajuste específico para el icono del select */
.form-group select ~ .form-icon {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.form-group select:focus ~ .form-icon,
.form-group select:hover ~ .form-icon {
  transform: translateY(-50%) scale(1.2);
  color: var(--primary-yellow);
}

/* Select Styling */
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right var(--spacing-md) center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
  color: rgba(255, 255, 255, 0.6);
}

.form-group select:focus,
.form-group select:valid {
  color: white;
}

.form-group select option {
  background: var(--gray-dark);
  color: white;
  padding: var(--spacing-sm);
}

/* Checkbox Styling */


/* Error states */
.privacy-checkbox.error {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.02);
}

.privacy-checkbox.error .checkmark {
  border-color: rgba(239, 68, 68, 0.6) !important;
  background: rgba(239, 68, 68, 0.05);
}

.privacy-checkbox.error .privacy-label {
  color: rgba(239, 68, 68, 0.9) !important;
}

.checkbox-label > span:last-child {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  padding-right: var(--spacing-sm);
  white-space: normal;
  hyphens: auto;
}

/* Submit Button */
.form-submit {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: var(--spacing-lg);
}

.form-submit .btn-text,
.form-submit .btn-icon {
  transition: all 0.3s ease;
}

.form-submit .btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.form-submit.loading .btn-text,
.form-submit.loading .btn-icon {
  opacity: 0;
  visibility: hidden;
}

.form-submit.loading .btn-loader {
  opacity: 1;
  visibility: visible;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success/Error Messages */
.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  margin-top: var(--spacing-lg);
  backdrop-filter: blur(10px);
}

.form-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

.form-success.show,
.form-error.show {
  display: block;
  animation: slideInUp 0.5s ease;
}

.form-success i,
.form-error i {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.form-success h4,
.form-error h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.form-success p,
.form-error p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .contact-methods {
    order: 2;
    gap: var(--spacing-lg);
  }
  
  .contact-form-container {
    order: 1;
    padding: var(--spacing-xl);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-header h3 {
    font-size: 1.8rem;
  }
  
  .contact-method {
    padding: var(--spacing-md);
    gap: var(--spacing-md);
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
  }
  
  .method-icon i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: var(--spacing-lg);
  }
  
  .form-header h3 {
    font-size: 1.6rem;
  }
  
  .form-header p {
    font-size: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    padding-left: 3rem;
    font-size: 0.95rem;
  }
  
  .form-group label {
    left: 3rem;
    font-size: 0.95rem;
  }
  
  .form-icon {
    left: var(--spacing-sm);
    font-size: 1rem;
  }
}

/* Flag Icons */
.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: var(--spacing-xs);
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.flag-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Footer flag icons */
.footer-links .flag-icon {
  width: 18px;
  height: 13px;
  margin-right: var(--spacing-xs);
  margin-left: var(--spacing-xs);
}

/* Footer Styles - Professional */
.footer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.98));
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: var(--spacing-lg);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius-full);
  color: var(--primary-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  border-color: var(--primary-yellow);
}

.social-link:hover::before {
  opacity: 0.1;
}

.social-link i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-yellow);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-yellow), transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links i {
  color: var(--primary-yellow);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.legal-link:hover {
  color: var(--primary-yellow);
}

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

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
  }
  
  .footer-title {
    font-size: 1.6rem;
  }
  
  .footer-subtitle {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
}

/* ===== SERVICIOS SECTION - MEJORADA UI/UX ===== */
.services {
  padding: 120px 0;
  background: var(--primary-black);
  position: relative;
  overflow: hidden;
}

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

.services-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: particles-float 15s ease-in-out infinite alternate;
}

.services-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: glow-pulse 8s ease-in-out infinite;
}

.services-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-float 20s ease-in-out infinite;
}

.services-content {
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 0;
  position: relative;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.service-card:hover::before {
  left: 100%;
}

.service-card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.02), rgba(255, 215, 0, 0.01));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover .service-card-background {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card.featured {
  border-color: var(--primary-yellow);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
}

.service-card.featured:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, var(--primary-yellow), #ff8c42);
  color: var(--primary-black);
  padding: 0.6rem 1.2rem;
  border-radius: 0 20px 0 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.service-badge i {
  font-size: 0.8rem;
  animation: star-twinkle 2s ease-in-out infinite;
}

.service-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 2rem 0 1.5rem;
  z-index: 2;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.service-icon i {
  font-size: 2.2rem;
  color: var(--primary-yellow);
  transition: all 0.4s ease;
}

.service-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-in-out infinite;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(8deg);
  border-color: var(--primary-yellow);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.1));
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon i {
  color: #fff;
  text-shadow: 0 0 15px var(--primary-yellow);
  transform: scale(1.1);
}

.service-content {
  padding: 0 2rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

.service-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--primary-yellow);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.service-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.service-examples {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.04));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-examples {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
}

.service-examples strong {
  color: var(--primary-yellow);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
  font-size: 1rem;
}

.service-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: auto;
}

.benefit-tag {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--primary-yellow);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card:hover .benefit-tag {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.service-cta {
  padding: 2rem;
  text-align: center;
  z-index: 2;
  position: relative;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--primary-yellow);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

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

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--primary-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.service-btn:hover i {
  transform: translateX(4px);
}

.service-btn.primary {
  background: linear-gradient(135deg, var(--primary-yellow), #ff8c42);
  color: var(--primary-black);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.service-btn.primary:hover {
  background: linear-gradient(135deg, #ffd700, #ff8c42);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.service-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover .service-hover-effect {
  width: 300px;
  height: 300px;
}

/* Animaciones */
@keyframes particles-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

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

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

@keyframes star-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    min-height: auto;
  }
  
  .service-card.featured {
    transform: none;
  }
  
  .service-card.featured:hover,
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 1.8rem;
  }
  
  .service-pulse {
    width: 70px;
    height: 70px;
  }
  
  .service-content {
    padding: 0 1.5rem;
  }
  
  .service-cta {
    padding: 1.5rem;
  }
}

/* Checkbox Styling */

/* Privacy Checkbox */
.privacy-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--spacing-xl) 0;
  padding: var(--spacing-md) var(--spacing-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-checkbox input[type="checkbox"] {
  display: none;
}

.privacy-checkbox label {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
  user-select: none;
  font-weight: 400;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkmark::after {
  content: '✓';
  color: #000;
  font-size: 16px;
  font-weight: bold;
  opacity: 0;
}

.privacy-checkbox input[type="checkbox"]:checked + label .checkmark {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
}

.privacy-checkbox input[type="checkbox"]:checked + label .checkmark::after {
  opacity: 1;
}

.checkbox-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  padding-right: var(--spacing-sm);
  white-space: normal;
  hyphens: auto;
}

.privacy-link {
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  color: var(--secondary-yellow);
}

/* Páginas Legales - Política de Privacidad y Términos de Servicio */
.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.privacy-section,
.terms-section {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-section h2,
.terms-section h2 {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.privacy-section p,
.terms-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.privacy-section ul,
.terms-section ul {
    color: rgba(255, 255, 255, 0.8);
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.privacy-section li,
.terms-section li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
}

.contact-info strong {
    color: var(--primary-yellow);
}

/* Responsive para páginas legales */
@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: var(--spacing-md) 0;
    }
    
    .privacy-section,
    .terms-section {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }
}