/* ============================================
   JDGR CriptoTrade - CYBERPUNK NEON Edition
   Design System: Aureum Noir + Neon Override
   Mobile-First Responsive
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ---- Design Tokens ---- */
:root {
  --bg-void: #030308;
  --bg-deep: #0a0a12;
  --bg-surface: #0f0f1a;
  --bg-card: #141425;
  --bg-card-hover: #1a1a35;
  --bg-elevated: #1e1e3a;

  --neon-gold: #f5c518;
  --neon-gold-bright: #ffe566;
  --neon-gold-dim: #c49b0a;
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00aa;
  --neon-green: #00ff88;
  --neon-purple: #a855f7;
  --neon-orange: #ff6b35;

  --text-primary: #f0eee6;
  --text-secondary: #9a96a6;
  --text-muted: #5a5670;

  --glass-bg: rgba(20, 20, 40, 0.6);
  --glass-border: rgba(245, 197, 24, 0.12);
  --glass-blur: blur(20px);

  --font-primary: 'Inter', sans-serif;
  --font-display: 'Orbitron', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-gold-dim) var(--bg-deep);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-gold), var(--neon-orange));
  border-radius: 3px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(245,197,24,0.5), 0 0 20px rgba(245,197,24,0.3), 0 0 40px rgba(245,197,24,0.1); }
  50% { text-shadow: 0 0 20px rgba(245,197,24,0.8), 0 0 40px rgba(245,197,24,0.5), 0 0 80px rgba(245,197,24,0.3); }
}

@keyframes neonBorderPulse {
  0%, 100% { border-color: rgba(245,197,24,0.15); box-shadow: 0 0 15px rgba(245,197,24,0.05); }
  50% { border-color: rgba(245,197,24,0.4); box-shadow: 0 0 30px rgba(245,197,24,0.15); }
}

@keyframes cyanGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,240,255,0.1); }
  50% { box-shadow: 0 0 40px rgba(0,240,255,0.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gridFlow {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

@keyframes scanline {
  0% { top: -100%; }
  100% { top: 200%; }
}

@keyframes glitchShift {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, -2px); }
  80% { transform: translate(1px, 1px); }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes rotateIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slideProgress {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 70% / 40% 70% 50% 60%; }
  75% { border-radius: 60% 30% 50% 40% / 70% 40% 60% 30%; }
}

@keyframes counterBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ============================================
   CURSOR SPOTLIGHT / FLASHLIGHT
   ============================================ */
.cursor-spotlight {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.06) 0%, rgba(0, 240, 255, 0.02) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  left: 0;
  top: 0;
}

.cursor-spotlight.intense {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, rgba(0, 240, 255, 0.04) 30%, transparent 65%);
}

@media (hover: none) {
  .cursor-spotlight { display: none; }
}

/* ============================================
   3D SCROLL ANIMATION CLASSES
   ============================================ */

