body {
  background-color: #0a0a0f;
  color: #ffffff;
  overflow-x: hidden;
}

.text-glow-purple {
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

.text-glow-orange {
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.8);
}

.glass-panel {
  background: rgba(22, 22, 30, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-border-purple {
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.neon-border-orange {
  border: 1px solid rgba(255, 107, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.input-premium {
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.input-premium:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  outline: none;
}

select option {
  background-color: #13131a;
  color: #ffffff;
}

.gradient-text-nitro {
  background: linear-gradient(to right, #ff6b00, #ff9e40);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

@keyframes icon-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

@keyframes icon-pulse-purple {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

.icon-pulse {
  animation: icon-pulse 2s infinite;
}

.icon-pulse-purple {
  animation: icon-pulse-purple 2s infinite;
}

/* VIP Ripple Animation */
.btn-vip-ripple {
  position: relative;
}

.btn-vip-ripple::before,
.btn-vip-ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #ff6b00;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  animation: vip-ripple 3s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

.btn-vip-ripple::after {
  animation-delay: 1.5s;
}

@keyframes vip-ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
    border-width: 4px;
  }
  100% {
    transform: scale(1.3, 1.6);
    opacity: 0;
    border-width: 1px;
  }
}

.pulse-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(22, 22, 30, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.badge-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #8b5cf6);
  color: white;
  font-size: 0.75rem;
}

/* 2026 Premium Visual Rebirth Effects */

/* Noise Texture for Glassmorphism */
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
  opacity: 0.05;
  pointer-events: none;
  border-radius: inherit;
}

/* Mesh Background Light Orbs */
.bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

.orb-purple {
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}
.orb-orange {
  background: radial-gradient(circle, #ff6b00 0%, transparent 70%);
}

.orb-float {
  will-change: transform, opacity;
  filter: blur(140px);
}

/* Kinetic Typography Utility */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-reveal span {
  display: inline-block;
  will-change: transform, opacity;
}

/* Border Beam Effect */
@keyframes border-beam {
  100% {
    offset-distance: 100%;
  }
}

.border-beam-container {
  position: relative;
  border-radius: inherit;
}

.border-beam {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.border-beam::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 15rem;
  background: linear-gradient(to left, #ff6b00, #8b5cf6, transparent);
  offset-path: rect(0 auto auto 0 round 15rem);
  animation: border-beam 4s linear infinite;
}

/* Premium Card Glows */
.premium-card-glow {
  position: relative;
}

.premium-card-glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  z-index: -1;
  border-radius: inherit;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Dynamic Service Tabs */
.service-tab {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-tab.active {
  color: #ffffff;
  border-color: rgba(255, 107, 0, 0.6);
  background: rgba(255, 107, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
}

.service-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff6b00;
  box-shadow: 0 0 10px #ff6b00;
}

/* Tab panes controlados por GSAP */
.tab-pane {
  display: block;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Reveal states for JS animations */
.reveal-container h2,
.reveal-container p,
.reveal-container .reveal-item {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

.reveal-item-single {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
}

.premium-gradient-bg {
  background: radial-gradient(
    circle at center,
    rgba(139, 92, 246, 0.05) 0%,
    rgba(10, 10, 15, 1) 100%
  );
}

.blur-overlay {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
