/* ============================================================
   BAILALO — PREMIUM CINEMATIC STYLESHEET
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}
body {
  background: #080612;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent ANY section from causing horizontal scroll */
section, header, footer, main, nav, aside {
  max-width: 100%;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; color: inherit; font: inherit; }
ul { list-style: none; }

/* === TOKENS === */
:root {
  --pink: #e8007d;
  --pink-l: #ff3399;
  --gold: #ffc846;
  --bg: #080612;
  --bg2: #0d0a1a;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.1);
  --w70: rgba(255,255,255,0.7);
  --w40: rgba(255,255,255,0.4);
  --w10: rgba(255,255,255,0.1);
  --gp: rgba(232,0,125,0.5);
  --gp2: rgba(232,0,125,0.2);
  --gg: rgba(255,200,70,0.3);
  --ease: cubic-bezier(0.4,0,0.2,1);
  --r: 16px;
  --r-lg: 24px;
}

/* === KEYFRAMES === */
@keyframes logoGlow {
  0%,100% { filter: drop-shadow(0 0 18px var(--gp)) drop-shadow(0 0 36px var(--gp2)); }
  50%      { filter: drop-shadow(0 0 32px var(--gp)) drop-shadow(0 0 64px var(--gp2)); }
}
@keyframes scrollFill {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes badgePulse {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
@keyframes ringPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%     { opacity: 0.8; transform: scale(1.02); }
}
@keyframes shimmerGold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-l) 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 8px 28px var(--gp2);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px var(--gp); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--w70);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, color 0.3s, transform 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: #fff;
  background: rgba(232,0,125,0.1);
  transform: translateY(-3px);
}
.btn-lg { padding: 18px 48px; font-size: 0.9rem; }

/* === SECTION COMMONS === */
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(232,0,125,0.1);
  border: 1px solid rgba(232,0,125,0.35);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--pink);
}
.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--w70);
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background 0.5s var(--ease), border-color 0.5s;
}
.navbar.scrolled {
  background: rgba(8,6,18,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  max-width: 1440px;
  margin: 0 auto;
  transition: padding 0.4s var(--ease);
}
.navbar.scrolled .nav-inner { padding: 14px 52px; }

.nav-logo-img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--gp2));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-img { filter: drop-shadow(0 0 20px var(--gp)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--w70);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  border-radius: 50px;
  color: #fff !important;
  box-shadow: 0 4px 18px var(--gp2);
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-links .nav-cta::after { display: none !important; }
.nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gp) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s, border-color 0.3s;
}
.hamburger:hover { background: rgba(232,0,125,0.12); border-color: rgba(232,0,125,0.3); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 52px 28px;
  background: rgba(8,6,18,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--w70);
  border-bottom: 1px solid var(--w10);
  transition: color 0.3s;
}
.nav-mobile a:last-child { border: none; }
.nav-mobile a:hover { color: var(--pink); }
.nav-mobile-cta {
  display: block;
  margin-top: 12px;
  padding: 14px 28px !important;
  text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  border-radius: 50px;
  border-bottom: none !important;
  color: #fff !important;
}
.navbar.menu-open .nav-mobile { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,6,18,0.4) 0%, rgba(8,6,18,0.05) 35%, rgba(8,6,18,0.55) 65%, rgba(8,6,18,1) 100%),
    linear-gradient(135deg, rgba(8,6,18,0.5) 0%, transparent 50%, rgba(8,6,18,0.4) 100%);
}
.hero-glow-bottom {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 200px;
  background: radial-gradient(ellipse, var(--gp2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleRise linear infinite;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}
.hero-logo-wrap { margin-bottom: 28px; animation: fadeUp 1s var(--ease) both; }
.hero-logo {
  height: 210px;
  width: auto;
  margin: 0 auto;
  animation: logoGlow 3s ease-in-out infinite;
}
.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: var(--w70);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease) 0.25s both;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeUp 1s var(--ease) 0.45s both;
}
.badge {
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w70);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.06);
  animation: badgePulse ease-in-out infinite;
}
.badge:nth-child(1) { animation-duration: 3.6s; animation-delay: 0s; }
.badge:nth-child(2) { animation-duration: 4.1s; animation-delay: 0.5s; }
.badge:nth-child(3) { animation-duration: 3.2s; animation-delay: 1.0s; }
.badge:nth-child(4) { animation-duration: 4.5s; animation-delay: 1.5s; }
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.65s both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeUp 1s var(--ease) 1s both;
}
.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--w40);
}
.scroll-bar {
  width: 1px;
  height: 56px;
  background: var(--w10);
  position: relative;
  overflow: hidden;
}
.scroll-bar-fill {
  position: absolute;
  inset: 0;
  background: var(--pink);
  animation: scrollFill 2.2s ease-in-out infinite;
}

