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

  :root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #b8941f 100%);
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: visible;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
  }


  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    pointer-events: none;
  }

  /* ============================================
    LOADER CON PUMA RUGIENDO
    ============================================ */
  .loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1500 0%, #000000 70%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
  }

  .loader.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(212,175,55,0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(212,175,55,0.15) 0%, transparent 50%);
    animation: pulseGlow 3s ease-in-out infinite;
  }

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

  .loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  /* CONTAINER DEL VIDEO DEL PUMA */
  .puma-video-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
      0 0 60px rgba(212, 175, 55, 0.6),
      0 0 120px rgba(212, 175, 55, 0.3),
      inset 0 0 80px rgba(0, 0, 0, 0.5);
    animation: pumaEntrance 1.2s ease-out, pulseGlowBox 3s ease-in-out infinite 1.2s;
    border: 3px solid rgba(212, 175, 55, 0.5);
  }

  @keyframes pumaEntrance {
    0% {
      transform: scale(0.3);
      opacity: 0;
    }
    60% {
      transform: scale(1.05);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes pulseGlowBox {
    0%, 100% {
      box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.6),
        0 0 120px rgba(212, 175, 55, 0.3);
    }
    50% {
      box-shadow: 
        0 0 80px rgba(212, 175, 55, 0.9),
        0 0 160px rgba(212, 175, 55, 0.5);
    }
  }

  /* VIDEO */
  .puma-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Overlay con viñeta dorada */
  .video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle,
      transparent 40%,
      rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
  }

  /* Ondas de rugido alrededor del video */
  .puma-video-container::before,
  .puma-video-container::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: roarWave 2.5s ease-out infinite;
    pointer-events: none;
  }

  .puma-video-container::after {
    animation-delay: 1.2s;
  }

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

  /* Botón de sonido (aparece si el navegador bloquea audio) */
  .sound-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: #000;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
  }

  .sound-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.8);
  }

  .sound-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

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

  .puma-container::before,
  .puma-container::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: roarWave 2s ease-out infinite;
    pointer-events: none;
  }

  .puma-container::after {
    animation-delay: 1s;
  }

  @keyframes roarWave {
    0% {
      transform: scale(0.5);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  .loader-logo-anim {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: white;
    margin-top: 1rem;
    opacity: 0;
    animation: logoAppear 1s ease-out 1.5s forwards;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }

  .loader-logo-anim span {
    background: linear-gradient(90deg, #b8941f, #f4d03f, #ffffff, #f4d03f, #b8941f);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 2s linear infinite;
  }

  @keyframes logoAppear {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.8);
      letter-spacing: 20px;
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      letter-spacing: 8px;
    }
  }

  .loader-subtitle {
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: #d4af37;
    margin-top: 1rem;
    opacity: 0;
    animation: subtitleAppear 1s ease-out 2.2s forwards;
  }

  @keyframes subtitleAppear {
    to { opacity: 1; }
  }

  .loader-bar {
    width: 300px;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem auto 0;
    opacity: 0;
    animation: barAppear 1s ease-out 2.5s forwards;
  }

  @keyframes barAppear {
    to { opacity: 1; }
  }

  .loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #b8941f, #f4d03f, #b8941f);
    animation: load 2s ease forwards 2.5s;
  }

  @keyframes load {
    to { width: 100%; }
  }

  @media (max-width: 768px) {
    .puma-video-container {
      width: 320px;
      height: 320px;
    }
    .loader-logo-anim {
      font-size: 2.2rem;
      letter-spacing: 5px;
    }
    .loader-subtitle {
      font-size: 0.75rem;
      letter-spacing: 3px;
    }
    .loader-bar {
      width: 250px;
    }
    .puma-container::before,
    .puma-container::after {
      width: 280px;
      height: 280px;
    }
  }

  #particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
  }

  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
  }
  .logo {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: white;
  }
  .logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
  }
  .nav-links a:hover {
    color: var(--gold);
  }
  .btn-nav {
    background: var(--gradient-gold);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(212,175,55,0.3);
  }
  .btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.6);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .gold-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
  }
  .orb1 { width: 500px; height: 500px; background: var(--gold); top: -100px; left: -100px; }
  .orb2 { width: 400px; height: 400px; background: var(--gold-dark); bottom: -100px; right: -100px; animation-delay: -4s; }
  .orb3 { width: 300px; height: 300px; background: var(--gold-light); top: 50%; left: 50%; opacity: 0.15; animation-delay: -2s; }

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

  .hero-content {
    max-width: 1100px;
    position: relative;
    z-index: 2;
  }
  .logo-text-xl {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1;
  }
  .gold-shine {
    background: linear-gradient(90deg, #b8941f 0%, #f4d03f 25%, #ffffff 50%, #f4d03f 75%, #b8941f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
  }
  @keyframes shine {
    to { background-position: 200% center; }
  }

  .hero-tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin: 2rem 0 1.5rem;
    font-weight: 300;
  }
  .highlight { color: var(--gold); font-weight: 600; }

  .hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-subtitle { color: #999; font-size: 1.1rem; margin-bottom: 3rem; }

  .value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
    margin: 2rem 0;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(212,175,55,0.05);
  }
  .value-badge i { color: var(--gold); }
  .big-price {
    font-size: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.5rem;
  }

  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: var(--gradient-gold);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-top: 2rem;
    font-size: 1rem;
    transition: all 0.4s;
    box-shadow: 0 10px 40px rgba(212,175,55,0.4);
  }
  .btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212,175,55,0.7);
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
  }
  .stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label { color: #888; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }

  .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
  }
  .wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
  }
  @keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
  }

  /* SECCIONES */
  .section { padding: 3.5rem 5%; position: relative; }
  .container { max-width: 1300px; margin: 0 auto; }
  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }
  .section-subtitle { text-align: center; color: #999; font-size: 1.1rem; margin-bottom: 4rem; }

  /* WHY */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
  }
  .why-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(0,0,0,0.5));
    border: 1px solid rgba(212,175,55,0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s;
  }
  .why-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212,175,55,0.2);
  }
  .why-icon { font-size: 3rem; margin-bottom: 1.5rem; }
  .why-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--gold); font-weight: 700; }
  .why-card p { color: #bbb; font-size: 0.95rem; }

  .trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    padding: 2rem;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
  }
  .trust-item i { color: var(--gold); font-size: 1.3rem; }

  /* TESTIMONIOS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  .phone-mockup {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 1rem;
    border: 2px solid var(--gold);
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(212,175,55,0.2);
    transition: transform 0.4s;
  }
  .phone-mockup:hover { transform: translateY(-10px) rotate(2deg); }
  .chat-header {
    background: #075e54;
    color: white;
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
  }
  .chat-name { font-weight: 600; font-size: 0.95rem; }
  .chat-status { font-size: 0.75rem; opacity: 0.8; }
  .chat-body {
    background: #0a0a0a;
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .message { padding: 0.8rem 1rem; border-radius: 12px; font-size: 0.85rem; max-width: 85%; color: white; }
  .message.received { background: #1f2c34; align-self: flex-start; }
  .message.sent { background: #005c4b; align-self: flex-end; }
  .message .time { display: block; font-size: 0.7rem; opacity: 0.6; margin-top: 0.3rem; text-align: right; }

  /* BENEFITS */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  .benefit-card {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    color: #000;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
  }
  .benefit-card:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(212,175,55,0.5);
  }
  .benefit-icon { font-size: 3.5rem; margin-bottom: 1rem; color: #1a1a1a; }
  .benefit-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: 1px; }
  .benefit-card p { font-size: 0.9rem; color: #2a2a2a; }

  /* BONOS */
  .bonus-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
  .bonus-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(0,0,0,0.5));
    border: 1px solid rgba(212,175,55,0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s;
  }
  .bonus-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
  }
  .bonus-num { font-size: 3rem; flex-shrink: 0; }
  .bonus-info h4 { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
  .bonus-info p { color: #ccc; }
  .bonus-info strong { color: var(--gold-light); }

  /* PACKS */
  .packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
  }
  .pack-card {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s;
  }
  .pack-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(212,175,55,0.3);
  }
  .pack-card.premium {
    background: linear-gradient(135deg, #1a1500, #0a0a0a);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212,175,55,0.2);
  }
  .pack-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .pack-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .pack-subtitle { color: #ccc; font-size: 0.95rem; margin-bottom: 1rem; }
  .pack-logo { margin: 2rem 0; }
  .logo-text-lg {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.15em;
  }
  .pack-features { list-style: none; text-align: left; margin: 2rem 0; }
  .pack-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ddd;
  }
  .pack-features i { color: var(--gold); }
  .pack-price { margin: 2rem 0; }
  .price-old { color: #666; text-decoration: line-through; font-size: 1.1rem; }
  .price-new { font-size: 1.3rem; color: var(--gold); font-weight: 700; margin-top: 0.5rem; }
  .price-new span { font-size: 3rem; font-weight: 900; }
  .btn-pack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-gold);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.4s;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  .btn-pack:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212,175,55,0.6);
  }
  .pack-trust {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #888;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pack-trust i { color: var(--gold); margin-right: 0.3rem; }

  /* FOOTER */
  footer {
    background: #050505;
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.2);
  }
  .footer-logo { font-size: 2rem; margin-bottom: 1rem; }
  footer p { color: #888; font-size: 0.95rem; margin-bottom: 1rem; }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-icons a:hover {
    background: var(--gradient-gold);
    color: #000;
    transform: translateY(-5px);
  }
  .copyright { color: #555; font-size: 0.85rem; margin-top: 2rem; }

  /* ============================================
     MOBILE — diseño completo para celular
     ============================================ */
  @media (max-width: 768px) {

    /* NAV */
    .nav-links { display: none; }
    .btn-nav   { display: none; }

    /* HERO */
    .hero {
      padding-top: 5rem;
      padding-bottom: 3rem;
      text-align: center;
      min-height: auto;
    }
    .hero-content { padding: 0 1.2rem; }

    /* Logo ULTRA BLACK en móvil — animación CSS simple sin JS */
    .logo-text-xl {
      font-size: clamp(2.8rem, 16vw, 4rem);
      letter-spacing: 0.1em;
      animation: logoFadeUp 0.8s ease both;
    }
    .logo-text-xl.gold-shine { animation-delay: 0.15s; }

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

    /* Badges flotantes del hero — ocultar en móvil (tapan contenido) */
    .hero-floating-badge { display: none; }

    /* Gold orbs — reducir en móvil */
    .gold-orb { width: 150px; height: 150px; }

    /* Tagline y títulos */
    .hero-tagline  { font-size: 0.95rem; margin: 1.2rem 0 1rem; }
    .hero-title    { font-size: clamp(1.2rem, 5vw, 1.8rem); }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }

    /* Value badge */
    .value-badge {
      padding: 0.7rem 1.2rem;
      font-size: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .big-price { font-size: 1.1rem; }

    /* Stats */
    .hero-stats {
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 2rem;
    }
    .stat-num  { font-size: 1.8rem; }
    .stat-label{ font-size: 0.75rem; }

    /* Por qué — single column */
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 1.5rem; }

    /* Beneficios — single column */
    .benefits-grid { grid-template-columns: 1fr !important; }

    /* Packs — single column */
    .packs-grid { grid-template-columns: 1fr; }
    .pack-card  { padding: 2rem 1.5rem; }

    /* Sección ecosystem / hub cards */
    .hub-grid { grid-template-columns: 1fr !important; }

    /* Bonus items */
    .bonus-grid { grid-template-columns: 1fr !important; }

    /* Section titles */
    .section-title    { font-size: clamp(1.5rem, 6vw, 2rem); }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 2rem; }

    /* CTA btn */
    .btn-cta {
      width: 100%;
      max-width: 340px;
      justify-content: center;
      font-size: 0.85rem;
      padding: 1rem 1.5rem;
    }

    /* Pack btn */
    .btn-pack {
      width: 100%;
      justify-content: center;
    }

    /* Scroll down */
    .scroll-down { display: none; }

    /* FAQ */
    .faq-section { padding: 50px 1rem; }
    .faq-list    { margin: 1.5rem 0 0; }
    .faq-question{ font-size: 0.9rem; padding: 1rem 1rem; }

    /* Video */
    .video-container { height: 220px; }

    /* Footer social */
    .social-icons { gap: 1rem; }
    .social-icons a { width: 38px; height: 38px; font-size: 0.9rem; }

    /* Ticker */
    .ticker-section { font-size: 0.8rem; }

    /* Floating badges en paralax */
    .hero-parallax-bg { display: none; }

    /* Fondeo panel */
    .fondeo-size-grid      { grid-template-columns: repeat(3, 1fr); }
    .fondeo-challenge-grid { grid-template-columns: 1fr; }
    .fondeo-panel          { padding: 1.2rem; }
    .fondeo-sum-total #fondeo-total-price { font-size: 1.8rem; }

    /* Comparativa table — scroll horizontal */
    .tabla-comparativa-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    /* Ocultar efectos pesados en móvil */
    .card-spotlight { display: none; }
  }

  @media (max-width: 480px) {
    .logo-text-xl  { font-size: clamp(2.2rem, 14vw, 3rem); }
    .hero-title    { font-size: 1.1rem; }
    .pack-card     { padding: 1.5rem 1rem; }
    .hero-stats    { gap: 1rem; }
    .fondeo-size-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* BARRA DE PROGRESO DORADA */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #b8941f, #f4d03f, #ffffff, #f4d03f, #b8941f);
    background-size: 200% 100%;
    animation: shineProgress 2s linear infinite;
    z-index: 9998;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transition: width 0.1s ease;
  }

  @keyframes shineProgress {
    to { background-position: 200% center; }
  }

  /* GLOW PULSANTE EN BOTÓN CTA */
  .btn-cta {
    animation: ctaGlow 3s ease-in-out infinite;
  }

  @keyframes ctaGlow {
    0%, 100% {
      box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }
    50% {
      box-shadow: 0 10px 60px rgba(212, 175, 55, 0.8),
                  0 0 100px rgba(212, 175, 55, 0.3);
    }
  }

  /* SUBRAYADO ANIMADO EN MENÚ */
  .nav-links a {
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* ============================================
    TESTIMONIOS CON CELULARES - PREMIUM
  ============================================ */

  .testimonials {
    position: relative;
    overflow: hidden;
  }

  /* Glow dorado de fondo */
  .testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }

  /* Grid de Testimonios */
  .testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: center;
  }

  /* Tarjeta del celular */
  .testimonio-phone {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: phoneFloat 4s ease-in-out infinite;
  }

  .testimonio-phone img {
    width: 100%;
    height: auto;
    max-width: 380px;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
  }

  /* Flotación con tiempos distintos */
  .testimonio-phone:nth-child(2) {
    animation-delay: -1.5s;
  }

  .testimonio-phone:nth-child(3) {
    animation-delay: -2.5s;
  }

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

  /* Glow dorado detrás del teléfono */
  .testimonio-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(
      ellipse at center,
      rgba(212, 175, 55, 0.4) 0%,
      rgba(212, 175, 55, 0.1) 40%,
      transparent 70%
    );
    filter: blur(40px);
    opacity: 0.6;
    z-index: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes glowPulse {
    0%, 100% { 
      opacity: 0.4;
      transform: translate(-50%, -50%) scale(1);
    }
    50% { 
      opacity: 0.8;
      transform: translate(-50%, -50%) scale(1.1);
    }
  }

  /* Efecto Hover */
  .testimonio-phone:hover {
    animation-play-state: paused;
    transform: translateY(-20px) scale(1.05);
    z-index: 5;
  }

  .testimonio-phone:hover img {
    filter: drop-shadow(0 30px 60px rgba(212, 175, 55, 0.6));
  }

  .testimonio-phone:hover .testimonio-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
  }

  /* Tarjeta destacada (la del medio) */
  .testimonio-phone.destacado {
    transform: scale(1.1);
  }

  .testimonio-phone.destacado:hover {
    transform: scale(1.15) translateY(-20px);
  }

  .testimonio-phone.destacado .testimonio-glow {
    background: radial-gradient(
      ellipse at center,
      rgba(212, 175, 55, 0.6) 0%,
      rgba(212, 175, 55, 0.2) 40%,
      transparent 70%
    );
  }

  /* Badge VERIFICADO */
  .badge-verificado {
    position: absolute;
    top: 20px;
    right: 0px;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.6);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
    transform: rotate(8deg);
  }

  @keyframes badgePulse {
    0%, 100% { 
      transform: rotate(8deg) scale(1);
      box-shadow: 0 4px 20px rgba(0, 200, 83, 0.6);
    }
    50% { 
      transform: rotate(8deg) scale(1.1);
      box-shadow: 0 4px 30px rgba(0, 200, 83, 0.9);
    }
  }

  /* CTA debajo de testimonios */
  .testimonios-cta {
    text-align: center;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
  }

  .testimonios-text {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .testimonios-text strong {
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }

  /* RESPONSIVE - Tablet */
  @media (max-width: 968px) {
    .testimonios-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .testimonio-phone.destacado {
      transform: scale(1);
    }
    
    .testimonio-phone:nth-child(3) {
      grid-column: 1 / -1;
      max-width: 380px;
      margin: 0 auto;
    }
  }

  /* RESPONSIVE - Móvil */
  @media (max-width: 600px) {
    .testimonios-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 350px;
    }
    
    .testimonio-phone.destacado {
      transform: scale(1);
    }
    
    .testimonio-phone:nth-child(3) {
      grid-column: auto;
    }
    
    .badge-verificado {
      font-size: 0.65rem;
      padding: 0.4rem 0.8rem;
    }
    
    .testimonios-text {
      font-size: 1.1rem;
    }
    
    .testimonios-text strong {
      font-size: 1.4rem;
    }
  }

  /* ============================================
    🎯 CURSOR PERSONALIZADO DORADO MÁGICO
  ============================================ */

  /* Oculta cursor normal en desktop */
  @media (min-width: 968px) {
    * {
      cursor: none !important;
    }
  }

  /* Punto pequeño dorado */
  .cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
  box-shadow: 0 0 15px var(--gold), 0 0 30px rgba(212, 175, 55, 0.5);
  mix-blend-mode: difference;
}

  /* Círculo grande que sigue al punto */
  .cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999998;
  transform: translate(-50%, -50%);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

  /* Cuando pasas sobre botones/enlaces */
  .cursor-outline.hover {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-light);
    box-shadow: 
      0 0 40px rgba(212, 175, 55, 0.6),
      inset 0 0 20px rgba(212, 175, 55, 0.2);
  }

  .cursor-dot.hover {
    width: 0;
    height: 0;
  }

  /* Cuando haces click */
  .cursor-outline.click {
    width: 30px;
    height: 30px;
    background: var(--gold);
  }

  /* Oculta en móvil */
  @media (max-width: 968px) {
    .cursor-dot, .cursor-outline {
      display: none;
    }
  }

  /* ============================================
    🎴 EFECTO TILT 3D EN TARJETAS
  ============================================ */

  .why-card,
  .benefit-card,
  .bonus-item,
  .pack-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease;
  }

  /* Brillo que sigue al mouse en cards */
  .tilt-card {
    position: relative;
    overflow: hidden;
  }

  .tilt-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(
      circle,
      rgba(212, 175, 55, 0.4) 0%,
      transparent 70%
    );
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
  }

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

  .tilt-card > * {
    position: relative;
    z-index: 2;
  }

  /* ============================================
    ✨ NÚMEROS QUE CUENTAN HACIA ARRIBA
  ============================================ */

  .counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
  }

  .stat-num {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: numberGlow 3s ease-in-out infinite;
  }

  @keyframes numberGlow {
    0%, 100% {
      text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
    50% {
      text-shadow: 
        0 0 40px rgba(212, 175, 55, 0.8),
        0 0 80px rgba(212, 175, 55, 0.3);
    }
  }

  /* ============================================
    🔔 NOTIFICACIONES DE VENTAS EN VIVO
  ============================================ */

  .live-notification {
    position: fixed;
    bottom: 110px;
    right: 20px;
    left: auto;
    background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(10,10,10,0.95));
    border: 1px solid rgba(212,175,55,0.6);
    border-radius: 16px;
    padding: 0.85rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.15);
    z-index: 8999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
    max-width: 300px;
    backdrop-filter: blur(20px);
    pointer-events: none;
  }

  .live-notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .live-notification-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }

  .live-notification-content {
    flex: 1;
    min-width: 0;
  }

  .live-notification-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }

  .live-notification-title strong {
    color: var(--gold);
  }

  .live-notification-time {
    color: #888;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .live-notification-time::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e676;
    animation: livePulse 1.5s ease-in-out infinite;
  }

  @keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .live-notification-check {
    color: #00e676;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  @media (max-width: 600px) {
    .live-notification {
      bottom: 90px;
      right: 10px;
      left: auto;
      max-width: none;
    }
  }

  /* ============================================
    ⏰ CONTADOR REGRESIVO DE OFERTA
  ============================================ */

  .countdown-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.5));
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
  }

  .countdown-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(212, 175, 55, 0.3),
      transparent
    );
    transform: rotate(35deg);
    animation: countdownShine 4s linear infinite;
  }

  @keyframes countdownShine {
    0% { left: -100%; }
    100% { left: 200%; }
  }

  .countdown-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }

  .countdown-title i {
    animation: bell 2s ease-in-out infinite;
    display: inline-block;
  }

  @keyframes bell {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
  }

  .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
  }

  .countdown-box {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    min-width: 90px;
    transition: all 0.3s;
  }

  .countdown-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  }

  .countdown-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  .countdown-label {
    color: #999;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.5rem;
  }

  @media (max-width: 600px) {
    .countdown-box {
      padding: 1rem;
      min-width: 70px;
    }
    .countdown-number {
      font-size: 1.8rem;
    }
  }