/* Rise from below with 3D rotation */
.reveal {
  opacity: 0;
  transform: perspective(1200px) translateY(80px) rotateX(8deg) translateZ(-40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: perspective(1200px) translateY(0) rotateX(0deg) translateZ(0);
}

/* Fly in from left with 3D rotation */
.reveal-left {
  opacity: 0;
  transform: perspective(1200px) translateX(-100px) rotateY(15deg) translateZ(-30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: perspective(1200px) translateX(0) rotateY(0deg) translateZ(0);
}

/* Fly in from right with 3D rotation */
.reveal-right {
  opacity: 0;
  transform: perspective(1200px) translateX(100px) rotateY(-15deg) translateZ(-30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: perspective(1200px) translateX(0) rotateY(0deg) translateZ(0);
}

/* Zoom from far away — feels like it jumps at you */
.reveal-zoom {
  opacity: 0;
  transform: perspective(1000px) translateZ(-200px) scale(0.6);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(4px);
}
.reveal-zoom.active {
  opacity: 1;
  transform: perspective(1000px) translateZ(0) scale(1);
  filter: blur(0);
}

/* Full 3D flip-in */
.reveal-3d {
  opacity: 0;
  transform: perspective(1200px) rotateY(25deg) rotateX(10deg) translateZ(-80px) translateX(-30px);
  transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(2px);
}
.reveal-3d.active {
  opacity: 1;
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateZ(0) translateX(0);
  filter: blur(0);
}

/* Scale + push forward */
.reveal-push {
  opacity: 0;
  transform: perspective(800px) translateZ(-150px) rotateX(5deg);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-push.active {
  opacity: 1;
  transform: perspective(800px) translateZ(10px) rotateX(0deg);
}

.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.25s !important; }
.stagger-3 { transition-delay: 0.4s !important; }
.stagger-4 { transition-delay: 0.55s !important; }
.stagger-5 { transition-delay: 0.7s !important; }

/* ============================================
   VOLUMETRIC LIGHT BEAMS
   ============================================ */
.light-beam {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.3), transparent);
  opacity: 0.4;
  pointer-events: none;
  animation: lightPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes lightPulse {
  0%, 100% { opacity: 0.2; height: 100px; }
  50% { opacity: 0.5; height: 200px; }
}

/* Section light glow behind content */
section {
  position: relative;
}

section > .container {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

/* ============================================
   TRANSLUCENT SECTION BACKGROUNDS
   ============================================ */
.section-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  filter: blur(2px) saturate(0.3) brightness(0.6);
  z-index: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

/* Each section gets a unique tint */
.features .section-bg-image {
  opacity: 0.05;
  filter: blur(3px) saturate(0.4) brightness(0.5);
}

.stats .section-bg-image {
  opacity: 0.06;
  filter: blur(1px) saturate(0.3) brightness(0.4);
}

.datos-section .section-bg-image {
  opacity: 0.04;
  filter: blur(4px) saturate(0.2) brightness(0.5);
}

.instagram-section .section-bg-image {
  opacity: 0.03;
  filter: blur(2px) saturate(0.3) brightness(0.5);
}

/* Section glow effects removed for performance */

/* ============================================
   NAVBAR - Glassmorphism Command Bar
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(3, 3, 8, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(245, 197, 24, 0.03);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.navbar-brand .brand-accent {
  color: var(--neon-gold);
  text-shadow: 0 0 10px rgba(245, 197, 24, 0.4);
}

.navbar-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-gold);
  margin: 6px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(245, 197, 24, 0.4);
}

.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.navbar-actions {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(10, 10, 20, 0.98);
  backdrop-filter: blur(40px);
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  transition: right var(--transition-normal);
  border-left: 1px solid rgba(245, 197, 24, 0.1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
}

.navbar-actions.open { right: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::after { opacity: 1; animation: shimmer 0.8s linear; }

.btn-primary {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-orange) 100%);
  color: #000;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.5), 0 10px 40px rgba(245, 197, 24, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-gold);
  border: 1px solid rgba(245, 197, 24, 0.3);
  box-shadow: inset 0 0 20px rgba(245, 197, 24, 0.03);
}

.btn-secondary:hover {
  background: rgba(245, 197, 24, 0.08);
  border-color: var(--neon-gold);
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.15), inset 0 0 30px rgba(245, 197, 24, 0.05);
  transform: translateY(-3px);
}

.btn-lg { padding: 16px 40px; font-size: 0.85rem; }

/* ============================================
   HERO SECTION - Full Cyberpunk
   ============================================ */
/* TradingView Top Ticker Bar - below navbar, above hero */
.tradingview-top-bar {
  position: fixed;
  top: 64px; /* sits right below the navbar */
  left: 0;
  width: 100%;
  z-index: 999; /* just below navbar (1000) */
  background: rgba(3, 3, 8, 0.92);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding: 2px 0;
}

.tradingview-top-bar .tradingview-widget-container {
  max-width: 100%;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 40px; /* extra top padding for fixed navbar + ticker */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/banner.jpg') center center / cover no-repeat;
  opacity: 0.55;
  filter: saturate(0.6) brightness(0.7);
}

/* Scanline overlay */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 255, 0.015) 2px,
    rgba(0, 240, 255, 0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-scanline-bar {
  display: none; /* Removed for performance - infinite animation causing GPU churn */
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 65%, var(--bg-void) 100%);
  z-index: 1;
}

.hero-grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 40%;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(400px) rotateX(55deg);
  transform-origin: center top;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 1;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-void), transparent);
  z-index: 2;
}

