/* 🎛️ RESET Y FUENTES */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: #0d0d1a;
  color: #f1f1f5;
  scroll-behavior: smooth;
}

/* 🌙 NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
  padding: 0 3rem 0 2rem;
  height: 65px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  color: #d0d0f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #fff;
  text-shadow: 0 0 8px #f0c93d;
}

/* 🌌 HERO */
.hero {
  padding-top: 130px;
  padding-bottom: 100px;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a152d 0%, #0d0d1a 100%);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f0c93d, #ff00cc);
  color: #000;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-highlight {
  background: linear-gradient(90deg, #f0c93d, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: #bdbbd1;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.9rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #ff00cc, #f0c93d);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 204, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #555;
}

.btn-secondary:hover {
  border-color: #ff00cc;
  color: #ff00cc;
}

/* 🔮 HERO STATS */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0c93d;
}

.hero-stat-label {
  color: #a3a3bb;
  font-size: 0.95rem;
}

/* 🎶 SECCIONES GENERALES */
section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 1.1rem;
  color: #bdbbd1;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* 🪩 EVENTOS */
.event-card {
  background: rgba(27, 26, 37, 0.85);
  border: 1px solid #2a2a3a;
  border-radius: 18px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  color: #eee;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 0, 204, 0.25);
}

.event-card h3 {
  color: #f0c93d;
  margin-bottom: 8px;
  font-weight: 700;
}

/* 💸 PRECIOS */
.price-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.price-card {
  background: rgba(24, 24, 38, 0.85);
  border: 1px solid #2a2a3a;
  border-radius: 18px;
  padding: 32px;
  max-width: 280px;
  text-align: center;
  transition: 0.3s ease;
}

.price-card:hover {
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.25);
  transform: translateY(-5px);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #f0c93d;
  margin-bottom: 0.6rem;
}

/* 🕓 HORARIOS Y CONTACTO */
.schedule-card,
.contact-card {
  background: rgba(27, 26, 37, 0.85);
  border: 1px solid #2a2a3a;
  border-radius: 18px;
  padding: 30px;
  max-width: 600px;
  margin: 1.2rem auto;
  text-align: left;
  color: #ddd;
  line-height: 1.6;
}

.contact-card a {
  color: #ff00cc;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ⚡ FOOTER */
footer {
  background: #0d0d1a;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  color: #888;
  font-size: 0.95rem;
}

/* 🌌 FONDO DE PARTÍCULAS */
#afterlux-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(60,60,80,0.4), #0d0d1a);
  opacity: 0.9;
}

/* 📱 RESPONSIVE */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .price-cards {
    flex-direction: column;
  }
}

/* 🔧 Ajuste navbar */
*,
*::before,
*::after { box-sizing: border-box; }

.nav-menu {
  margin-right: clamp(2rem, 2vw, 8rem);
}

@media (max-width: 1100px) {
  .nav-menu { margin-right: 2rem; gap: 1.5rem; }
}

@media (max-width: 700px) {
  .nav-menu {
    margin-right: 1rem;
    gap: 1rem;
  }
}
/* 🕶️ TARJETA MISTERIOSA */
.secreto {
  position: relative;
  cursor: pointer;
  perspective: 1000px;
  background: none;
  border: none;
}

.misterioso-front, .misterioso-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  backface-visibility: hidden;
  background: rgba(24, 24, 38, 0.85);
  border: 1px solid #2a2a3a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.1);
}

.misterioso-front {
  transform: rotateY(0deg);
}

.misterioso-back {
  transform: rotateY(180deg);
  padding: 30px;
  color: #eee;
}

.secreto.flipped .misterioso-front {
  transform: rotateY(180deg);
}

.secreto.flipped .misterioso-back {
  transform: rotateY(360deg);
}

.misterioso-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.misterioso-text {
  color: #aaa;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* 🕶️ SPOT SECRETO */
.secret-card {
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.secret-card:hover {
  transform: scale(1.05);
}

.secret-front,
.secret-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.secret-front {
  background: linear-gradient(145deg, #1a1a28, #10101a);
  color: #ccc;
  border: 1px solid #2a2a3a;
}

.secret-front .secret-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.secret-back {
  background: linear-gradient(145deg, #181826, #0f0f18);
  color: #fff;
  border: 1px solid #2a2a3a;
  transform: rotateY(180deg);
}

.secret-card.revealed .secret-front {
  transform: rotateY(180deg);
}

.secret-card.revealed .secret-back {
  transform: rotateY(0deg);
}

/* 💸 PRECIOS */
.price-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}

.price-card {
  background: rgba(24, 24, 38, 0.85);
  border: 1px solid #2a2a3a;
  border-radius: 18px;
  padding: 32px;
  flex: 1 1 300px; /* 📏 mismo ancho para todos */
  max-width: 320px;
  min-height: 240px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.1);
}

.price-card:hover {
  box-shadow: 0 0 25px rgba(255, 0, 204, 0.25);
  transform: translateY(-6px);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #f0c93d;
  margin-bottom: 0.6rem;
}

/* 🕶️ SPOT SECRETO */
.secret-card {
  flex: 1 1 300px; /* 👈 igual ancho que los demás */
  max-width: 320px;
  min-height: 240px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.secret-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 204, 0.25);
}

.secret-front,
.secret-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  border: 1px solid #2a2a3a;
}

.secret-front {
  background: linear-gradient(145deg, #1a1a28, #10101a);
  color: #ccc;
}

.secret-back {
  background: linear-gradient(145deg, #181826, #0f0f18);
  color: #fff;
  transform: rotateY(180deg);
}

.secret-card.revealed .secret-front {
  transform: rotateY(180deg);
}

.secret-card.revealed .secret-back {
  transform: rotateY(0deg);
}