/* Cambia color de fondo del menú cuando bajas el scroll */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97) !important;
}

/* ===== ECOSISTEMA HUB ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 850px) {
  .hub-grid { grid-template-columns: 1fr; }
}

.hub-card {
  position: relative;
  background: linear-gradient(135deg, rgba(212,175,55,0.04), rgba(0,0,0,0.6));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(212,175,55,0.25);
}
.hub-card:hover .hub-card-glow {
  opacity: 1;
}
.hub-card:hover .hub-cta {
  background: var(--gradient-gold);
  color: #000;
  padding-left: 2rem;
}
.hub-card:hover .hub-cta i {
  transform: translateX(5px);
}

.hub-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212,175,55,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.hub-card-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
}

.hub-module-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  user-select: none;
}

.hub-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.hub-title {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  color: #fff;
}

.hub-desc {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hub-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hub-features li {
  color: #ccc;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hub-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  user-select: none;
}
.hub-cta i {
  transition: transform 0.3s ease;
}

/* ============================================
   SCROLLYTELLING
============================================ */
.story-section {
  position: relative;
  background: #000;
}
.story-sticky { display: contents; }
.story-chapter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  background: #000;
}
.story-chapter:not(:last-child) {
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.story-chapter.active-ch { display: flex; }
.story-chapter-icon {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.story-chapter-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.story-chapter-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.1;
}
.story-chapter-desc {
  color: #aaa;
  font-size: clamp(0.85rem, 1.6vw, 0.98rem);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 1rem;
}
.story-chapter-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.story-chapter-stats div {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 0.8rem 1.4rem;
  font-size: 0.82rem;
  color: #bbb;
}
.story-chapter-stats span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 2px;
}
.story-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}
.story-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212,175,55,0.25);
  border: 2px solid rgba(212,175,55,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
.story-dot.active {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(212,175,55,0.8);
  transform: scale(1.4);
}
.story-progressbar {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background: rgba(212,175,55,0.15);
  border-radius: 2px;
  z-index: 3;
}
.story-progressbar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.2s ease;
}
.story-scroll-hint {
  position: absolute;
  bottom: 22px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(212,175,55,0.5);
  font-size: 0.65rem;
  letter-spacing: 2px;
  animation: hintBob 1.5s ease-in-out infinite;
  z-index: 3;
}
@keyframes hintBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* ============================================
   CÓMO FUNCIONA