/* ============================================================
   EVENTOS / REELS
   ============================================================ */
.eventos-section {
  padding: 120px 0 140px;
  background: var(--bg);
  position: relative;
}
.eventos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 560px; height: 1px;
  background: linear-gradient(to right, transparent, var(--pink), transparent);
}
.section-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 72px;
}

/* Desktop grid: 3 cols, 2 rows. Item 1 is left-tall, item 5 is right-tall */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 400px;
  gap: 10px;
  padding: 0 52px;
  max-width: 1440px;
  margin: 0 auto;
}
/* item 1: col 1, rows 1+2 */
.reel-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
/* item 2 */
.reel-item:nth-child(2) { grid-column: 2; grid-row: 1; }
/* item 3 */
.reel-item:nth-child(3) { grid-column: 3; grid-row: 1; }
/* item 4 */
.reel-item:nth-child(4) { grid-column: 2; grid-row: 2; }
/* item 5: col 3, row 2 */
.reel-item:nth-child(5) { grid-column: 3; grid-row: 2; }

.reel-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  /* stagger fade-in */
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reel-item.visible { opacity: 1; transform: none; }
.reel-item:nth-child(1) { transition-delay: 0.05s; }
.reel-item:nth-child(2) { transition-delay: 0.15s; }
.reel-item:nth-child(3) { transition-delay: 0.25s; }
.reel-item:nth-child(4) { transition-delay: 0.35s; }
.reel-item:nth-child(5) { transition-delay: 0.20s; }

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reel-item:hover .reel-video { transform: scale(1.06); }

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(8,6,18,0.88) 0%, rgba(8,6,18,0.15) 50%, transparent 100%);
  transition: background 0.4s;
}
.reel-item:hover .reel-overlay {
  background: linear-gradient(to top, rgba(8,6,18,0.92) 0%, rgba(8,6,18,0.3) 55%, rgba(232,0,125,0.08) 100%);
}
.reel-glow-hover {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 90%; height: 100px;
  background: radial-gradient(ellipse, var(--gp) 0%, transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.reel-item:hover .reel-glow-hover { opacity: 1; }

.reel-meta {
  position: relative;
  z-index: 1;
}
.reel-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--w40);
  text-transform: uppercase;
}
.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(232,0,125,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
  box-shadow: 0 0 28px var(--gp);
}
.reel-play svg { width: 26px; height: 26px; margin-left: 3px; }
.reel-item:hover .reel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================================
   VENUE
   ============================================================ */
.venue-section {
  padding: 130px 52px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.venue-section::before {
  content: '';
  position: absolute;
  top: -300px; left: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,0,125,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.venue-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.venue-video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 620px;
  width: 100%;
}
.venue-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.venue-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,6,18,0.35) 0%, transparent 60%);
}
.venue-video-ring {
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--r-lg) + 3px);
  box-shadow: 0 0 50px var(--gp), 0 0 100px rgba(232,0,125,0.12);
  pointer-events: none;
  animation: ringPulse 4s ease-in-out infinite;
}
.venue-content { padding: 8px 0; }
.venue-desc {
  margin-top: 22px;
  margin-bottom: 40px;
  font-size: 1.05rem;
  color: var(--w70);
  line-height: 1.8;
}
.venue-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 48px;
}
.venue-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 6px;
  box-shadow: 0 0 10px var(--gp);
}
.venue-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.venue-feature span {
  font-size: 0.88rem;
  color: var(--w70);
}

/* ============================================================
   ORGANIZADORA
   ============================================================ */