/* Floating blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.10;
  z-index: 0;
  /* morphBlob animation removed - blur + border-radius animation is very GPU-heavy */
}

.hero-blob-1 {
  width: 300px; height: 300px;
  background: var(--neon-gold);
  top: 10%; right: -5%;
  animation-delay: 0s;
}

.hero-blob-2 {
  width: 250px; height: 250px;
  background: var(--neon-cyan);
  bottom: 20%; left: -5%;
  animation-delay: -5s;
}

.hero-blob-3 {
  width: 200px; height: 200px;
  background: var(--neon-magenta);
  top: 50%; left: 50%;
  animation-delay: -10s;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-family: var(--font-display);
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.3s both, cyanGlow 3s ease-in-out infinite;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: blink 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: neonPulse 4s ease-in-out infinite;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-orange) 30%, var(--neon-gold-bright) 60%, var(--neon-gold) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: #e8e6e0;
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

/* Value Cards */
.value-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  /* Removed: backdrop-filter (GPU-heavy), neonBorderPulse animation (infinite box-shadow changes) */
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: 0 0 60px rgba(245, 197, 24, 0.1), 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(20, 20, 40, 0.8);
}

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

.value-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-normal);
}

.value-card-icon .material-symbols-rounded {
  font-size: 1.8rem;
  z-index: 1;
}

/* Gold variant */
.value-card-icon.gold {
  background: rgba(245, 197, 24, 0.1);
  color: var(--neon-gold);
  border: 1px solid rgba(245, 197, 24, 0.2);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.15);
}

.value-card:hover .value-card-icon.gold {
  background: rgba(245, 197, 24, 0.2);
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.3);
}

/* Cyan variant */
.value-card-icon.cyan {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.value-card:hover .value-card-icon.cyan {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

/* Green variant */
.value-card-icon.green {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.value-card:hover .value-card-icon.green {
  background: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.value-card-text h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.value-card-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 80px 0;
  position: relative;
  background: var(--bg-deep);
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--neon-cyan);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.section-title .accent { color: var(--neon-gold); }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Neon corner accents */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border-top: 2px solid var(--neon-gold);
  border-left: 2px solid var(--neon-gold);
  border-radius: var(--radius-xl) 0 0 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--neon-cyan);
  border-right: 2px solid var(--neon-cyan);
  border-radius: 0 0 var(--radius-xl) 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 197, 24, 0.05);
}

.feature-card:hover::before,
.feature-card:hover::after { opacity: 0.6; }

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 30px currentColor;
}

.feature-icon.green {
  background: linear-gradient(135deg, #00c853, #00e676);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}
.feature-icon.red {
  background: linear-gradient(135deg, #ff1744, #ff5252);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3);
}
.feature-icon.yellow {
  background: linear-gradient(135deg, var(--neon-gold), var(--neon-orange));
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
}
.feature-icon.cyan {
  background: linear-gradient(135deg, var(--neon-cyan), #0080ff);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stats {
  padding: 80px 0;
  position: relative;
  background: var(--bg-void);
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.05), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid rgba(245, 197, 24, 0.06);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-gold), var(--neon-cyan));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.stat-item:hover { transform: scale(1.05); }
.stat-item:hover::after { transform: scaleX(1); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--neon-gold);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-underline {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--neon-gold), transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ============================================
   TRADINGVIEW
   ============================================ */
.tradingview-section {
  padding: 60px 0;
  background: var(--bg-deep);
}

/* Override 3D transforms for TradingView - iframes break in 3D context */
.tradingview-section .container {
  transform: none !important;
  transform-style: flat !important;
}

.tradingview-section::after {
  display: none;
}

.tradingview-wrapper.reveal {
  transform: translateY(40px);
}
.tradingview-wrapper.reveal.active {
  transform: translateY(0);
}

.tradingview-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.08);
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.05);
  position: relative;
}