============================================ */
.como-section { background: #050505; }
.como-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.como-step {
  text-align: center;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(135deg, #0a0a0a, #111);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.como-step:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.15);
}
.como-step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.como-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
}
.como-step h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}
.como-step p { color: #888; font-size: 0.9rem; line-height: 1.7; }
.como-connector {
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--gradient-gold);
  z-index: 1;
}

@media (max-width: 768px) {
  .story-section  { height: 400vh; }
  .story-dots     { right: 12px; }
  .story-chapter-stats { gap: 0.8rem; }
  .story-chapter-stats div { padding: 0.6rem 1rem; font-size: 0.78rem; }
  .story-scroll-hint { display: none; }
  .como-steps     { grid-template-columns: 1fr; }
  .como-connector { display: none; }
}


/* ============================================
   TESTIMONIOS CAROUSEL
============================================ */
.testi-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.testi-track-wrap {
  overflow: hidden;
  flex: 1;
  border-radius: 12px;
}
.testi-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.testi-track .testimonio-phone {
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 0;
}
.testi-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.testi-arrow:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.testi-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212,175,55,0.25);
  border: 1px solid rgba(212,175,55,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .testi-track .testimonio-phone { flex: 0 0 85%; }
  .testi-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* ============================================
   HERO PARALLAX MOUSE
============================================ */
.hero-parallax-layer {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ============================================
   STICKY CTA BAR (sub-páginas)
============================================ */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: linear-gradient(90deg, #0a0a0a 0%, #111 100%);
  border-top: 1px solid rgba(212,175,55,0.4);
  padding: 0.85rem 2rem;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.6);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  gap: 1rem;
}
.sticky-cta-text {
  color: #ccc;
  font-size: 0.95rem;
}
.sticky-cta-text strong { color: var(--gold); font-size: 1.1rem; }
@media (max-width: 600px) {
  .sticky-cta-inner { flex-direction: column; text-align: center; gap: 0.6rem; }
  .sticky-cta-text { font-size: 0.82rem; }
}

/* WhatsApp Flotante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: pulse-whatsapp 2s infinite;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* FAQ */
.faq-section {
  padding: 80px 20px;
  background: #0a0a0a;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: rgba(212, 175, 55, 0.05);
  border: none;
  padding: 20px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.faq-question span {
  color: #D4AF37;
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-question.active span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: #aaa;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* BANNER URGENCIA */
.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #8B0000, #D4AF37, #8B0000);
  background-size: 200% auto;
  animation: urgencyShine 3s linear infinite;
  z-index: 99999;
  padding: 10px 20px;
  display: none;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.urgency-banner.visible {
  display: block;
  transform: translateY(0);
}

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

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.urgency-icon {
  font-size: 18px;
  animation: pulse 1s infinite;
}

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

.urgency-text {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.urgency-btn {
  background: #000;
  color: #D4AF37;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
  white-space: nowrap;
}

.urgency-btn:hover {
  background: #D4AF37;
  color: #000;
}

.urgency-close {
  background: none;
  border: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
  padding: 0 5px;
  line-height: 1;
}

/* Compensar el espacio del banner en el navbar */
body.has-banner .navbar {
  top: 41px;
}

/* Banner urgencia */
body.has-banner .navbar {
  top: 41px;
}

/* Padding correcto para páginas secundarias */
.modulo-hero {
  padding-top: 13rem !important;
}

/* EFECTO GLITCH EN NÚMEROS — INTENSIFICADO */
@keyframes glitch {
  0%   { transform: translate(0) scale(1); clip-path: none; }
  5%   { transform: translate(-6px, 0) scale(1.02); filter: hue-rotate(90deg); }
  10%  { transform: translate(6px, 0) scale(0.98); }
  15%  { transform: translate(0, -4px) skewX(5deg); }
  20%  { transform: translate(-4px, 4px) skewX(-3deg); }
  25%  { transform: translate(4px, -2px) scale(1.03); }
  30%  { transform: translate(0) scale(1); filter: none; }
  70%  { transform: translate(0) scale(1); }
  72%  { transform: translate(-3px, 0) skewX(2deg); filter: hue-rotate(180deg); }
  74%  { transform: translate(3px, 0); }
  76%  { transform: translate(0); filter: none; }
  100% { transform: translate(0) scale(1); }
}

@keyframes glitchColor {
  0%   { color: #D4AF37; text-shadow: 4px 0 #ff00ff, -4px 0 #00ffff, 0 0 20px rgba(212,175,55,0.8); }
  10%  { color: #fff; text-shadow: -4px 0 #ff0000, 4px 0 #00ffff, 0 0 30px #fff; }
  20%  { color: #f4d03f; text-shadow: 3px 0 #00ffff, -3px 0 #ff00ff; }
  30%  { color: #D4AF37; text-shadow: 0 0 15px rgba(212,175,55,0.6); }
  70%  { color: #D4AF37; text-shadow: none; }
  72%  { color: #fff8dc; text-shadow: 3px 0 #ff0000, -3px 0 #00ffff; }
  76%  { color: #D4AF37; text-shadow: none; }
  100% { color: #D4AF37; text-shadow: none; }
}

.stat-num.glitching,
.countdown-number.glitching,
.modulo-stat-num.glitching {
  animation: glitch 1.2s steps(1, end) both, glitchColor 1.2s steps(1, end) both !important;
}

/* EFECTO SCROLL REVEAL DRAMÁTICO */
.reveal-text {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text:nth-child(1) { transition-delay: 0.1s; }
.reveal-text:nth-child(2) { transition-delay: 0.2s; }
.reveal-text:nth-child(3) { transition-delay: 0.3s; }
.reveal-text:nth-child(4) { transition-delay: 0.4s; }

/* EFECTO LÍNEA QUE CRECE */
.gold-line {
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  margin: 1rem auto;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.gold-line.visible {
  width: 100px;
}

/* ============================================
   FONDEO PANEL — integrado en sección de packs
   ============================================ */
.fondeo-card { cursor: pointer; }
.fondeo-toggle-btn { pointer-events: none; width: 100%; justify-content: center; }

.fondeo-panel {
  margin-top: 2.5rem;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  padding: 2.5rem;
  animation: panelSlideIn 0.4s cubic-bezier(0.16,1,0.3,1);
}

.fondeo-panel.hidden { display: none; }

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

.fondeo-step { margin-bottom: 2rem; }

.fondeo-step-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

/* SIZE GRID */
.fondeo-size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

/* CHALLENGE GRID */
.fondeo-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* OPTION CARDS */
.fondeo-opt {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.22s ease;
  user-select: none;
}

.fondeo-opt:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.07);
  transform: translateY(-2px);
}

.fondeo-opt.selected {
  border-color: var(--gold);
  background: rgba(212,175,55,0.13);
  box-shadow: 0 0 18px rgba(212,175,55,0.22);
}

.fondeo-opt.popular { border-color: rgba(212,175,55,0.35); }

.fopt-check {
  position: absolute;
  top: 6px; right: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.fondeo-opt.selected .fopt-check { opacity: 1; }

.fopt-icon  { font-size: 1.6rem; margin-bottom: 0.3rem; }
.fopt-size  { font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 0.2rem; }
.fopt-desc  { font-size: 0.75rem; color: #888; line-height: 1.4; }
.fopt-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.12rem 0.5rem;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* SUMMARY */
.fondeo-summary {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  animation: panelSlideIn 0.3s ease;
}

.fondeo-summary.hidden { display: none; }

.fondeo-summary-lines { margin-bottom: 1rem; }

.fondeo-sum-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: #bbb;
  gap: 1rem;
}

.fsum-val { color: var(--gold); font-weight: 700; white-space: nowrap; }

.fondeo-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 1px;
}

#fondeo-total-price {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--gold);
  animation: pricePop 0.3s cubic-bezier(0.16,1,0.3,1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .fondeo-size-grid      { grid-template-columns: repeat(3, 1fr); }
  .fondeo-challenge-grid { grid-template-columns: 1fr; }
  .fondeo-panel          { padding: 1.5rem; }

  /* Elimina parpadeo AOS en móvil — los elementos aparecen directo sin animación */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 480px) {
  .fondeo-size-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   PACK CONFIGURADOR INTERACTIVO
   ============================================ */
.pack-configurator {
  padding: 80px 20px;
  background: #030303;
}

.configurador-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.config-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.config-step {
  background: rgba(212,175,55,0.03);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.config-step.hidden { display: none; }

.config-step.done {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.05);
}

.step-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.5px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--gradient-gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* TYPE OPTIONS — Esencial vs Fondeo */
.type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* SIZE OPTIONS */
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* CHALLENGE OPTIONS */
.challenge-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.config-option {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  user-select: none;
}

.config-option:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.06);
  transform: translateY(-2px);
}

.config-option.selected {
  border-color: var(--gold);
  background: rgba(212,175,55,0.12);
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
}

.size-option {
  flex: 1;
  min-width: 100px;
}

.option-emoji { font-size: 1.6rem; margin-bottom: 0.4rem; }
.option-name  { font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 0.25rem; }
.option-desc  { font-size: 0.78rem; color: #888; line-height: 1.4; }
.option-from  { color: var(--gold); font-size: 0.85rem; font-weight: 700; margin-top: 0.4rem; }

.option-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.option-check {
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.config-option.selected .option-check { opacity: 1; }

/* RESUMEN FINAL */
.config-summary {
  background: linear-gradient(135deg, rgba(212,175,55,0.09), rgba(0,0,0,0.6));
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 20px;
  padding: 2rem;
}

.config-summary.hidden { display: none; }

.summary-lines {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 1.2rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: #ccc;
  gap: 1rem;
}

.summary-line .val { color: var(--gold); font-weight: 700; white-space: nowrap; }

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 1.5rem;
}

.summary-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summary-total-price {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  animation: pricePop 0.3s cubic-bezier(0.16,1,0.3,1);
}

@keyframes pricePop {
  from { transform: scale(0.85); opacity: 0.5; }
  to   { transform: scale(1);    opacity: 1;   }
}

.config-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.config-cta-note {
  color: #555;
  font-size: 0.78rem;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .type-options      { grid-template-columns: 1fr; }
  .challenge-options { grid-template-columns: 1fr; }
  .size-options      { gap: 0.5rem; }
  .size-option       { min-width: 80px; }
  .config-step       { padding: 1.2rem; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #b8941f, #d4af37, #f4d03f, #d4af37, #b8941f);
  background-size: 200% auto;
  z-index: 99999;
  box-shadow: 0 0 12px rgba(212,175,55,0.9), 0 0 30px rgba(212,175,55,0.4);
  animation: shimmerBar 2s linear infinite;
  pointer-events: none;
}

@keyframes shimmerBar {
  to { background-position: 200% center; }
}

/* ============================================
   SHIMMER EN BOTONES CTA
   ============================================ */
.btn-cta,
.btn-pack {
  overflow: hidden;
}

/* Botones PayPal personalizados */
.pp-custom-wrap {
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-btn-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: #FFC439;
  color: #003087;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.pp-btn-paypal:hover { background: #f0b429; transform: translateY(-1px); }
.pp-btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: #2C2E2F;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.pp-btn-card:hover { background: #444; transform: translateY(-1px); }
.pp-powered {
  text-align: center;
  color: #555;
  font-size: 0.72rem;
  margin-top: 2px;
}

.btn-cta::after,
.btn-pack::after {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 10%,
    rgba(255,255,255,0.15) 30%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.15) 70%,
    transparent 90%
  );
  transform: skewX(-20deg);
  animation: btnShimmer 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes btnShimmer {
  0%   { left: -140%; opacity: 0; }
  10%  { opacity: 1; }
  65%  { left: 160%; opacity: 1; }
  66%  { opacity: 0; }
  100% { left: 160%; opacity: 0; }
}

/* ============================================
   HERO LETTER ANIMATION — DRAMATIC
   ============================================ */
@keyframes letterDrop {
  0% {
    opacity: 0;
    transform: translateY(-120px) rotateX(90deg) scale(1.8);
    filter: blur(20px) brightness(3);
    text-shadow: 0 0 60px rgba(212,175,55,0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(8px) rotateX(-8deg) scale(0.95);
    filter: blur(0) brightness(1.4);
  }
  80% {
    transform: translateY(-3px) rotateX(4deg) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0) brightness(1);
  }
}

.logo-letter {
  display: inline-block;
  animation: letterDrop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-style: preserve-3d;
}

/* Cuando el JS fragmenta .gold-shine en spans, el background-clip:text del padre
   deja de tener texto directo y las letras quedan invisibles.
   Propagamos el gradiente a cada span para que funcione. */
.gold-shine .logo-letter {
  background: linear-gradient(90deg, #b8941f 0%, #f4d03f 30%, #fff8dc 50%, #f4d03f 70%, #b8941f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   CARD SPOTLIGHT (luz que sigue el cursor)
   ============================================ */
.card-spotlight {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.why-card:hover .card-spotlight,
.benefit-card:hover .card-spotlight,
.pack-card:hover .card-spotlight,
.hub-card:hover .card-spotlight,
.bonus-item:hover .card-spotlight {
  opacity: 1;
}

/* Z-index fix para que el spotlight no tape el contenido */
.why-card > *:not(.card-spotlight),
.benefit-card > *:not(.card-spotlight),
.pack-card > *:not(.card-spotlight):not(.pack-card-light):not(.pack-card-hologram),
.hub-card > *:not(.card-spotlight),
.bonus-item > *:not(.card-spotlight) {
  position: relative;
  z-index: 1;
}

/* Asegurar que los overlays del pack-card permanezcan absolutos */
.pack-card-light,
.pack-card-hologram {
  position: absolute !important;
  z-index: 0 !important;
}

/* ============================================
   NÚMERO CONTADOR — evita salto de layout
   ============================================ */
.stat-num[data-counter] {
  min-width: 80px;
  display: inline-block;
}

/* ============================================
   3D TILT — pack cards
   ============================================ */
.pack-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* ============================================
   LUZ DESDE ARRIBA EN PACK CARDS (hover)
   ============================================ */
.pack-card {
  position: relative;
}
.pack-card-light {
  position: absolute;
  top: -100%;
  left: -10%;
  width: 120%;
  height: 80%;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.22) 0%,
    rgba(244, 208, 63, 0.08) 60%,
    transparent 100%
  );
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  pointer-events: none;
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
  opacity: 0;
  z-index: 0;
  filter: blur(8px);
}
.pack-card:hover .pack-card-light {
  top: -20%;
  opacity: 1;
}

/* ============================================
   TILT CARDS — ecosistema (más pronunciado)
   ============================================ */
.tilt-card {
  transition: box-shadow 0.4s ease;
  will-change: transform;
}

/* ============================================
   MAGNETIC BTN — evita que el btn salte
   ============================================ */
.btn-cta,
.btn-pack {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img {
  content-visibility: auto;
}
/* ============================================
   DESIGN UPGRADES — premium animations
   ============================================ */

/* ── Custom easing vars (Emil Kowalski philosophy) ── */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── Button shimmer sweep ── */
.btn-cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo) !important;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 25%, rgba(255,255,255,0.45) 50%, transparent 75%);
  transform: translateX(-120%);
  border-radius: inherit;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-cta:hover::before {
    transform: translateX(120%);
    transition: transform 0.55s var(--ease-out-expo);
  }
  .btn-cta:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 20px 60px rgba(212,175,55,0.75),
                0 0 0 1px rgba(212,175,55,0.3) !important;
  }
}
.btn-cta:active {
  transform: scale(0.97) !important;
  transition-duration: 0.1s !important;
}

/* ── "¿Cómo funciona?" — scroll reveal ── */
.como-steps-reveal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  margin: 3rem auto 0;
}
.como-step-reveal {
  background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(0,0,0,0.5));
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  animation: stepFadeIn 0.7s var(--ease-out-expo) both;
  border-color: rgba(212,175,55,0.12);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.como-step-reveal:nth-child(1) { animation-delay: 0.1s; }
.como-step-reveal:nth-child(2) { animation-delay: 0.3s; }
.como-step-reveal:nth-child(3) { animation-delay: 0.5s; }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(36px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.como-step-num-big {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}
.como-step-reveal h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
}
.como-step-reveal p { color: #999; font-size: 0.9rem; line-height: 1.6; }
.como-step-icon-big {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
@media (max-width: 768px) {
  .como-steps-reveal { grid-template-columns: 1fr; }
  .como-step-reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Scroll parallax hero — JS drives these ── */
.hero-parallax-title {
  will-change: transform;
  transition: none;
}

/* ── Story chapters — stagger entrance ── */
.story-chapter {
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}
.story-chapter.ch-hidden {
  opacity: 0;
  transform: translateY(30px);
}
.story-chapter-stats > div {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo);
}
.story-chapter.ch-visible .story-chapter-stats > div:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.15s; }
.story-chapter.ch-visible .story-chapter-stats > div:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.25s; }
.story-chapter.ch-visible .story-chapter-stats > div:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.35s; }

/* ── Exit popup — animated ── */
#exitPopup {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#exitPopup.ep-open {
  opacity: 1;
  visibility: visible;
}
.exit-popup-inner {
  transform: scale(0.88) translateY(24px);
  transition: transform 0.45s var(--ease-out-expo);
}
#exitPopup.ep-open .exit-popup-inner {
  transform: scale(1) translateY(0);
}

/* ── Countdown — urgent redesign ── */
.countdown-banner {
  border: 2px solid rgba(212,175,55,0.6) !important;
  animation: countdownPulse 2.5s ease-in-out infinite !important;
}
@keyframes countdownPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212,175,55,0.15), 0 0 0 0 rgba(212,175,55,0.4); }
  50%       { box-shadow: 0 0 60px rgba(212,175,55,0.35), 0 0 0 8px rgba(212,175,55,0); }
}
.countdown-number {
  color: #fff !important;
  text-shadow: 0 0 20px rgba(212,175,55,0.6);
}
.countdown-box {
  position: relative;
  overflow: hidden;
}
.countdown-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212,175,55,0.06), transparent);
  pointer-events: none;
}

/* ── Ticker enhancement ── */
.ticker-track span {
  letter-spacing: 2.5px;
  font-weight: 700;
}
.ticker-track .ticker-sep {
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.6em;
  vertical-align: middle;
}

/* ── prefers-reduced-motion ──
   OJO: muchos Windows reportan "reduce" sin que el usuario lo haya pedido
   (ajuste de fábrica / ahorro de energía). Por eso NO se apaga todo:
   solo lo intrusivo (partículas, loops infinitos, parallax); los hovers,
   fades y transiciones funcionales se mantienen. */
@media (prefers-reduced-motion: reduce) {
  .como-step-reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .btn-cta::before { display: none; }
}

/* ================================================
   SCROLL-DRIVEN ANIMATIONS (Chrome 115+)
   Fallback: animaciones CSS normales en browsers viejos
   ================================================ */

/* Hero parallax — fondo se mueve lento, contenido fade out */
.hero-parallax-bg {
  will-change: transform;
}
.hero-content {
  will-change: transform, opacity;
}

/* Secciones que entran desde abajo */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Secciones que entran desde izquierda */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.scroll-reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Secciones que entran desde derecha */
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.scroll-reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Escala desde pequeño */
.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.scroll-reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* CSS Scroll-Driven nativo (Chrome 115+) */
@supports (animation-timeline: scroll()) {

  /* Cards "¿Cómo funciona?" — se revelan exactamente mientras scrolleas */
  .como-step-reveal {
    animation: stepFadeIn linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 45%;
  }
  .como-step-reveal:nth-child(1) { animation-delay: 0s; }
  .como-step-reveal:nth-child(2) { animation-delay: 0s; }
  .como-step-reveal:nth-child(3) { animation-delay: 0s; }

  /* Hero — fondo se mueve a 30% de velocidad (parallax real) */
  .hero-parallax-bg {
    animation: heroBgParallax linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 100vh;
  }
  @keyframes heroBgParallax {
    from { transform: translateY(0); }
    to   { transform: translateY(30vh); }
  }

  /* Hero content — se aleja y desvanece mientras bajas */
  .hero-content {
    animation: heroContentFade linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 70vh;
  }
  @keyframes heroContentFade {
    from { transform: translateY(0) scale(1); opacity: 1; }
    to   { transform: translateY(-60px) scale(0.96); opacity: 0; }
  }

  /* Feature cards — entran en vista mientras scrolleas */
  .feature-card, .pack-card, .benefit-card {
    animation: cardSlideUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
  @keyframes cardSlideUp {
    from { opacity: 0; transform: translateY(50px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Secciones de texto — fade lateral */
  .section-title {
    animation: titleReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }
  @keyframes titleReveal {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Story chapters — alternan izq/der */
  .story-chapter:nth-child(odd) {
    animation: slideFromLeft linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 40%;
  }
  .story-chapter:nth-child(even) {
    animation: slideFromRight linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 40%;
  }
  @keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideFromRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* Testimonios — rotación sutil */
  .testimonial-card {
    animation: testimonialIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
  @keyframes testimonialIn {
    from { opacity: 0; transform: translateY(40px) rotate(-1deg); }
    to   { opacity: 1; transform: translateY(0) rotate(0deg); }
  }

  /* Stat numbers — zoom in */
  .stat-number, .hero-stat-number {
    animation: statPop linear both;
    animation-timeline: view();
    animation-range: entry 10% entry 50%;
  }
  @keyframes statPop {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Desactiva fallback de reveal cuando scroll-driven está activo */
  .scroll-reveal, .scroll-reveal-left, .scroll-reveal-right, .scroll-reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   ██╗   ██╗██╗  ████████╗██████╗  █████╗     ██████╗ ██╗      █████╗  ██████╗██╗  ██╗
   ██║   ██║██║  ╚══██╔══╝██╔══██╗██╔══██╗    ██╔══██╗██║     ██╔══██╗██╔════╝██║ ██╔╝
   ██║   ██║██║     ██║   ██████╔╝███████║    ██████╔╝██║     ███████║██║     █████╔╝
   ██║   ██║██║     ██║   ██╔══██╗██╔══██║    ██╔══██╗██║     ██╔══██║██║     ██╔═██╗
   ╚██████╔╝███████╗██║   ██║  ██║██║  ██║    ██████╔╝███████╗██║  ██║╚██████╗██║  ██╗
    ╚═════╝ ╚══════╝╚═╝   ╚═╝  ╚═╝╚═╝  ╚═╝    ╚═════╝ ╚══════╝╚═╝  ╚═╝ ╚═════╝╚═╝  ╚═╝
   ULTRA BLACK — PREMIUM ANIMATION SUITE v3.0
   ============================================================ */

/* ─────────────────────────────────────────────
   LOADER ÉPICO — CORONA + RAYOS + RINGS
───────────────────────────────────────────── */

/* Corona sobre el puma */
.loader-crown {
  width: 130px;
  margin: 0 auto 0.5rem;
  opacity: 0;
  transform: translateY(-30px) scale(0.6) rotate(-10deg);
  animation: crownDrop 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
  filter: drop-shadow(0 0 20px rgba(244,208,63,0.9))
          drop-shadow(0 0 40px rgba(212,175,55,0.6));
}
@keyframes crownDrop {
  0%   { opacity:0; transform: translateY(-50px) scale(0.4) rotate(-15deg); }
  60%  { opacity:1; transform: translateY(8px) scale(1.12) rotate(3deg); }
  80%  { transform: translateY(-4px) scale(0.97) rotate(-1deg); }
  100% { opacity:1; transform: translateY(0) scale(1) rotate(0deg); }
}

/* Animación continua de la corona */
.loader-crown svg {
  animation: crownShine 2s linear 1.6s infinite;
}
@keyframes crownShine {
  0%,100% { filter: brightness(1); }
  50%     { filter: brightness(1.5) drop-shadow(0 0 15px #f4d03f); }
}

/* Rayos de luz */
.loader-rays {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: raysAppear 0.8s ease 1.0s forwards;
}
@keyframes raysAppear {
  to { opacity: 1; }
}
.loader-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  background: linear-gradient(to top, rgba(212,175,55,0), rgba(212,175,55,0.6) 40%, rgba(255,248,220,0.9) 70%, rgba(212,175,55,0));
  transform-origin: bottom center;
  border-radius: 2px;
  animation: rayPulse 3s ease-in-out infinite;
}
.loader-ray:nth-child(1) { height: 280px; transform: translateX(-50%) rotate(0deg) translateY(-100%); animation-delay: 0s; }
.loader-ray:nth-child(2) { height: 260px; transform: translateX(-50%) rotate(45deg) translateY(-100%); animation-delay: 0.4s; }
.loader-ray:nth-child(3) { height: 300px; transform: translateX(-50%) rotate(90deg) translateY(-100%); animation-delay: 0.8s; }
.loader-ray:nth-child(4) { height: 250px; transform: translateX(-50%) rotate(135deg) translateY(-100%); animation-delay: 1.2s; }
.loader-ray:nth-child(5) { height: 280px; transform: translateX(-50%) rotate(180deg) translateY(-100%); animation-delay: 0.2s; }
.loader-ray:nth-child(6) { height: 260px; transform: translateX(-50%) rotate(225deg) translateY(-100%); animation-delay: 0.6s; }
.loader-ray:nth-child(7) { height: 300px; transform: translateX(-50%) rotate(270deg) translateY(-100%); animation-delay: 1.0s; }
.loader-ray:nth-child(8) { height: 250px; transform: translateX(-50%) rotate(315deg) translateY(-100%); animation-delay: 1.4s; }

@keyframes rayPulse {
  0%,100% { opacity: 0.2; }
  50%     { opacity: 0.85; }
}

/* Anillos de energía (shockwave) */
.loader-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  pointer-events: none;
}
.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.6);
  width: 520px;
  height: 520px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  opacity: 0;
  animation: ringExpand 3s cubic-bezier(0.22,1,0.36,1) infinite;
}
.loader-ring:nth-child(2) { animation-delay: 1s; border-color: rgba(244,208,63,0.4); }
.loader-ring:nth-child(3) { animation-delay: 2s; border-color: rgba(184,148,31,0.3); }

@keyframes ringExpand {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}

/* Canvas de partículas del loader */
.loader-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Brillo interior del puma */
.puma-inner-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%,
    rgba(212,175,55,0.2) 0%,
    rgba(212,175,55,0.05) 40%,
    transparent 70%
  );
  animation: innerGlowPulse 2s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
@keyframes innerGlowPulse {
  0%,100% { opacity: 0.6; }
  50%     { opacity: 1; }
}

/* Transición de salida del loader — épica */
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1),
              visibility 1.2s,
              transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.loader {
  transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1),
              visibility 1.2s,
              transform 1.2s cubic-bezier(0.22,1,0.36,1);
}

/* ─────────────────────────────────────────────
   AURORA DE FONDO — ORB FLOTANTES ÉPICOS
───────────────────────────────────────────── */
.bg-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  animation: auroraFloat 12s ease-in-out infinite;
}
.aurora-orb-1 {
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.12) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-duration: 14s;
}
.aurora-orb-2 {
  width: 600px; height: 700px;
  background: radial-gradient(ellipse, rgba(184,148,31,0.10) 0%, transparent 70%);
  bottom: -200px; right: -200px;
  animation-delay: -7s;
  animation-duration: 18s;
}
.aurora-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(244,208,63,0.08) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: -3.5s;
  animation-duration: 10s;
}
@keyframes auroraFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  25%     { transform: translate(60px,-40px) scale(1.1); }
  50%     { transform: translate(-30px,70px) scale(0.92); }
  75%     { transform: translate(80px,30px) scale(1.05); }
}