.org-section {
  padding: 130px 52px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.org-section::after {
  content: '';
  position: absolute;
  bottom: -300px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,200,70,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.org-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.org-content { padding: 8px 0; }
.org-desc {
  font-size: 1.05rem;
  color: var(--w70);
  line-height: 1.8;
  margin-top: 20px;
}
.org-stats {
  display: flex;
  gap: 48px;
  margin-top: 52px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 4s linear infinite;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w40);
}
.org-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9/16;
  max-height: 580px;
  margin: 0 auto;
  border: 1px solid rgba(255,200,70,0.22);
  box-shadow:
    0 0 0 8px rgba(255,200,70,0.05),
    0 0 50px rgba(255,200,70,0.15),
    0 0 100px rgba(255,200,70,0.07),
    0 24px 60px rgba(0,0,0,0.5);
  animation: ringPulse 4s ease-in-out infinite;
}
.org-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-video-ring { display: none; }
.org-video-glow { display: none; }

/* ============================================================
   TICKETS CTA
   ============================================================ */
.tickets-section {
  position: relative;
  padding: 160px 24px;
  text-align: center;
  overflow: hidden;
}
.tickets-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tickets-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: blur(3px) brightness(0.6);
}
.tickets-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,6,18,0.8) 0%, rgba(8,6,18,0.65) 50%, rgba(8,6,18,0.88) 100%);
}
.tickets-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.tickets-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
}
.tickets-title em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--pink);
}
.tickets-sub {
  font-size: 1.1rem;
  color: var(--w70);
  line-height: 1.7;
  margin-bottom: 52px;
}
.tickets-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 52px 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--gp2));
  margin-bottom: 14px;
}
.footer-tagline { font-size: 0.82rem; color: var(--w40); letter-spacing: 0.05em; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--w70);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--pink); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--w10);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w70);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: rgba(232,0,125,0.14);
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--gp2);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 52px;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--w40); letter-spacing: 0.04em; }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.modal.open { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,3,12,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.modal-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.modal-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}
.modal-close svg { width: 22px; height: 22px; }
.modal-close:hover { background: rgba(232,0,125,0.3); transform: rotate(90deg); }

.modal-video-box {
  /* Constrain to viewport: width = min of height-based and vw-based */
  width: min(calc((100dvh - 120px) * 9 / 16), calc(100vw - 48px));
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 80px var(--gp), 0 0 160px rgba(232,0,125,0.15);
  transform: scale(0.88);
  transition: transform 0.45s var(--ease);
}
.modal.open .modal-video-box { transform: scale(1); }
.modal-video { width: 100%; height: 100%; object-fit: cover; }

.modal-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.modal-nav {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.modal-nav svg { width: 22px; height: 22px; }
.modal-nav:hover { background: rgba(232,0,125,0.25); border-color: var(--pink); transform: scale(1.08); }
.modal-counter {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--w40);
  min-width: 48px;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .reels-grid {
    grid-template-rows: 330px 330px;
    padding: 0 28px;
    gap: 8px;
  }
  .venue-container, .org-container { gap: 56px; }
}

@media (max-width: 900px) {
  .reels-grid {
    grid-template-rows: 280px 280px;
    padding: 0 20px;
  }
  .venue-section, .org-section { padding: 90px 28px; }
  .venue-container, .org-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .venue-video-wrap, .org-video-wrap { max-height: 480px; }
  .org-stats { gap: 32px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-inner { padding: 18px 24px; }
  .navbar.scrolled .nav-inner { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Reels: 2-column compact on mobile */
  .reels-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    padding: 0 12px;
    gap: 8px;
  }
  .reel-item:nth-child(1),
  .reel-item:nth-child(2),
  .reel-item:nth-child(3),
  .reel-item:nth-child(4),
  .reel-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3/4;  /* Shorter than 9/16 → more compact on phone */
  }
  .reel-item:nth-child(5) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
    max-height: 220px;
  }

  /* Venue/Org content order on mobile */
  .venue-container { direction: ltr; }
  .venue-media { order: -1; }
  .org-media { order: -1; }
  .venue-video-wrap, .org-video-wrap { max-height: 420px; }
  .org-stats { gap: 24px; }
  .stat-num { font-size: 1.8rem; }

  /* Footer */
  .footer-inner { padding: 48px 24px 40px; flex-direction: column; gap: 28px; }
  .footer-bottom { padding: 20px 24px; }

  /* Tickets */
  .tickets-section { padding: 110px 24px; }
  .tickets-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; }

  /* Hero */
  .hero-logo { height: 130px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; max-width: 300px; }
  .hero-sub { font-size: 0.92rem; }
  /* Org */
  .org-video-wrap { max-width: 100%; }
  /* Closet */
  .closet-quote { font-size: 1.1rem; }

  /* Modal */
  .modal-video-box {
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 140px);
  }
}

