/* ── ESTILOS EXCLUSIVOS DE LA LANDING PAGE ──
   Dirección: Minimalista oscuro / editorial.
   Menos elementos, más aire, tipografía como protagonista.
   La luna deja de ser un blob difuso y pasa a ser una línea fina. */

/* ── FONDO ── */
.stars-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; }

/* La luna ahora es un anillo delgado, casi arquitectónico, no un degradado saturado */
.moon-fixed {
  position: fixed;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  transition: top 0.6s ease;
}
.moon-surface {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--pink-border);
  position: relative;
  /* Relleno sutil: sin esto, la luna se confunde con el fondo de la página
     (el JS desliza un panel del mismo color que --bg encima), quedando
     casi invisible. Este glow tenue le da presencia constante. */
  background: radial-gradient(circle at 35% 35%, rgba(198,54,120,0.16) 0%, rgba(198,54,120,0.05) 45%, transparent 72%);
  box-shadow: 0 0 70px rgba(198,54,120,0.06);
  overflow: hidden; /* recorta el panel de sombra que desliza el JS al hacer scroll */
}
.moon-craters { display: none; } /* fuera: ya no queremos textura, solo línea */
.moon-shadow {
  /* El JS (index.js) controla width, background y transform de este elemento
     en cada scroll para simular el ciclo de fases lunares. El CSS solo
     define la posición base y deja que .moon-surface { overflow:hidden }
     recorte el panel deslizante dentro del círculo. */
  position: absolute;
  inset: -1px;
  border-radius: 50%;
}

/* ── NAVEGACIÓN ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 4rem;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,0,8,0.92);
  backdrop-filter: blur(10px);
  padding: 1.25rem 4rem;
  border-bottom: 1px solid var(--pink-border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--pink-border); display: flex; align-items: center; justify-content: center; }
.nav-logo-mark::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 15px; letter-spacing: 4px; text-transform: uppercase; color: var(--text); font-weight: 300; }
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-low); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; border: none; border-bottom: 1px solid var(--pink);
  color: var(--text); padding: 4px 0; cursor: pointer; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.6; }

/* ── SECCIONES GLOBALES ── */
section {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 4rem 6rem;
  position: relative; z-index: 2;
  max-width: 620px;
}
.section-num {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-low); margin-bottom: 2rem;
  font-family: 'Inter', sans-serif; font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}
.section-title em { font-style: italic; color: var(--pink); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  justify-content: center;
  padding-bottom: 0;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-low); margin-bottom: 2.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 300; line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 3rem;
}
.hero-title em { font-style: italic; color: var(--pink); }
.hero-tagline {
  font-size: 14px; letter-spacing: 0.3px; color: var(--text-mid);
  line-height: 1.9; max-width: 440px; margin-bottom: 3.5rem;
  border-left: none; padding-left: 0;
}
.hero-actions { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 4rem;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-low);
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll::before { content: ''; width: 1px; height: 30px; background: var(--pink-border); }

/* ── BOTONES (versión minimal, override de global) ── */
.btn-main {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; color: var(--text);
  padding: 0 0 6px; border: none; border-bottom: 1px solid var(--pink);
  border-radius: 0; cursor: pointer; transition: opacity 0.2s;
}
.btn-main:hover { opacity: 0.6; transform: none; background: transparent; }
.btn-ghost {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  background: transparent; color: var(--text-low); padding: 0; border: none;
  cursor: pointer; transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s ease; }