/* ─────────────────────────────────────────────
   SWEEP DE LUZ DIAGONAL — recorre la página
───────────────────────────────────────────── */
.light-sweep {
  position: fixed;
  top: -100%;
  left: -40%;
  width: 20%;
  height: 300%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,175,55,0.04) 40%,
    rgba(244,208,63,0.08) 50%,
    rgba(212,175,55,0.04) 60%,
    transparent 100%
  );
  transform: rotate(20deg);
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes lightSweep {
  0%,100% { left: -40%; opacity: 0; }
  10%     { opacity: 1; }
  60%     { left: 140%; opacity: 1; }
  70%     { opacity: 0; }
  71%,99% { left: -40%; opacity: 0; }
}
@media (max-width: 768px) { .light-sweep, .bg-aurora { display: none; } }

/* ─────────────────────────────────────────────
   HERO — ENTRADA SPLIT (ULTRA ← y → BLACK)
───────────────────────────────────────────── */
.hero-split-left {
  display: inline-block;
  opacity: 0;
  transform: translateX(-120px) skewX(-8deg);
  animation: splitFromLeft 1s cubic-bezier(0.22,1,0.36,1) 3.2s forwards;
}
.hero-split-right {
  display: inline-block;
  opacity: 0;
  transform: translateX(120px) skewX(8deg);
  animation: splitFromRight 1s cubic-bezier(0.22,1,0.36,1) 3.3s forwards;
}
@keyframes splitFromLeft {
  0%   { opacity:0; transform: translateX(-120px) skewX(-8deg) scale(0.8); filter: blur(12px); }
  70%  { filter: blur(0); }
  100% { opacity:1; transform: translateX(0) skewX(0) scale(1); filter: blur(0); }
}
@keyframes splitFromRight {
  0%   { opacity:0; transform: translateX(120px) skewX(8deg) scale(0.8); filter: blur(12px); }
  70%  { filter: blur(0); }
  100% { opacity:1; transform: translateX(0) skewX(0) scale(1); filter: blur(0); }
}

