* {
  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;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

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: 6rem 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;
}
.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; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .logo-text-xl { font-size: 3rem; }
  .hero { padding-top: 6rem; }
  .hero-stats { gap: 2rem; }
}

/* 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: 99999;
  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: 99998;
  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: 30px;
  left: 30px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--gold);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(212, 175, 55, 0.3);
  z-index: 9000;
  transform: translateX(-150%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
  backdrop-filter: blur(20px);
}

.live-notification.show {
  transform: translateX(0);
}

.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: 20px;
    left: 20px;
    right: 20px;
    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;
  }
}