.btn-ghost:hover { color: var(--text); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── VIDEO PROMO ── */
#video-promo { min-height: auto; padding: 6rem 4rem; max-width: 900px; width: 100%; margin: 0 auto; align-items: center; }
.video-showcase {
  width: 100%; aspect-ratio: 16/9; margin: 0 auto;
  border-radius: 2px; overflow: hidden; border: 1px solid var(--pink-border);
  box-shadow: none; background: #000; position: relative; z-index: 2;
}
.som-video { width: 100%; height: 100%; display: block; object-fit: cover; filter: grayscale(15%); }

/* ── MODAL DE VIDEO ── */
.video-modal { position: fixed; inset: 0; background: rgba(10,0,8,0.97); backdrop-filter: blur(6px); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 1; transition: opacity 0.4s ease, visibility 0.4s ease; }
.video-modal.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.video-modal-content { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16/9; border-radius: 2px; overflow: hidden; border: 1px solid var(--pink-border); background: #000; }
.som-modal-video { width: 100%; height: 100%; display: block; object-fit: cover; }
.close-video-btn { position: absolute; top: 18px; right: 18px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; width: 32px; height: 32px; font-size: 16px; display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 10; transition: border-color 0.2s ease; }
.close-video-btn:hover { border-color: var(--pink); }

.unmute-overlay { position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; justify-content: center; align-items: center; background: rgba(10,0,8,0.3); color: #fff; cursor: pointer; transition: opacity 0.4s ease, visibility 0.4s ease; }
.unmute-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.unmute-pulse { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-bottom: 14px; font-size: 18px; }
.unmute-overlay span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

/* ── MOVIMIENTO — de "cards con icono" a lista tipográfica ── */
#movimiento { min-height: auto; padding-top: 8rem; padding-bottom: 8rem; }
.manifesto { font-size: 14px; line-height: 2; color: var(--text-mid); margin-bottom: 4rem; font-weight: 300; }
.manifesto strong { color: var(--text); font-weight: 400; }
.pillars { display: flex; flex-direction: column; }
.pillar {
  display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem;
  padding: 2rem 0; border-top: 1px solid var(--pink-border);
  opacity: 0; transform: translateY(10px); transition: all 0.6s ease;
}
.pillars .pillar:last-child { border-bottom: 1px solid var(--pink-border); }
.pillar.visible { opacity: 1; transform: translateY(0); }
.pillar-icon {
  width: auto; height: auto; border: none; border-radius: 0;
  color: var(--text-low); font-size: 11px; font-family: 'Inter', sans-serif;
  letter-spacing: 1px; margin-top: 2px;
}
.pillar-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.pillar-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; max-width: 440px; }

/* ── EXPERIENCIA — de grid con cuadros a lista de dos columnas simple ── */
#experiencia { min-height: auto; padding-top: 8rem; padding-bottom: 8rem; }
.exp-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 32px);
  font-weight: 300; font-style: italic; line-height: 1.4; color: var(--text);
  margin-bottom: 4rem; max-width: 500px;
}
.exp-quote span { color: var(--pink); }
.exp-intro { font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 3rem; max-width: 460px; }
.exp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  border: none; background: none;
}
.exp-item { background: transparent; padding: 0; border-top: 1px solid var(--pink-border); padding-top: 1.25rem; opacity: 0; transition: opacity 0.5s ease; }
.exp-item.visible { opacity: 1; }
.exp-item-icon { font-size: 18px; color: var(--text-low); display: block; margin-bottom: 0.9rem; line-height: 1; opacity: 1; }
.exp-item-title { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.exp-item-desc { font-size: 12px; color: var(--text-low); line-height: 1.6; }

/* ── DRESSCODE — lista más ligera ── */
#dresscode { min-height: auto; padding-top: 8rem; padding-bottom: 8rem; }
.dresscode-intro { font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 3rem; max-width: 460px; }
.dresscode-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic;
  font-weight: 300; color: var(--text); letter-spacing: 0.3px;
  margin-bottom: 3rem; padding-left: 0; border-left: none;
}
.dresscode-quote::before { content: '— '; color: var(--pink); }
.styles-list { display: flex; flex-direction: column; gap: 0; }
.style-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1.4rem 0; border-bottom: 1px solid var(--pink-border);
  opacity: 0; transform: translateY(8px); transition: all 0.5s ease; cursor: default;
}
.style-item.visible { opacity: 1; transform: translateY(0); }
.style-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--text); letter-spacing: 0.3px; }
.style-desc { font-size: 10px; letter-spacing: 1px; color: var(--text-low); text-transform: uppercase; }
.style-dot { display: none; } /* el punto rosa ya no aporta, fuera */
.style-item:hover .style-name { color: var(--pink); }