/* Hero scan line */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  top: -2px;
  animation: heroScan 4s ease-in-out 3.5s infinite;
  pointer-events: none;
  z-index: 5;
}
@keyframes heroScan {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { top: 100%; opacity: 0; }
}
@media (max-width: 768px) {
  .hero-split-left, .hero-split-right { animation: none; opacity:1; transform:none; }
  .hero::after { display: none; }
}

/* ─────────────────────────────────────────────
   NAVBAR — GLASSMORPHISM PREMIUM + INDICADOR
───────────────────────────────────────────── */
.navbar {
  background: rgba(0,0,0,0.6) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border-bottom: 1px solid rgba(212,175,55,0.15) !important;
  transition: background 0.4s ease, box-shadow 0.4s ease !important;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.92) !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.8), 0 1px 0 rgba(212,175,55,0.2) !important;
}

/* Logo animado — brillo al hover */
.logo {
  position: relative;
  transition: filter 0.3s ease;
}
.logo:hover {
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
}

/* ─────────────────────────────────────────────
   PACK CARDS — HOLOGRAPHIC BORDER
───────────────────────────────────────────── */
.pack-card.premium {
  background: linear-gradient(135deg, #1a1500, #0a0a0a) !important;
  position: relative;
}
.pack-card.premium::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(
    var(--hologram-angle, 135deg),
    #b8941f, #f4d03f, #fff8dc, #f4d03f,
    #b8941f, #f4d03f, #b8941f
  );
  background-size: 300% 300%;
  z-index: -1;
  animation: hologramShift 4s linear infinite;
}
.pack-card.premium::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1a1500, #0a0a0a);
  z-index: -1;
}
@keyframes hologramShift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Card corner highlights */
.pack-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 2px solid rgba(212,175,55,0.6);
  border-left: 2px solid rgba(212,175,55,0.6);
  border-radius: 25px 0 0 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.pack-card:hover::before {
  width: 60px; height: 60px;
  border-color: rgba(244,208,63,0.9);
  box-shadow: -5px -5px 20px rgba(212,175,55,0.3);
}

/* Inner hologram shimmer on any pack card */
.pack-card-hologram {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(212,175,55,0.06) 30%,
    rgba(244,208,63,0.12) 45%,
    rgba(255,248,220,0.08) 50%,
    rgba(244,208,63,0.12) 55%,
    rgba(212,175,55,0.06) 70%,
    transparent 80%
  );
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
  animation: hologramMove 3s linear infinite;
}
.pack-card:hover .pack-card-hologram {
  opacity: 1;
}
@keyframes hologramMove {
  0%   { background-position: -100% -100%; }
  100% { background-position: 100% 100%; }
}

/* ─────────────────────────────────────────────
   HUB CARDS — ENHANCED
───────────────────────────────────────────── */
.hub-card {
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
}
.hub-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hub-card:hover::after { opacity: 1; }

/* ─────────────────────────────────────────────
   WHY CARDS — BORDER ANIMATION
───────────────────────────────────────────── */
.why-card {
  position: relative;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.5s ease;
}
.why-card:hover::after {
  width: 90%;
  left: 5%;
}

/* ─────────────────────────────────────────────
   BONUS ITEMS — ENHANCED HOVER
───────────────────────────────────────────── */
.bonus-item {
  position: relative;
  overflow: hidden;
}
.bonus-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 0;
  background: var(--gradient-gold);
  border-radius: 4px 0 0 4px;
  transition: height 0.4s ease;
}
.bonus-item:hover::before { height: 100%; }

/* ─────────────────────────────────────────────
   SCROLL REVEAL — WORD BY WORD
───────────────────────────────────────────── */
.word-reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(40deg);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  transform-origin: bottom center;
  transform-style: preserve-3d;
}
.word-reveal-word.word-revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ─────────────────────────────────────────────
   STAT NUMBERS — SLOT MACHINE WRAPPER
───────────────────────────────────────────── */
.slot-number-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.slot-number-inner {
  display: flex;
  flex-direction: column;
  animation: none;
}
.slot-number-inner.spinning {
  animation: slotSpin 0.1s steps(1, end) infinite;
}
@keyframes slotSpin {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   CURSOR DOT — ENHANCED GLOW
───────────────────────────────────────────── */
.cursor-dot {
  box-shadow:
    0 0 8px var(--gold),
    0 0 20px rgba(212,175,55,0.6),
    0 0 40px rgba(212,175,55,0.3) !important;
}
.cursor-outline {
  box-shadow:
    0 0 20px rgba(212,175,55,0.3),
    0 0 40px rgba(212,175,55,0.1) !important;
}
.cursor-outline.hover {
  box-shadow:
    0 0 40px rgba(212,175,55,0.7),
    0 0 80px rgba(212,175,55,0.3),
    inset 0 0 30px rgba(212,175,55,0.15) !important;
}

/* ─────────────────────────────────────────────
   VALUE BADGE — ANIMATED BORDER
───────────────────────────────────────────── */
.value-badge {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(0,0,0,0.6)) !important;
  animation: valueBadgePulse 3s ease-in-out infinite;
}
@keyframes valueBadgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); border-color: var(--gold); }
  50%     { box-shadow: 0 0 30px rgba(212,175,55,0.3); border-color: var(--gold-light); }
}
.value-badge::before {
  content: '';
  position: absolute;
  top: -50%; left: -100%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(20deg);
  animation: badgeShine 4s ease-in-out infinite;
}
@keyframes badgeShine {
  0%,100% { left: -100%; }
  50%     { left: 200%; }
}

