:root {
  --primary: #FF6B00;
  --primary-hover: #FF8000;
  --primary-glow: rgba(255, 107, 0, 0.5);
  --background-dark: #000000;
  --top-bar: #0f0f0f;
  --header-main: #000000;
  --menu-bar: #161616;
  --deep-charcoal: #1a1a1a;
  --industrial-gray: #2a2a2a;
  --border-dark: #2a2a2a;
  --text-gray: #9ca3af;
  --text-light: #e5e7eb;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #000;
    color: #fff;
}

@keyframes win-pulso {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    60% { box-shadow: 0 0 0 22px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.animate-pulse-whatsapp {
    animation: win-pulso 2s infinite;
}