:root {
  --black: #0a0a0a;
  --dark: #111111;
  --gray: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #e6c85a;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  background: var(--black);
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}
.center { text-align: center; }

/* ================== TÍTULOS ELEGANTES (menos zoom) ================== */
.title-vision, .title-art {
  font-family: 'Clash Display', sans-serif;
  letter-spacing: -3.5px;
  
  text-align: center;
  width: 100%;
  display: block;
}
.title-vision { font-size: 98px; font-weight: 700; }
.title-art { font-size: 78px; font-weight: 700; margin-bottom: 100px; }
.gold { color: var(--gold); }
.title-art.gold {
  background: linear-gradient(90deg, #fff, var(--gold), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================== HERO + PARTÍCULAS ================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 75%, rgba(212,175,55,0.12), transparent 60%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.subtitle-vision { font-size: 34px; opacity: 0.92; margin: 32px 0 20px; }
.tagline-vision { font-size: 27px; opacity: 0.75; max-width: 900px; margin: 0 auto 60px; }
.hero-buttons-center { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-top: 70px; }
.hero-stats { display: flex; justify-content: center; gap: 90px; font-size: 48px; font-weight: 700; flex-wrap: wrap; margin-top: 90px; }
.stat-item span { display: block; font-size: 18px; font-weight: 500; opacity: 0.75; margin-top: 8px; }

/* ================== SECCIONES GENERALES ================== */
.what-is-section,
.brokers-section,
.for-who-section,
.performance-section,
.pricing-section {
  padding: 50px 0;
}
.brokers-section,
.pricing-section { background: var(--dark); }

.big-text {
  font-size: 27px;
  line-height: 2.1;
  max-width: 1100px;
  margin: 90px auto;
  opacity: 0.94;
}
.for-who-list p {
  font-size: 34px;
  line-height: 2.3;
  margin: 38px 0;
  font-weight: 500;
}

/* ================== RENTABILIDAD (RINGS 100% FUNCIONALES) ================== */
.performance-section { padding: 220px 0; background: var(--dark); }
.progress-rings { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; margin-top: 80px; }
.ring-item { text-align: center; }
.ring {
  width: 180px; height: 180px; border-radius: 50%;
  background: conic-gradient(var(--gold) 0%, rgba(255,255,255,0.1) 0%);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin: 0 auto 24px;
  transition: background 2.5s ease-out;
}
.ring::before { content: ''; position: absolute; inset: 15px; background: var(--dark); border-radius: 50%; }
.ring span { font-size: 42px; font-weight: 800; z-index: 2; color: var(--gold); }
.counter-ring span:first-child { font-size: 38px; }
.counter-ring span:last-child { font-size: 32px; }
.ring-item p { font-size: 20px; opacity: 0.9; }

/* ================== BROKERS PREMIUM (NUEVA VERSIÓN ELEGANTE) ================== */
.brokers-section {
  padding: 40px 0;
  background: linear-gradient(to bottom, var(--black), var(--dark));
}
.brokers-premium-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  margin: 120px 0 80px;
}
.broker-item {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 32px;
  padding: 60px 50px;
  width: 420px;
  text-align: center;
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}
.broker-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.broker-item:hover::before { opacity: 1; }
.broker-item:hover {
  transform: translateY(-20px);
  border-color: var(--gold);
  box-shadow: 0 40px 80px rgba(212,175,55,0.15);
}
.broker-icon {
  width: 100px; height: 100px;
  margin: 0 auto 30px;
  background: rgba(212,175,55,0.1);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; color: var(--gold);
  transition: all 0.5s ease;
}
.broker-icon.gold { background: var(--gold); color: black; }
.broker-item:hover .broker-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 0 40px rgba(212,175,55,0.4);
}
.broker-item h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Clash Display', sans-serif;
}
.broker-item p {
  font-size: 19px;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 30px;
}
.broker-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.4s;
}
.broker-link:hover { color: white; border-bottom: 2px solid var(--gold); }
.broker-link.gold:hover { color: var(--gold-light); }
.broker-badge {
  position: absolute;
  top: -18px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  color: white; padding: 15px 40px; border-radius: 50px;
  font-size: 14px; font-weight: 900; letter-spacing: 1px;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(139,92,246,0.3);
}
.broker-note {
  font-size: 22px;
  opacity: 0.8;
  max-width: 900px;
  margin: 0 auto;
}