/* ─────────────────────────────────────────────
   HERO STATS — ENHANCED
───────────────────────────────────────────── */
.stat {
  position: relative;
  padding: 1.5rem 2rem;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  transition: all 0.4s ease;
  cursor: default;
}
.stat:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}
.stat.animated .stat-num {
  animation: statReveal 0.5s ease-out both;
}
@keyframes statReveal {
  from { opacity:0; transform: scale(0.7) translateY(10px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

/* ─────────────────────────────────────────────
   SCROLL DOWN — ENHANCED
───────────────────────────────────────────── */
.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-down-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(212,175,55,0.5);
  text-transform: uppercase;
  animation: labelFade 2s ease-in-out infinite;
}
@keyframes labelFade {
  0%,100% { opacity: 0.3; }
  50%     { opacity: 0.7; }
}

/* ─────────────────────────────────────────────
   SECTION TITLES — GRADIENT UNDERLINE
───────────────────────────────────────────── */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #b8941f, #f4d03f, #b8941f);
  background-size: 200% auto;
  margin: 0.5rem auto 0;
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.22,1,0.36,1);
  animation: shimmerBar 2s linear infinite;
}
.section-title.title-animated::after {
  width: 60%;
}

/* ─────────────────────────────────────────────
   MOBILE MENU — ENHANCED
───────────────────────────────────────────── */
.mobile-menu {
  background: rgba(0,0,0,0.97) !important;
  backdrop-filter: blur(20px) !important;
}

/* ─────────────────────────────────────────────
   LIVE NOTIFICATION — ENHANCED
───────────────────────────────────────────── */
.live-notification {
  box-shadow:
    0 10px 40px rgba(0,0,0,0.5),
    0 0 0 1px rgba(212,175,55,0.3),
    0 0 30px rgba(212,175,55,0.15) !important;
}
.live-notification.show {
  animation: notifBounce 0.6s cubic-bezier(0.22,1,0.36,1) !important;
}
@keyframes notifBounce {
  0%   { transform: translateX(-110%) scale(0.8); }
  70%  { transform: translateX(8px) scale(1.02); }
  100% { transform: translateX(0) scale(1); }
}

/* ─────────────────────────────────────────────
   COUNTDOWN BOXES — FLIP EFFECT
───────────────────────────────────────────── */
.countdown-box {
  transform-style: preserve-3d;
}
.countdown-number.flip {
  animation: flipNumber 0.3s ease both !important;
}
@keyframes flipNumber {
  0%   { transform: rotateX(0deg); }
  50%  { transform: rotateX(-90deg); opacity:0.5; }
  100% { transform: rotateX(0deg); opacity:1; }
}

/* ─────────────────────────────────────────────
   BACKGROUND GRID — ANIMATED PULSE
───────────────────────────────────────────── */
body::before {
  animation: gridPulse 6s ease-in-out infinite !important;
}
@keyframes gridPulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.5; }
}

/* ─────────────────────────────────────────────
   HERO ORB ENHANCED
───────────────────────────────────────────── */
.gold-orb {
  animation: orbFloat 8s ease-in-out infinite !important;
}
.orb1 {
  background: radial-gradient(ellipse, rgba(212,175,55,0.35), rgba(184,148,31,0.15), transparent 70%) !important;
  width: 700px !important; height: 700px !important;
  animation-duration: 12s !important;
}
.orb2 {
  background: radial-gradient(ellipse, rgba(184,148,31,0.3), rgba(212,175,55,0.1), transparent 70%) !important;
  width: 500px !important; height: 500px !important;
  animation-duration: 15s !important;
  animation-delay: -7s !important;
}
.orb3 {
  background: radial-gradient(ellipse, rgba(244,208,63,0.18), rgba(212,175,55,0.05), transparent 70%) !important;
  width: 400px !important; height: 400px !important;
  animation-duration: 10s !important;
  animation-delay: -3s !important;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); filter: blur(120px); }
  25%     { transform: translate(40px,-60px) scale(1.1); filter: blur(100px); }
  50%     { transform: translate(-30px,50px) scale(0.9); filter: blur(140px); }
  75%     { transform: translate(60px,30px) scale(1.05); filter: blur(110px); }
}
@media (max-width: 768px) {
  .orb1 { width: 200px !important; height: 200px !important; }
  .orb2 { width: 150px !important; height: 150px !important; }
  .orb3 { width: 120px !important; height: 120px !important; }
}

/* ─────────────────────────────────────────────
   FLOATING BADGES — ENHANCED PHYSICS
───────────────────────────────────────────── */
.hero-floating-badge {
  position: absolute;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(212,175,55,0.4);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.1);
  z-index: 3;
  transition: transform 0.3s ease;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: badgeFadeIn 0.8s var(--ease-out-expo) forwards;
}
.hero-floating-badge i { color: var(--gold); font-size: 0.9rem; }
.hero-floating-badge:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.7);
  box-shadow: 0 12px 40px rgba(212,175,55,0.3);
}
.hfb-1 { top: 25%; left: 5%; animation-delay: 3.6s; }
.hfb-2 { top: 20%; right: 5%; animation-delay: 3.8s; }
.hfb-3 { bottom: 30%; left: 3%; animation-delay: 4.0s; }
.hfb-4 { bottom: 25%; right: 3%; animation-delay: 4.2s; }

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* Float continuo después de aparecer */
.hfb-1 { animation: badgeFadeIn 0.8s var(--ease-out-expo) 3.6s forwards, hfbFloat1 5s ease-in-out 4.4s infinite; }
.hfb-2 { animation: badgeFadeIn 0.8s var(--ease-out-expo) 3.8s forwards, hfbFloat2 6s ease-in-out 4.6s infinite; }
.hfb-3 { animation: badgeFadeIn 0.8s var(--ease-out-expo) 4.0s forwards, hfbFloat3 4.5s ease-in-out 4.8s infinite; }
.hfb-4 { animation: badgeFadeIn 0.8s var(--ease-out-expo) 4.2s forwards, hfbFloat4 5.5s ease-in-out 5.0s infinite; }
@keyframes hfbFloat1 { 0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-12px) rotate(1deg)} }
@keyframes hfbFloat2 { 0%,100%{transform:translateY(0) rotate(1deg)}50%{transform:translateY(-10px) rotate(-1deg)} }
@keyframes hfbFloat3 { 0%,100%{transform:translateY(0) rotate(0.5deg)}50%{transform:translateY(-14px) rotate(-0.5deg)} }
@keyframes hfbFloat4 { 0%,100%{transform:translateY(0) rotate(-0.5deg)}50%{transform:translateY(-8px) rotate(0.5deg)} }

@media (max-width: 768px) {
  .hero-floating-badge { display: none; }
}

/* ─────────────────────────────────────────────
   RIPPLE DORADO EN BOTONES — UPGRADE
───────────────────────────────────────────── */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(212,175,55,0.4) 60%, transparent 100%);
  transform: scale(0);
  animation: rippleGold 0.7s linear;
  pointer-events: none;
  width: 8px; height: 8px;
  margin-left: -4px; margin-top: -4px;
}
@keyframes rippleGold {
  to { transform: scale(60); opacity: 0; }
}

/* ─────────────────────────────────────────────
   TICKER — ENHANCED
───────────────────────────────────────────── */
.ticker-section {
  background: linear-gradient(90deg, #000, #0a0800, #000) !important;
  border-top: 1px solid rgba(212,175,55,0.25) !important;
  border-bottom: 1px solid rgba(212,175,55,0.25) !important;
  box-shadow: 0 0 30px rgba(212,175,55,0.05) !important;
}

/* ─────────────────────────────────────────────
   SOUND BUTTON — posición original mantenida
───────────────────────────────────────────── */
/* Sin override de posición — usa la posición original: right:30px, bottom:30px */

/* ─────────────────────────────────────────────
   HERO PARALLAX BG
───────────────────────────────────────────── */
.hero-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.parallax-layer {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  to { transform: translate(80px, 80px); }
}
.parallax-layer-2 {
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 60%);
  animation: layer2Pulse 6s ease-in-out infinite;
}
@keyframes layer2Pulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%     { transform: scale(1.2); opacity: 1; }
}

/* ─────────────────────────────────────────────
   FOOTER — ENHANCED
───────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, #030303, #000) !important;
}
footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), rgba(244,208,63,0.8), rgba(212,175,55,0.5), transparent);
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   COMO SECTION — CONNECTOR ENHANCED
───────────────────────────────────────────── */
.como-step-icon {
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.3); }
  50%     { box-shadow: 0 0 0 8px rgba(212,175,55,0); }
}


/* ─────────────────────────────────────────────
   STICKY BUY BUTTON — ANIMACIONES
───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

#stickyBuy a {
  box-shadow: 0 4px 24px rgba(212,175,55,0.5), 0 0 0 0 rgba(212,175,55,0.3);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
#stickyBuy a:hover {
  box-shadow: 0 6px 36px rgba(212,175,55,0.7), 0 0 0 4px rgba(212,175,55,0.15);
  transform: scale(1.04);
}

/* ─────────────────────────────────────────────
   PAYMENT BADGES — GOLD THEME
───────────────────────────────────────────── */
.payment-badge {
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.06);
}

/* ─────────────────────────────────────────────
   OPTIMIZACIONES MOBILE COMPLETAS
   (Todas las mejoras añadidas — audit mobile)
───────────────────────────────────────────── */

/* Contador de visitas — ocultar en móvil (ocupa espacio en pantalla pequeña) */
@media (max-width: 768px) {
  #visitasCounter { display: none !important; }
}

/* Loader — ajustar tamaño de rayos y anillos en pantallas pequeñas */
@media (max-width: 600px) {
  .loader-crown { width: 90px !important; }

  /* Rayos de luz — reducir longitud */
  .loader-ray:nth-child(1) { height: 160px !important; }
  .loader-ray:nth-child(2) { height: 150px !important; }
  .loader-ray:nth-child(3) { height: 175px !important; }
  .loader-ray:nth-child(4) { height: 145px !important; }
  .loader-ray:nth-child(5) { height: 160px !important; }
  .loader-ray:nth-child(6) { height: 150px !important; }
  .loader-ray:nth-child(7) { height: 175px !important; }
  .loader-ray:nth-child(8) { height: 145px !important; }

  /* Anillos de energía — reducir radio */
  .loader-ring { width: 300px !important; height: 300px !important; }

  /* Texto del loader */
  .loader-subtitle { font-size: 0.75rem !important; letter-spacing: 0.2em !important; }
}

/* Sticky buy button — asegurar que no tape demasiado contenido en móvil */
@media (max-width: 480px) {
  #stickyBuy { bottom: 80px !important; }
  #stickyBuy a {
    padding: 12px 24px !important;
    font-size: 0.82rem !important;
  }
}

/* Notification en móvil — evitar overflow lateral */
@media (max-width: 380px) {
  .live-notification {
    right: 8px !important;
    left: 8px !important;
    max-width: calc(100vw - 16px) !important;
    bottom: 85px !important;
  }
}

/* AOS — deshabilitar en móvil para evitar flashes de contenido invisible */
@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Sección hero — evitar desbordamiento horizontal en pantallas muy pequeñas */
@media (max-width: 380px) {
  .hero-content { padding: 0 1rem !important; }
  .logo-text-xl { font-size: clamp(2.4rem, 14vw, 3.2rem) !important; }
  .hero-title   { font-size: clamp(1rem, 4.5vw, 1.5rem) !important; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.8rem) !important; }
  .btn-cta { font-size: 0.8rem !important; padding: 0.9rem 1.2rem !important; }
}

/* Pack cards — evitar overflow en pantallas pequeñas */
@media (max-width: 480px) {
  .pack-card { padding: 1.5rem 1.2rem !important; }
  .pack-name  { font-size: 1.1rem !important; }
  .pack-price { font-size: 2.2rem !important; }
}

/* Comparativa — scroll horizontal para tabla */
@media (max-width: 768px) {
  .tabla-comparativa, .tabla-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* FAQ — padding lateral ajustado en pantallas muy pequeñas */
@media (max-width: 380px) {
  .faq-question { padding: 0.9rem 0.8rem !important; font-size: 0.85rem !important; }
  .faq-answer   { font-size: 0.82rem !important; }
}

/* Footer — apilar en columna en pantallas muy pequeñas */
@media (max-width: 480px) {
  .footer-links { flex-direction: column !important; gap: 0.5rem !important; }
  .footer-copy  { font-size: 0.75rem !important; }
}

/* Ticker — velocidad adecuada en mobile (texto más lento para ser legible) */
@media (max-width: 768px) {
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker-track { animation-duration: 20s !important; }
}

/* WhatsApp button — no taparlo con stickyBuy */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px !important; }
}