@media (max-width: 480px) {
  .reels-grid { padding: 0 12px; gap: 6px; }
  .nav-mobile { padding: 12px 24px 24px; }
  .eventos-section { padding: 90px 0 100px; }
  .section-header { margin-bottom: 48px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   BTN-GOLD
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #ffe98a 100%);
  color: #0d0a1a;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 8px 28px rgba(255,200,70,0.3);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,200,70,0.45); }
.btn-gold:hover::after { opacity: 1; }

/* ============================================================
   EL CLOSET DE BAILALO (Home section)
   ============================================================ */
@keyframes frameShine {
  0%   { transform: translateX(-100%) rotate(20deg); }
  100% { transform: translateX(300%) rotate(20deg); }
}

.closet-section {
  padding: 130px 52px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.closet-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,200,70,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,0,125,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.closet-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.closet-tag {
  background: rgba(255,200,70,0.1) !important;
  border-color: rgba(255,200,70,0.4) !important;
  color: var(--gold) !important;
}
.closet-title { margin-top: 0; }
.gold-em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold) !important;
}
.closet-quote {
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-top: 18px;
  letter-spacing: 0.02em;
}
.closet-desc {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--w70);
  line-height: 1.8;
}
.closet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 40px;
}
.closet-pills span {
  padding: 7px 18px;
  border: 1px solid rgba(255,200,70,0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,200,70,0.06);
}
.closet-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Media side */
.closet-media { position: relative; }
.closet-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,200,70,0.12);
  position: relative;
  border: 1px solid rgba(255,200,70,0.18);
}
.closet-img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.closet-frame:hover .closet-img { transform: scale(1.03); }
.closet-frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: frameShine 4s ease-in-out 1s infinite;
}
.closet-media-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(255,200,70,0.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 900px) {
  .closet-section { padding: 90px 28px; }
  .closet-container { grid-template-columns: 1fr; gap: 48px; }
  .closet-media { order: -1; }
}
@media (max-width: 768px) {
  .closet-section { padding: 80px 24px; }
  .closet-ctas { flex-direction: column; align-items: flex-start; }
  .closet-ctas .btn-gold, .closet-ctas .btn-ghost { width: 100%; max-width: 300px; }
  .hero-logo { height: 110px; }
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
@keyframes loaderPulse {
  0%,100% { filter:drop-shadow(0 0 14px rgba(232,0,125,0.22)) drop-shadow(0 0 28px rgba(232,0,125,0.1));transform:scale(1) }
  50%      { filter:drop-shadow(0 0 30px rgba(232,0,125,0.55)) drop-shadow(0 0 60px rgba(232,0,125,0.22));transform:scale(1.06) }
}
@keyframes dotBounce {
  0%,80%,100% { transform:translateY(0) }
  40%         { transform:translateY(-9px) }
}
#page-loader {
  position:fixed;inset:0;background:#040210;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  z-index:9999;
  transition:opacity 0.65s cubic-bezier(0.4,0,0.2,1), visibility 0.65s;
}
#page-loader.out { opacity:0;visibility:hidden;pointer-events:none }
.loader-logo { height:86px;width:auto;animation:loaderPulse 2s ease-in-out infinite }
.loader-dots { display:flex;gap:9px;margin-top:26px }
.loader-dot {
  width:8px;height:8px;border-radius:50%;background:var(--gold);
  animation:dotBounce 1.4s ease-in-out infinite;
}
.loader-dot:nth-child(2){animation-delay:.2s}
.loader-dot:nth-child(3){animation-delay:.4s}

/* Reel items are decorative — not clickable */
.reel-item { cursor:default }
.reel-play { display:none }