/* ================== PRECIOS ================== */
.pricing-section { padding: 220px 0; background: var(--dark); }
.pricing-grid-new {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 60px;
  margin-top: 100px; max-width: 1400px; margin-left: auto; margin-right: auto;
}
.price-card-new {
  background: #ffffff; color: #000; padding: 60px 40px; border-radius: 32px;
  text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.price-card-new:hover { transform: translateY(-20px); box-shadow: 0 40px 100px rgba(0,0,0,0.4); }
.price-card-new.recommended {
  background: linear-gradient(135deg, #fffbe6, #fef3c7, #fde68a, #fbbf24);
  transform: scale(1.05); box-shadow: 0 60px 140px rgba(251,191,36,0.6);
}
.price-card-new.recommended:hover { transform: scale(1.07) translateY(-10px); }
.badge-new {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #4a148c, #7b1fa2);
  color: white; padding: 14px 50px; border-radius: 50px;
  font-weight: 800; font-size: 17px; z-index: 10;
  box-shadow: 0 10px 20px rgba(123,31,162,0.4);
}
.urgency-banner {
  position: absolute; top: -55px; left: 50%; transform: translateX(-50%);
  background: #ff1e56; color: white; padding: 14px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 700; z-index: 11;
  animation: pulse 2s infinite;
  box-shadow: 0 10px 30px rgba(255,30,90,0.5);
  white-space: nowrap;
}
@keyframes pulse { 0%,100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.06); } }
.price-new { font-size: 92px !important; font-weight: 800; margin: 30px 0; color: #000; }
.price-new.big { font-size: 110px !important; }
.price-new span { font-size: 40px; opacity: 0.7; }
.price-card-new ul { list-style: none; margin: 40px 0; font-size: 20px; line-height: 2.2; }
.price-card-new ul li::before { content: "• "; color: var(--gold); font-weight: bold; }
.price-card-new .btn-new-gold {
  background: #000 !important; color: white !important; padding: 28px 20px !important;
  border-radius: 60px !important; font-size: 24px !important; font-weight: 800 !important;
  min-height: 80px; width: 90%; max-width: 380px; margin: 30px auto 0; display: block !important;
}
.price-card-new .btn-new-gold:hover { background: var(--gold) !important; color: black !important; }
.btn-new-outline { background: transparent; color: var(--gold); border: 3px solid var(--gold); padding: 18px 50px; border-radius: 50px; font-weight: 700; font-size: 18px; transition: all 0.4s; }
.btn-new-outline:hover { background: var(--gold); color: black; }

/* ================== BOTONES GOLD ================== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: black; padding: 22px 60px; border-radius: 60px;
  font-weight: 700; font-size: 19px; box-shadow: 0 15px 40px rgba(212,175,55,0.3);
  transition: all 0.4s ease; text-decoration: none; display: inline-block;
}
.btn-gold:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(212,175,55,0.45); }
.btn-gold.small { padding: 13px 30px !important; font-size: 17px !important; }
.extra-big { padding: 38px 110px !important; font-size: 34px !important; }

/* ================== TEMPORIZADOR FIJO ================== */
.fixed-timer-bar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: linear-gradient(135deg, #000, #111);
  border-bottom: 3px solid #ff0000;
  padding: 16px 0; z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.timer-content {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; font-size: 19px; font-weight: 700;
}
.timer-content p { margin: 0; color: #ff0000; }
.timer-content p i { margin-right: 10px; animation: pulse 2s infinite; }
.countdown-fixed { color: var(--gold); font-size: 25px; margin: 0 30px; }
.countdown-fixed span { font-weight: 900; }

/* ================== NOTIFICACIONES ================== */
#live-notifications {
  position: fixed; bottom: 20px; left: 20px; z-index: 9998;
  display: flex; flex-direction: column; gap: 12px;
}
.notification {
  background: #111; border: 1px solid #333; border-left: 5px solid var(--gold);
  padding: 16px 20px; border-radius: 12px; max-width: 340px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  animation: slideIn 0.6s ease, fadeOut 0.6s 5s forwards; opacity: 0;
}
.notification.show { opacity: 1; }
.notification i { color: var(--gold); margin-right: 12px; }
.notification .name { font-weight: 700; color: var(--gold); }
.notification small { display: block; margin-top: 6px; opacity: 0.8; font-size: 13px; }
@keyframes slideIn { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { transform: translateX(-100%); opacity: 0; } }

/* ================== CIERRE FINAL ================== */
.final-proof-section {
  padding: 240px 0 220px;
  background: linear-gradient(135deg, #000 0%, #111 100%);
  position: relative; overflow: hidden;
}
.final-proof-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(212,175,55,0.14), transparent 70%);
  pointer-events: none;
}
.subtitle-final {
  font-size: 28px;
  opacity: 0.85;
  max-width: 850px;
  margin: 40px auto 90px;
  line-height: 1.8;
}
.equity-graph {
  margin: 100px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(212,175,55,0.2);
}
.equity-graph img { width: 100%; height: auto; display: block; }
.final-stats-grid {
  grid-template-columns: repeat(4,1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 120px;

  
}
.final-stat h3 {
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}
.final-stat p {
  font-size: 20px;
  opacity: 0.9;
}

/* ================== RESPONSIVE – VERSIÓN FINAL 2025 (NADA SE CORTA NUNCA) ================== */
@media (max-width: 1200px) {
  .container { padding: 0 60px; }
}

@media (max-width: 1024px) {
  .title-vision { font-size: 82px; letter-spacing: -2.8px; }
  .title-art    { font-size: 66px; letter-spacing: -2.2px; }
  .what-is-section, .brokers-section, .for-who-section, .performance-section, .pricing-section, .final-proof-section {
    padding: 180px 0;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 40px; }

  /* Títulos gigantes – AHORA SÍ ENTRAN PERFECTO */
  .title-vision { 
    font-size: 62px !important; 
    letter-spacing: -1.8px !important; 
    line-height: 1 !important;
  }
  .title-art { 
    font-size: 52px !important; 
    letter-spacing: -1.5px !important; 
    margin-bottom: 70px;
  }

  .hero-stats { 
    gap: 40px; 
    font-size: 42px; 
    flex-wrap: wrap;
  }
  .big-text { font-size: 23px; line-height: 2; }
  .for-who-list p { font-size: 28px; line-height: 2.1; }

  /* Brokers */
  .brokers-premium-grid { 
    gap: 60px;    flex-direction: column;    align-items: center;  }
  .broker-item { width: 90%; max-width: 420px; padding: 50px 30px; }

  /* Precios */
  .pricing-grid-new { grid-template-columns: 1fr; }
  .price-card-new.recommended { transform: scale(1.04); }

  /* Estadísticas finales */
  .final-stats-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .final-stat h3 { font-size: 58px; }
}

@media (max-width: 480px) {
  .container { padding: 0 30px; }

  /* Títulos en móviles pequeños – 100% SEGURO QUE NO SE CORTAN */
  .title-vision { 
    font-size: 50px !important; 
    letter-spacing: -1.2px !important; 
    line-height: 12 !important;
  }
  .title-art { 
    font-size: 42px !important; 
    letter-spacing: -1px !important; 
    margin-bottom: 60px;
    justify-content: center;
  }

  .big-text { font-size: 20px; line-height: 1.9; }
  .for-who-list p { font-size: 24px; }
  .btn-gold, .btn-new-gold, .btn-new-outline { 
    padding: 12px 40px; 
    font-size: 18px; 
  }

  /* Estadísticas finales en móvil pequeño */
  .final-stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .final-stat h3 { font-size: 52px; }
}

@media (max-width: 380px) {
  .title-vision { font-size: 42px !important; letter-spacing: -0.8px !important; }
  .title-art    { font-size: 38px !important; letter-spacing: -0.7px !important; }
  .container { padding: 0 20px; }
}

/* REDES SOCIALES WALLY GOLD 2025 – 100% CLAVADA A TU FOTO (FUNCIONA SÍ O SÍ) */
.redes-wally-2025 {
  padding: 180px 0 140px;
  background: #000;
  width: 100%;
}

.redes-subtitle {
  font-size: 26px;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 90px;
  font-weight: 500;
}

.redes-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.redes-card {
  display: flex;
  align-items: center;
  background: rgba(30,30,30,0.98);
  border: 2.5px solid #d4af37;
  border-radius: 34px;
  padding: 40px 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
}

.redes-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(212,175,55,0.25);
  border-color: #d4af37;
}

.redes-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-right: 40px;
  border: 4px solid #d4af37;
  background: #000;
  flex-shrink: 0;
}

.redes-icon.telegram { color: #25c0d4; }
.redes-icon.instagram { color: #E4405F; }
.redes-icon.tiktok { color: #ff0050; }

.redes-text h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
}

.redes-text h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #d4af37;
  border-radius: 2px;
}

.redes-text p {
  font-size: 19px;
  color: #ccc;
  margin: 0 0 8px 0;
}

.redes-count {
  font-size: 24px;
  font-weight: 900;
  color: #d4af37;
}

.redes-arrow {
  margin-left: auto;
  font-size: 42px;
  color: #d4af37;
  font-weight: bold;
  transition: transform 0.35s ease;
}

.redes-card:hover .redes-arrow {
  transform: translateX(16px);
}

/* Responsive */
@media (max-width: 768px) {
  .redes-card {
    padding: 32px 38px;
  }
  .redes-icon {
    width: 76px;
    height: 76px;
    font-size: 42px;
    margin-right: 30px;
  }
  .redes-text h3 {
    font-size: 32px;
  }
  .redes-count {
    font-size: 22px;
  }
}