/* ═══════════════════════════════════════════════════════════
   NUEVAS SECCIONES — ESTILOS
════════════════════════════════════════════════════════════ */

/* ── MAPA DEL ECOSISTEMA ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-align: center;
}

.eco-map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.eco-card {
  background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(8,8,8,0.98));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 1.8rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.eco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.eco-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 20px 60px rgba(212,175,55,0.12);
}
.eco-card:hover::before { opacity: 1; }

.eco-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.eco-icon { font-size: 2rem; line-height: 1; }
.eco-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.eco-card-count {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}
.eco-list {
  list-style: none;
  padding: 0; margin: 0 0 1.2rem;
}
.eco-list li {
  font-size: 0.82rem;
  color: #aaa;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.eco-list li:last-child { border-bottom: none; }
.eco-list li::before {
  content: '✦';
  position: absolute; left: 0;
  color: rgba(212,175,55,0.5);
  font-size: 0.6rem;
  top: 50%; transform: translateY(-50%);
}
.eco-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 0.25rem 0.8rem;
}

@media (max-width: 968px) { .eco-map-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .eco-map-grid { grid-template-columns: 1fr; } }

/* ── TRADING EN PROFUNDIDAD ── */
.trading-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0 0;
}
.trade-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50px;
  color: #888;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.trade-tab:hover {
  background: rgba(212,175,55,0.08);
  color: #D4AF37;
  border-color: rgba(212,175,55,0.5);
}
.trade-tab.active {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(184,150,12,0.15));
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,175,55,0.2);
}

.trade-panel { display: none; margin-top: 2.5rem; }
.trade-panel.active { display: block; }

.trade-panel-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(15,15,15,0.97), rgba(5,5,5,0.99));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  padding: 2.5rem;
  align-items: start;
}
.trade-panel-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}
.trade-panel-info > p {
  color: #aaa;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.trade-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.trade-mod {
  font-size: 0.82rem;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.trade-mod span { color: var(--gold); font-size: 0.7rem; margin-top: 2px; flex-shrink: 0; }

.trade-panel-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trade-stat-box {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  text-align: center;
}
.trade-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.trade-stat-label {
  font-size: 0.72rem;
  color: #888;
  margin-top: 0.3rem;
  line-height: 1.3;
}
.trade-panel-badge {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.08));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

@media (max-width: 850px) {
  .trade-panel-inner { grid-template-columns: 1fr; }
  .trade-panel-stats { flex-direction: row; flex-wrap: wrap; }
  .trade-stat-box { flex: 1; min-width: 120px; }
}
@media (max-width: 600px) {
  .trade-modules { grid-template-columns: 1fr; }
  .trading-tabs { gap: 0.4rem; }
  .trade-tab { padding: 0.5rem 1rem; font-size: 0.8rem; }
}

/* ── NEGOCIOS DIGITALES ── */
.negocios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.negocio-card {
  background: linear-gradient(135deg, rgba(14,14,14,0.97), rgba(5,5,5,0.99));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 18px;
  padding: 1.5rem 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.negocio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.negocio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 16px 50px rgba(212,175,55,0.1);
}
.negocio-card:hover::after { transform: scaleX(1); }
.negocio-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}
.negocio-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.negocio-card p {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.negocio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.negocio-tags span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #D4AF37;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 0.2rem 0.5rem;
}

@media (max-width: 968px) { .negocios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .negocios-grid { grid-template-columns: 1fr; } }

/* ── PARA QUIÉN ES ── */
.perfiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.perfil-card {
  background: linear-gradient(135deg, rgba(14,14,14,0.97), rgba(5,5,5,0.99));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.perfil-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 60px rgba(212,175,55,0.1);
}
.perfil-featured {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 40px rgba(212,175,55,0.1);
}
.perfil-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.perfil-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}
.perfil-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
}
.perfil-card > p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.perfil-list {
  list-style: none;
  padding: 0; margin: 0 0 1.2rem;
}
.perfil-list li {
  font-size: 0.82rem;
  color: #bbb;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.perfil-list li:last-child { border-bottom: none; }
.perfil-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: #00e676;
  font-size: 0.85rem;
  font-weight: 700;
}
.perfil-result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 0.6rem 1rem;
}

.no-para-ti {
  margin-top: 3rem;
  background: rgba(255,50,50,0.04);
  border: 1px solid rgba(255,80,80,0.15);
  border-radius: 18px;
  padding: 1.8rem 2rem;
}
.no-para-ti h4 {
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.no-para-ti-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.no-item {
  font-size: 0.82rem;
  color: #999;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.no-item i { color: #ff6b6b; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 850px) {
  .perfiles-grid { grid-template-columns: 1fr; }
  .no-para-ti-grid { grid-template-columns: 1fr; }
}

/* ── HERRAMIENTAS PREMIUM ── */
.herramientas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.herramienta-item {
  background: rgba(12,12,12,0.97);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
.herramienta-item:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
}
.herramienta-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.7rem;
}
.herramienta-name {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.herramienta-desc {
  font-size: 0.72rem;
  color: #777;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.herramienta-precio {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(212,175,55,0.7);
  text-decoration: line-through;
}

.herramientas-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(0,0,0,0.6));
  border: 2px solid rgba(212,175,55,0.35);
  border-radius: 20px;
  padding: 2rem 3rem;
  flex-wrap: wrap;
}
.total-left, .total-right { text-align: center; }
.total-label {
  font-size: 0.78rem;
  color: #777;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.total-price-tachado {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #555;
  text-decoration: line-through;
}
.total-divider {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 900;
}
.total-price-gold {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.total-price-gold span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00e676;
  letter-spacing: 2px;
  margin-top: 0.2rem;
}

@media (max-width: 850px) {
  .herramientas-grid { grid-template-columns: repeat(2, 1fr); }
  .herramientas-total { gap: 1.5rem; padding: 1.5rem; }
}
@media (max-width: 480px) {
  .herramientas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RUTA DE APRENDIZAJE ── */
.ruta-timeline {
  position: relative;
  margin-top: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ruta-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.1));
}
.ruta-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.ruta-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
  position: relative;
  z-index: 1;
}
.ruta-content {
  background: rgba(12,12,12,0.95);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 18px;
  padding: 1.5rem 1.8rem;
  flex: 1;
  transition: border-color 0.3s ease;
}
.ruta-content:hover { border-color: rgba(212,175,55,0.45); }
.ruta-content h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.ruta-content p {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.ruta-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ruta-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
}

@media (max-width: 600px) {
  .ruta-timeline::before { left: 25px; }
  .ruta-num { width: 52px; height: 52px; font-size: 0.9rem; }
  .ruta-step { gap: 1rem; }
  .ruta-content { padding: 1.2rem; }
}

/* ── BIBLIOTECA DIGITAL ── */
.biblioteca-showcase {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.bib-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bib-stat { text-align: center; }
.bib-num {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(212,175,55,0.4);
}
.bib-label {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.4rem;
  letter-spacing: 1px;
}
.bib-categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.bib-cat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: #ccc;
  transition: all 0.3s ease;
}
.bib-cat:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.45);
  color: var(--gold);
  transform: translateY(-2px);
}
.bib-cat i { color: var(--gold); }
.bib-cta-text {
  text-align: center;
  font-size: 1rem;
  color: #aaa;
  line-height: 1.8;
  max-width: 600px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}

@media (max-width: 600px) {
  .bib-stats { gap: 2rem; }
  .bib-num { font-size: 2.5rem; }
}

/* ============================================================
   CAPA DE MEJORAS 2026 — tabla comparativa, footer premium,
   back-to-top, spotlight en hub cards y accesibilidad
============================================================ */