.tradingview-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), transparent 50%, rgba(0, 240, 255, 0.1));
  z-index: 0;
  pointer-events: none;
}

.tradingview-screener {
  min-height: 400px;
}

/* ============================================
   CAROUSEL - DATOS IMPORTANTES
   ============================================ */
.datos-section {
  padding: 80px 0;
  background: var(--bg-void);
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid rgba(245, 197, 24, 0.06);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.carousel-slide-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.carousel-slide-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.carousel-slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 3, 8, 0.8));
  pointer-events: none;
}

.carousel-slide:hover .carousel-slide-image img { transform: scale(1.05); }

.carousel-slide-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neon-gold);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.2);
}

.carousel-slide-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid rgba(245, 197, 24, 0.15);
  color: var(--neon-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 1.1rem;
}

.carousel-btn:hover {
  background: var(--neon-gold);
  color: #000;
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.3);
  transform: scale(1.1);
}

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--neon-gold);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.4);
}

/* Progress bar for carousel */
.carousel-progress {
  height: 2px;
  background: rgba(245, 197, 24, 0.08);
  position: relative;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-gold), var(--neon-cyan));
  animation: slideProgress 6s linear infinite;
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram-section {
  padding: 60px 0;
  text-align: center;
  background: var(--bg-deep);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-xl);
  padding: 20px 32px;
  transition: all var(--transition-normal);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.instagram-link:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.instagram-icon {
  width: 40px; height: 40px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 60px 0;
  background: var(--bg-void);
}

.map-section::after {
  display: none;
}

/* Override 3D transforms for map - iframes break in 3D context */
.map-section .container {
  transform: none !important;
  transform-style: flat !important;
}

.map-wrapper.reveal {
  transform: translateY(40px);
}
.map-wrapper.reveal.active {
  transform: translateY(0);
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.08);
  position: relative;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), transparent, rgba(0, 240, 255, 0.08));
  z-index: 1;
  pointer-events: none;
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  filter: brightness(0.85) saturate(0.6) contrast(1.1);
  transition: filter var(--transition-slow);
  position: relative;
  z-index: 2;
}

.map-wrapper:hover iframe {
  filter: brightness(1) saturate(0.8) contrast(1);
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--bg-card);
  border-top: 1px solid rgba(245, 197, 24, 0.06);
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.map-info-item .icon {
  color: var(--neon-gold);
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 20px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(245, 197, 24, 0.05);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.footer-brand h2 span { color: var(--neon-gold); }

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  color: var(--neon-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 6px 0;
  transition: all var(--transition-fast);
  position: relative;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--neon-gold);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neon-gold);
  transform: translateX(12px);
}

.footer-links a:hover::before { opacity: 1; left: -16px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-contact-item .icon { color: var(--neon-gold); }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-bottom a { color: var(--neon-gold); }



/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15);
  transition: all var(--transition-normal);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.25);
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--neon-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--bg-card-hover);
  border-color: var(--neon-gold);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.2);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-gold), var(--neon-cyan), var(--neon-magenta));
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   DESKTOP RESPONSIVE (min-width breakpoints)
   ============================================ */
@media (min-width: 480px) {
  .hero-cta { flex-direction: row; }
  .value-cards { flex-direction: row; }
  .value-card { flex: 1; flex-direction: column; text-align: center; }
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }

  .navbar-toggle { display: none; }

  .navbar-actions {
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }

  .carousel-slide {
    flex-direction: row;
    padding: 40px;
    gap: 32px;
  }

  .carousel-slide-image {
    flex: 0 0 40%;
    width: auto;
  }

  .map-wrapper iframe { height: 400px; }

  .map-info {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .footer-content { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4rem; }
  .hero-blob-1 { width: 500px; height: 500px; }
  .hero-blob-2 { width: 400px; height: 400px; }
}