/* ── CTA FINAL — sin caja, solo tipografía y una línea ── */
#cta-final { min-height: 50vh; text-align: left; align-items: flex-start; justify-content: center; position: relative; z-index: 2; }
.cta-content {
  display: flex; flex-direction: column; align-items: flex-start;
  border: none; background: none; padding: 0; border-radius: 0; width: 100%;
  opacity: 0; transform: translateY(15px); transition: all 0.8s ease;
  border-top: 1px solid var(--pink-border); padding-top: 3rem;
}
.cta-content.visible { opacity: 1; transform: translateY(0); }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 4.5vw, 48px); font-weight: 300; line-height: 1.15; margin-bottom: 1.75rem; }
.cta-desc { font-size: 13px; color: var(--text-mid); line-height: 1.8; max-width: 420px; margin-bottom: 2.5rem; }

/* ── FOOTER ── */
footer { position: relative; z-index: 2; border-top: 1px solid var(--pink-border); padding: 4rem; display: flex; flex-direction: column; gap: 2.5rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-brand-area { max-width: 300px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 16px; letter-spacing: 4px; text-transform: uppercase; color: var(--text); margin-bottom: 10px; font-weight: 300; }
.footer-tagline { font-size: 11px; color: var(--text-low); line-height: 1.6; }
.footer-links-grid { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-low); margin-bottom: 1rem; font-weight: 400; }
.footer-col a { display: block; font-size: 12px; color: var(--text-mid); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: none; padding-top: 0; flex-wrap: wrap; gap: 1rem; }
.footer-line { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-low); }

/* ── RESPONSIVO ── */
@media (max-width: 768px) {
  nav { padding: 1.5rem; } .nav-links { display: none; } section { padding: 7rem 1.5rem 4rem; }
  #video-promo { padding: 3rem 1.5rem; } .moon-fixed { right: -200px; width: 260px; height: 260px; }
  .exp-grid { grid-template-columns: 1fr; } footer { padding: 2rem 1.5rem; }
  .footer-top { flex-direction: column; } .footer-links-grid { gap: 2rem; }
  #hero { padding-left: 1.5rem; padding-right: 1.5rem; } .hero-title { font-size: clamp(38px, 10vw, 64px); } .hero-scroll { left: 1.5rem; }
  .pillar { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ── CONTADOR — más discreto, tipográfico ── */
.countdown-wrap { display: flex; gap: 2rem; margin-bottom: 3.5rem; border-left: none; padding-left: 0; }
.cd-box { display: flex; flex-direction: column; align-items: flex-start; }
.cd-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--text); line-height: 1; }
.cd-lbl { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-low); margin-top: 6px; }

/* ── LINEUP ── */
#lineup { min-height: auto; padding: 6rem 4rem; max-width: 900px; margin: 0 auto; }
.lineup-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.dj-card { background: transparent; border: none; border-top: 1px solid var(--pink-border); border-radius: 0; padding: 1.5rem 0 0; transition: opacity 0.3s; opacity: 0; transform: translateY(15px); }
.dj-card.visible { opacity: 1; transform: translateY(0); }
.dj-card:hover { transform: none; background: transparent; }
.dj-img-placeholder { width: 100%; aspect-ratio: 1; background: rgba(255,255,255,0.02); border: 1px solid var(--pink-border); border-radius: 0; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; color: var(--text-low); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; overflow: hidden; position: relative; }
.dj-img-placeholder img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; filter: grayscale(30%); }
.dj-genre { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-low); margin-bottom: 6px; }
.dj-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text); margin-bottom: 1rem; font-weight: 300; }
.btn-play { display: flex; align-items: center; gap: 8px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-low); background: none; border: none; border-top: 1px solid var(--pink-border); padding: 10px 0 0; cursor: pointer; transition: color 0.2s; width: 100%; justify-content: flex-start; }
.btn-play:hover { color: var(--pink); }