/* ── TABLA COMPARATIVA PREMIUM ── */
.compare-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.25);
  background: linear-gradient(160deg, rgba(18,16,8,0.9), rgba(5,5,5,0.95));
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 1.05rem 1.4rem;
  text-align: center;
}
.compare-table td:first-child,
.compare-table th:first-child {
  text-align: left;
}
.ct-feature-h {
  color: #888;
  font-size: 0.82rem;
  letter-spacing: 2px;
  font-weight: 700;
  vertical-align: bottom;
}
.ct-ub-h {
  background: linear-gradient(180deg, rgba(212,175,55,0.14), rgba(212,175,55,0.05));
  border-bottom: 2px solid rgba(212,175,55,0.5);
}
.ct-brand {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  font-size: 1rem;
}
.ct-price {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.ct-ub-h small {
  color: #00e676;
  font-size: 0.72rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.ct-other-h {
  color: #666;
  letter-spacing: 2px;
}
.ct-brand-other {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #777;
}
.ct-price-other {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #666;
  text-decoration: line-through;
  text-decoration-color: rgba(255,80,80,0.6);
  line-height: 1.2;
}
.ct-other-h small {
  color: #555;
  font-size: 0.72rem;
  letter-spacing: 2px;
}
.compare-table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background 0.25s ease;
}
.compare-table tbody tr:hover {
  background: rgba(212,175,55,0.04);
}
.compare-table tbody td {
  color: #ccc;
  font-size: 0.95rem;
}
.compare-table tbody td.ct-yes {
  background: rgba(212,175,55,0.05);
  border-left: 1px solid rgba(212,175,55,0.2);
  border-right: 1px solid rgba(212,175,55,0.2);
}
.ct-yes i {
  color: #00e676;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(0,230,118,0.5));
}
.ct-no i {
  color: #ff5252;
  font-size: 1.1rem;
  opacity: 0.8;
}
.ct-total-row {
  border-top: 1px solid rgba(212,175,55,0.3) !important;
}
.ct-total-row td:first-child {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
}
.ct-total-ub {
  background: rgba(212,175,55,0.1);
  border-left: 1px solid rgba(212,175,55,0.35);
  border-right: 1px solid rgba(212,175,55,0.35);
}
.ct-total-price {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(212,175,55,0.4);
}
.ct-total-price-old {
  font-size: 1.7rem;
  font-weight: 900;
  color: #777;
  text-decoration: line-through;
}
.ct-total-note { font-size: 0.8rem; margin-top: 0.3rem; }
.ct-ok  { color: #00e676; }
.ct-bad { color: #ff5252; }

/* ── FOOTER PREMIUM MULTI-COLUMNA ── */
.footer-premium {
  background: linear-gradient(180deg, #050505 0%, #0a0800 100%);
  border-top: 1px solid rgba(212,175,55,0.25);
  position: relative;
  text-align: left;
  padding: 5rem 5% 2rem;
}
.footer-premium::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #fff8dc, #d4af37, transparent);
  background-size: 200% auto;
  animation: shine 4s linear infinite;
  opacity: 0.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-col .footer-logo { margin-bottom: 1rem; }
.footer-tagline {
  color: #888;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 1.5rem;
}
.footer-premium .social-icons {
  justify-content: flex-start;
  margin: 0;
}
.footer-col-title {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}
.footer-trust {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-trust span {
  color: #777;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-trust i { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.12);
  padding-top: 1.8rem;
  text-align: center;
}
.footer-bottom p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-premium { text-align: center; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-premium .social-icons { justify-content: center; }
  .footer-col-title::after { left: 50%; transform: translateX(-50%); }
  .footer-links a:hover { transform: none; }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.5);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}
@media (max-width: 768px) {
  /* más arriba en móvil para no chocar con el botón fijo de compra (bottom:100px) */
  .back-to-top { bottom: 165px; right: 16px; width: 44px; height: 44px; }
}

/* ── WHATSAPP FLOAT — tooltip "¿Dudas? Escríbenos" ── */
.whatsapp-float::after {
  content: '¿Dudas? Escríbenos 💬';
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(37,211,102,0.45);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
/* pista automática: aparece sola unos segundos tras cargar */
.whatsapp-float.visible::after {
  animation: waHint 6s ease 9s 1 backwards;
}
@keyframes waHint {
  0%, 100% { opacity: 0; transform: translateY(-50%) translateX(8px); }
  12%, 82% { opacity: 1; transform: translateY(-50%) translateX(0); }
}
@media (max-width: 480px) {
  .whatsapp-float::after { display: none; } /* en móvil no hay hover y tapa contenido */
}

/* ── TABLA COMPARATIVA — entrada escalonada de filas ── */
.compare-wrap.rows-prep tbody tr {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.compare-wrap.rows-prep.rows-in tbody tr {
  opacity: 1;
  transform: none;
}
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(1) { transition-delay: 0.05s; }
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(2) { transition-delay: 0.12s; }
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(3) { transition-delay: 0.19s; }
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(4) { transition-delay: 0.26s; }
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(5) { transition-delay: 0.33s; }
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(6) { transition-delay: 0.40s; }
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(7) { transition-delay: 0.47s; }
.compare-wrap.rows-prep.rows-in tbody tr:nth-child(8) { transition-delay: 0.58s; }

/* ── ACCESIBILIDAD — foco visible dorado con teclado ── */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-light, #f4d03f);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── VALUE STACK — el valor se acumula en vivo ── */
.vstack {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
/* los items solo se ocultan cuando el JS está listo (.vstack-ready) */
.vstack.vstack-ready .vstack-item {
  opacity: 0;
  transform: translateX(-34px);
}
.vstack .vstack-item.in {
  opacity: 1;
  transform: none;
}
.vstack-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(8,8,8,0.92));
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.vstack-item:hover {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 10px 35px rgba(212,175,55,0.12);
}
.vstack-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
}
.vstack-info { flex: 1; min-width: 0; }
.vstack-info h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.vstack-info p {
  color: #999;
  font-size: 0.83rem;
  line-height: 1.5;
}
.vstack-price {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}
.vstack-price-free {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #00e676;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
}
.vstack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 2px solid rgba(212,175,55,0.4);
  margin-top: 0.6rem;
  padding: 1.3rem 1.5rem 0.3rem;
  flex-wrap: wrap;
}
.vstack-total-label {
  color: #999;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.vstack-total-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-variant-numeric: tabular-nums;
}
/* tachado rojo diagonal cuando termina la suma */
.vstack-total.done .vstack-total-num::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 50%;
  height: 4px;
  background: #ff5252;
  border-radius: 3px;
  transform: rotate(-6deg) scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(255,82,82,0.6);
  animation: vstackStrike 0.45s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}
@keyframes vstackStrike {
  to { transform: rotate(-6deg) scaleX(1); }
}
.vstack-today {
  text-align: center;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: scale(0.92) translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.vstack-today.in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.vstack-today-label {
  color: #999;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
}
.vstack-today-price {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  filter: drop-shadow(0 0 25px rgba(212,175,55,0.45));
}
.vstack-today .btn-cta { margin-top: 1rem; }
@media (max-width: 560px) {
  .vstack-item { padding: 0.9rem 1rem; gap: 0.8rem; }
  .vstack-icon { font-size: 1.5rem; }
  .vstack-info h4 { font-size: 0.9rem; }
  .vstack-info p { font-size: 0.76rem; }
  .vstack-price { font-size: 0.95rem; }
  .vstack-total { padding: 1.1rem 1rem 0.2rem; }
}

/* ── VIDEO DEMO — HERRAMIENTAS PREMIUM ── */
.hvideo-outer {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.hvideo-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.16), transparent 70%);
  filter: blur(35px);
  pointer-events: none;
}
.hvideo-wrapper {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.35);
  background: #0a0a0a;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(212,175,55,0.12),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.hvideo-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.2rem;
  background: linear-gradient(180deg, #151208, #0a0a0a);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.hvideo-dots { display: flex; gap: 6px; flex-shrink: 0; }
.hvideo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hvideo-dots span:nth-child(1) { background: #ff5f57; }
.hvideo-dots span:nth-child(2) { background: #febc2e; }
.hvideo-dots span:nth-child(3) { background: #28c840; }
.hvideo-topbar-title {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #a8945a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hvideo-topbar-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 6px;
  padding: 2px 8px;
}
.hvideo-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at center, #16120a 0%, #050505 80%);
}
.hvideo-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.hvideo-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}
.hvideo-play-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #000;
  padding-left: 6px;
  box-shadow: 0 15px 40px rgba(212,175,55,0.4);
  animation: hvPulse 2s ease-out infinite;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.hvideo-play:hover .hvideo-play-circle {
  transform: scale(1.12);
}
@keyframes hvPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.5), 0 15px 40px rgba(212,175,55,0.4); }
  70%  { box-shadow: 0 0 0 28px rgba(212,175,55,0), 0 15px 40px rgba(212,175,55,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0), 0 15px 40px rgba(212,175,55,0.4); }
}
.hvideo-play-text {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 2px 15px rgba(0,0,0,0.8);
}
.hvideo-footer {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.2rem;
  background: #0c0a04;
  border-top: 1px solid rgba(212,175,55,0.15);
  color: #999;
  font-size: 0.82rem;
}
.hvideo-footer i { color: var(--gold); margin-right: 6px; }
.hvideo-footer strong { color: #fff; }
@media (max-width: 560px) {
  .hvideo-play-circle { width: 70px; height: 70px; font-size: 1.4rem; }
  .hvideo-play-text { font-size: 0.72rem; letter-spacing: 2px; }
  .hvideo-footer { gap: 1rem; font-size: 0.72rem; }
  .hvideo-topbar-title { font-size: 0.58rem; }
}

/* ── PUMA SCROLL — animación controlada por el scroll ── */
.puma-scroll-section {
  height: 280vh;
  position: relative;
}
.puma-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  overflow: hidden;
}
.puma-scroll-stage {
  position: relative;
  width: min(420px, 68vw);
  aspect-ratio: 1;
}
.puma-scroll-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(212,175,55,0.5);
  box-shadow:
    0 0 60px rgba(212,175,55,0.45),
    0 0 140px rgba(212,175,55,0.2),
    inset 0 0 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
  display: block;
}
.puma-scroll-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.4);
  animation: pumaRingSpin 16s linear infinite;
  z-index: 1;
}
@keyframes pumaRingSpin {
  to { transform: rotate(360deg); }
}
.puma-scroll-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.22) 0%, transparent 65%);
  filter: blur(25px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
.puma-scroll-captions {
  position: relative;
  height: 96px;
  width: min(600px, 88vw);
  text-align: center;
}
.puma-cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  color: #aaa;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.puma-cap.active {
  opacity: 1;
  transform: translateY(0);
}
.puma-cap span {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 4px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.35));
}
.puma-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(212,175,55,0.7);
  font-size: 0.78rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pumaHintBounce 2s ease-in-out infinite;
}
@keyframes pumaHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}
@media (max-width: 768px) {
  .puma-scroll-section { height: auto; }
  .puma-scroll-sticky { position: relative; height: auto; padding: 4.5rem 5%; }
  .puma-scroll-hint { display: none; }
  .puma-scroll-captions { height: 110px; }
}

/* ============================================================
   PAQUETE DE ANIMACIONES (emil-design-eng)
   Transiciones entre páginas, mega menú, press feedback, stagger
============================================================ */

/* ── TRANSICIÓN ENTRE PÁGINAS — View Transitions API (MPA) ──
   Al navegar entre categorías la página sale con fade+blur y la
   nueva entra deslizándose. Navegadores sin soporte: navegación
   normal instantánea (mejora progresiva). */
@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
  ::view-transition-old(root) {
    animation: ubVtOut 0.22s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) forwards;
  }
  ::view-transition-new(root) {
    animation: ubVtIn 0.38s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) forwards;
  }
}
@keyframes ubVtOut {
  to { opacity: 0; transform: translateY(-14px) scale(0.995); filter: blur(5px); }
}
@keyframes ubVtIn {
  from { opacity: 0; transform: translateY(18px) scale(0.995); filter: blur(5px); }
  to   { opacity: 1; transform: none; filter: none; }
}

/* ── MEGA MENÚ — apertura suave origin-aware + cascada ── */
.nav-item-dropdown .mega-menu {
  display: flex;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.18s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              transform 0.18s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.nav-item-dropdown:hover > .mega-menu,
.nav-item-dropdown:focus-within > .mega-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nav-item-dropdown:hover > .mega-menu a,
.nav-item-dropdown:focus-within > .mega-menu a {
  animation: megaItemIn 0.25s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) backwards;
}
.mega-menu a:nth-child(1) { animation-delay: 0.02s; }
.mega-menu a:nth-child(2) { animation-delay: 0.05s; }
.mega-menu a:nth-child(3) { animation-delay: 0.08s; }
.mega-menu a:nth-child(4) { animation-delay: 0.11s; }
.mega-menu a:nth-child(5) { animation-delay: 0.14s; }
.mega-menu a:nth-child(6) { animation-delay: 0.17s; }
.mega-menu a:nth-child(7) { animation-delay: 0.20s; }
.mega-menu a:nth-child(8) { animation-delay: 0.23s; }
.mega-menu a:nth-child(9) { animation-delay: 0.26s; }
@keyframes megaItemIn {
  from { opacity: 0; transform: translateX(-8px); }
}

/* ── FEEDBACK AL PRESIONAR — todo botón responde al toque ── */
.btn-pack:active,
.pp-btn-paypal:active,
.pp-btn-card:active,
.btn-nav:active,
.urgency-btn:active,
.testi-arrow:active,
.hub-cta:active,
.fondeo-opt:active,
.back-to-top:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}
.faq-question:active {
  transform: scale(0.995);
  transition-duration: 0.1s;
}

/* ── PACK FEATURES — la lista entra en cascada ── */
.pack-features.stagger-ready li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              transform 0.45s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.pack-features.stagger-ready.stagger-in li {
  opacity: 1;
  transform: none;
}
.pack-features.stagger-ready.stagger-in li:nth-child(1) { transition-delay: 0.05s; }
.pack-features.stagger-ready.stagger-in li:nth-child(2) { transition-delay: 0.11s; }
.pack-features.stagger-ready.stagger-in li:nth-child(3) { transition-delay: 0.17s; }
.pack-features.stagger-ready.stagger-in li:nth-child(4) { transition-delay: 0.23s; }
.pack-features.stagger-ready.stagger-in li:nth-child(5) { transition-delay: 0.29s; }
.pack-features.stagger-ready.stagger-in li:nth-child(6) { transition-delay: 0.35s; }

/* ── HUB CARDS — SPOTLIGHT QUE SIGUE AL MOUSE ── */
@media (hover: hover) and (pointer: fine) {
  .hub-card .hub-card-glow {
    background: radial-gradient(
      420px circle at var(--spot-x, 30%) var(--spot-y, 20%),
      rgba(212,175,55,0.16) 0%,
      rgba(212,175,55,0.05) 40%,
      transparent 65%
    );
    transition: opacity 0.4s ease;
  }
}

/* ── FAQ — respuestas largas sin recorte ── */
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.active {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 8px 30px rgba(212,175,55,0.08);
}

/* ── ACCESIBILIDAD: PREFERS-REDUCED-MOTION (solo lo intrusivo) ──
   Se apagan partículas, loops decorativos infinitos y flotaciones.
   Se conservan hovers, fades de entrada y transiciones funcionales,
   para que el sitio no se vea "muerto" en Windows con el ajuste
   activado de fábrica. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cursor-dot,
  .cursor-outline,
  .light-sweep,
  .bg-aurora,
  #particles,
  #cursorTrail { display: none !important; }
  /* loops decorativos infinitos → quietos */
  .gold-orb,
  .aurora-orb,
  .testimonio-phone,
  .testimonio-glow,
  .hero-floating-badge,
  .ticker-track,
  .loader-ray,
  .loader-ring,
  .puma-scroll-ring,
  .puma-scroll-glow,
  .hvideo-play-circle,
  .badge-verificado,
  .whatsapp-float,
  .sound-btn,
  .btn-cta,
  .stat-num,
  .countdown-banner,
  .video-section-eyebrow i,
  .scroll-down .wheel {
    animation: none !important;
  }
}