/* ── EVENTO Y MAPA ── */
#detalles { min-height: auto; padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.event-info-list { display: flex; flex-direction: column; gap: 2.25rem; }
.info-item h4 { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-low); margin-bottom: 8px; font-weight: 400; }
.info-item p { font-size: 14px; color: var(--text); line-height: 1.6; font-weight: 300; }
.map-placeholder { width: 100%; aspect-ratio: 4/3; background: #000; border: 1px solid var(--pink-border); border-radius: 0; display: flex; align-items: center; justify-content: center; color: var(--text-low); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; overflow: hidden; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; filter: grayscale(60%) invert(90%) contrast(90%); }

/* ── FAQ ── */
#faq { min-height: auto; padding: 8rem 4rem; max-width: 700px; margin: 0 auto; }
.faq-wrap { margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--pink-border); padding: 1.5rem 0; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: var(--text); font-size: 14px; text-align: left; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 300; }
.faq-q i { color: var(--text-low); transition: transform 0.3s; font-size: 14px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.4s ease; font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.faq-item.active .faq-a { max-height: 200px; margin-top: 1.25rem; }
.faq-item.active .faq-q i { transform: rotate(45deg); }

@media (max-width: 768px) {
  #lineup, #detalles, #faq { padding: 4rem 1.5rem; }
  #detalles { grid-template-columns: 1fr; gap: 3rem; }
  .countdown-wrap { gap: 1.25rem; }
  .cd-num { font-size: 20px; }
}

/* ── TICKET RELEASE / FASES — de tarjetas con hover flashy a lista numerada limpia ── */
#fases-venta { padding: 8rem 2rem; max-width: 800px; margin: 0 auto; }

.fases-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3rem 0 4rem;
}

.fase-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 1.5rem;
  background: transparent;
  border: none;
  border-top: 1px solid var(--pink-border);
  border-radius: 0;
  padding: 1.75rem 0;
  text-align: left;
  transition: opacity 0.2s ease;
  cursor: default;
  overflow: visible;
}
.fases-grid .fase-card:last-child { border-bottom: 1px solid var(--pink-border); }
.fase-card::before { display: none; }
.fase-card:hover { transform: none; border-color: var(--pink-border); box-shadow: none; opacity: 0.85; }
.fase-card:hover::before { left: -100%; }

.fase-badge {
  display: inline-block;
  background: none;
  color: var(--text-low);
  padding: 0; border-radius: 0;
  font-size: 11px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0;
}
.fase-card:hover .fase-badge { background: none; color: var(--text-low); }

.fase-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin: 0 0 0.4rem 0; color: var(--text); font-weight: 300; }
.fase-card p { opacity: 1; color: var(--text-low); font-size: 0.85rem; margin: 0; line-height: 1.5; }

.zonas-precios-wrap {
  max-width: 100%; margin: 0; background: none;
  border: none; border-top: 1px solid var(--pink-border);
  border-radius: 0; padding: 3rem 0 0; backdrop-filter: none;
}
.precios-title { color: var(--text); font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; text-align: left; margin: 0 0 2rem; }
.precio-item { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--pink-border); transition: padding-left 0.25s ease, color 0.25s ease; }
.precio-item:hover { padding-left: 10px; color: var(--pink); }
.precio-item:last-child { border-bottom: none; padding-bottom: 0; }
.zona-nombre { font-weight: 300; opacity: 1; font-size: 13px; letter-spacing: 0.3px; }
.zona-precio { color: var(--text); font-weight: 300; font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; }
.precio-item:hover .zona-precio { color: var(--pink); }

@media (max-width: 600px) {
  .fase-card { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ── COMUNIDAD / REDES SOCIALES ── */
#redes-sociales {
  min-height: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

#redes-sociales .section-num {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#redes-sociales .section-title {
  text-align: center;
  width: 100%;
}

#redes-sociales .manifesto {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#redes-sociales .btn-ghost {
  margin: 0 auto;
  justify-content: center;
  font-size: 11px; /* Un poco más grande para darle presencia */
}

#redes-sociales .btn-ghost i {
  font-size: 20px;
}