:root {
  --background: #0a0a0a;
  --foreground: #f5f5f0;
  --card: #1a1a1a;
  --card-foreground: #f5f5f0;
  --muted: #2a2520;
  --muted-foreground: #a39e93;
  --primary: #eedfa3;
  --primary-foreground: #0a0a0a;
  --secondary: #8b1e1e;
  --border: rgba(238, 223, 163, 0.2);
  --radius: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.5;
}
body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}
h3 { font-size: 24px; font-weight: 400; }
h4 { font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary); }
button, .btn {
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  border: none;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section { padding: 80px 0; }
.section-dark { background: var(--background); }
.section-muted { background: var(--muted); }
.section-label {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.icon-label, .btn-outline, .btn-primary, .contact-item, .event-meta-item, .venue-ctas { display: inline-flex; align-items: center; gap: 0.5rem; }
.text-center { text-align: center; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center { max-width: 760px; margin-left: auto; margin-right: auto; }
.section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.section-desc { max-width: 720px; color: var(--muted-foreground); font-size: 18px; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
.section-divider { border: 0; border-top: 1px solid var(--border); margin: 4rem 0; }
.loading-text { color: var(--muted-foreground); }

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1.5rem;
  font-size: 16px;
}
.btn-primary:hover { opacity: 0.9; }
.btn-lg { padding: 1rem 2rem; font-size: 18px; letter-spacing: 0.025em; text-transform: uppercase; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-foreground); }
.btn-sm { padding: 0.5rem 1rem; font-size: 13px; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 80px;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(238,223,163,0.2);
}
.nav-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-logo { background: none; padding: 0; }
.nav-logo img { width: 120px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  font-size: 14px;
  letter-spacing: 0.025em;
  color: rgba(245,245,240,0.8);
  background: none;
  padding: 0;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.hamburger { display: none; background: none; color: var(--foreground); font-size: 24px; padding: 0.5rem; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 1rem 1.5rem;
  text-align: left;
  background: none;
  color: var(--foreground);
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-link:hover { color: var(--primary); background: rgba(238,223,163,0.05); }
.mobile-ticket { margin: 1rem 1.5rem 0; text-align: center; justify-content: center; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: #111; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.1); backdrop-filter: blur(1px); }
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeIn 1s ease-out;
}
.hero-logo { width: 100%; max-width: 600px; margin: 0 auto 1.5rem; }
.hero-subtitle { font-size: clamp(18px, 2.5vw, 22px); color: rgba(245,245,240,0.9); margin-bottom: 3rem; line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  background: none;
  animation: bounce 2s infinite;
}

.eventos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.event-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s; }
.event-card:hover { border-color: rgba(238,223,163,0.5); }
.event-card-img { position: relative; height: 300px; overflow: hidden; background: #111; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.event-card:hover .event-card-img img { transform: scale(1.05); }
.event-card-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); }
.event-card-body { padding: 1.5rem; }
.event-card-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 14px; color: var(--muted-foreground); margin-bottom: 1rem; }
.event-card-title { font-size: 20px; margin-bottom: 0.75rem; }
.event-card-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.event-price { font-size: 20px; color: var(--primary); white-space: nowrap; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-main-img { width: 100%; height: 600px; object-fit: cover; }
.about-badge-img { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 12rem; height: 12rem; border: 2px solid var(--primary); overflow: visible; background: rgba(0,0,0,0.5); }
.about-badge-img img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(3deg); width: 140%; height: auto; opacity: 0.9; padding: 10px; }
.about-body { display: flex; flex-direction: column; gap: 1.5rem; font-size: 18px; color: rgba(245,245,240,0.9); line-height: 1.7; margin-bottom: 3rem; }
.about-body p { margin: 0; }
.about-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-item { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item svg { color: var(--primary); width: 32px; height: 32px; }
.feature-item h3 { font-size: 18px; font-weight: 400; margin: 0; }
.feature-item p { font-size: 14px; color: var(--muted-foreground); margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; margin: 2rem 0; padding-bottom: 2rem; }
.stat-item { padding: 1.5rem; border: 1px solid var(--border); }
.stat-number { display: block; font-size: 36px; color: var(--primary); margin-bottom: 0.5rem; }
.stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); margin: 0; }
.venue-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #111; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 40%, transparent 100%); }
.gallery-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; transform: translateY(1rem); transition: transform 0.3s; }
.gallery-item:hover .gallery-info { transform: translateY(0); }
.gallery-info h3 { font-size: 22px; color: var(--primary); margin-bottom: 0.5rem; }
.gallery-info p { font-size: 14px; color: rgba(245,245,240,0.8); margin: 0; }
.venue-ctas { justify-content: center; display: flex; flex-wrap: wrap; margin-top: 2rem; }
.stage-plan-img-wrap { border: 1px solid var(--border); padding: 1rem; display: inline-block; margin: 2rem auto; max-width: 700px; }
.stage-plan-img-wrap img { width: 100%; height: auto; }

.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.contact-item { align-items: flex-start; gap: 1rem; }
.contact-item svg { color: var(--primary); flex: 0 0 auto; width: 28px; height: 28px; }
.contact-item h3 { font-size: 18px; margin-bottom: 0.35rem; }
.contact-item p { color: var(--muted-foreground); margin: 0; }
.social-links { display: flex; gap: 0.75rem; }
.social-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--primary); font-size: 24px; }
.social-btn:hover { border-color: var(--primary); background: rgba(238,223,163,0.08); }
.contact-map iframe { min-height: 500px; }

.footer { background: var(--background); border-top: 1px solid var(--border); padding: 4rem 0 2rem; color: var(--muted-foreground); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; }
.footer-logo { width: 150px; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.footer-nav button { background: none; color: var(--muted-foreground); padding: 0; }
.footer-nav button:hover { color: var(--primary); }
address { font-style: normal; }
address p { margin: 0 0 0.35rem; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 1.5rem; font-size: 14px; }

.music-player { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; width: 20rem; background: rgba(26,26,26,0.95); backdrop-filter: blur(4px); border: 1px solid var(--border); box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.music-player-header { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); background: rgba(238,223,163,0.05); }
.music-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary)); color: #000; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.music-info { flex: 1; min-width: 0; }
.music-title, .music-artist { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-title { color: var(--foreground); font-size: 14px; }
.music-artist { color: var(--muted-foreground); font-size: 12px; }
.music-minimize, .music-control-btn { background: none; color: var(--primary); padding: 0.5rem; }
.music-controls { display: flex; justify-content: center; gap: 1rem; padding: 1rem; }
.music-controls.hidden { display: none; }
.btn-primary-icon { background: var(--primary); color: var(--primary-foreground); padding: 0.75rem; display: inline-flex; align-items: center; justify-content: center; }

.badge-10-wrap { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 40; }
.badge-10 { position: relative; }
.badge-glow { position: absolute; inset: 0; background: rgba(238,223,163,0.2); filter: blur(20px); opacity: 0; transition: opacity 0.3s; }
.badge-10:hover .badge-glow { opacity: 1; }
.badge-container { position: relative; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); border: 1px solid rgba(238,223,163,0.3); padding: 1rem; border-radius: 8px; transition: all 0.3s; }
.badge-container:hover { border-color: rgba(238,223,163,0.6); transform: scale(1.05); }
.badge-container img { width: 4rem; height: 4rem; object-fit: contain; }
.badge-tooltip { position: absolute; left: 100%; top: 50%; transform: translateY(-50%); margin-left: 0.75rem; background: var(--background); border: 1px solid var(--primary); padding: 0.5rem 1rem; border-radius: 4px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.badge-10:hover .badge-tooltip { opacity: 1; }
.badge-tooltip-title { font-size: 14px; color: var(--primary); font-family: Georgia, serif; margin: 0; }
.badge-tooltip-sub { font-size: 12px; color: var(--muted-foreground); margin: 0; }

.modal { position: fixed; inset: 0; z-index: 80; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.78); }
.modal-panel { position: relative; z-index: 1; width: min(920px, calc(100vw - 2rem)); max-height: calc(100vh - 2rem); overflow: auto; margin: 1rem auto; top: 50%; transform: translateY(-50%); background: var(--card); border: 1px solid var(--border); display: grid; grid-template-columns: 0.9fr 1.1fr; }
.modal-close { position: absolute; top: 0.5rem; right: 0.75rem; z-index: 2; background: rgba(0,0,0,0.6); color: var(--primary); font-size: 32px; line-height: 1; width: 42px; height: 42px; }
.modal-image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; background: #111; }
.modal-body { padding: 2rem; }
.modal-body h3 { color: var(--primary); font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.modal-body p { color: rgba(245,245,240,0.88); }
.modal-meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted-foreground); margin: 1.5rem 0; }

.gallery-item[role="button"] { cursor: pointer; }
.gallery-item[role="button"]:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.lightbox { position: fixed; inset: 0; z-index: 90; display: none; flex-direction: column; background: rgba(0,0,0,0.96); padding: 1.25rem 1rem 1rem; }
.lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 0.75rem; right: 1.25rem; z-index: 3; background: rgba(0,0,0,0.6); color: var(--primary); font-size: 30px; line-height: 1; width: 46px; height: 46px; border: 1px solid var(--border); cursor: pointer; }
.lightbox-close:hover { background: var(--primary); color: #1a1a1a; }
.lightbox-stage { position: relative; flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.lightbox-img { max-width: min(1100px, calc(100vw - 9rem)); max-height: 100%; object-fit: contain; background: #0d0d0d; }
.lightbox-nav { flex: 0 0 auto; background: rgba(0,0,0,0.55); color: var(--primary); font-size: 38px; line-height: 1; width: 54px; height: 54px; border: 1px solid var(--border); cursor: pointer; }
.lightbox-nav:hover { background: var(--primary); color: #1a1a1a; }
.lightbox-thumbs { display: flex; flex-wrap: wrap; justify-content: center; align-content: flex-start; gap: 0.55rem; padding: 1rem 0 0.25rem; max-height: 26vh; overflow-y: auto; }
.lightbox-thumb { flex: 0 0 auto; width: 148px; height: 84px; padding: 0; border: 2px solid transparent; background: none; cursor: pointer; opacity: 0.5; transition: opacity 0.2s ease, border-color 0.2s ease; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox-thumb:hover { opacity: 0.85; }
.lightbox-thumb.active { opacity: 1; border-color: var(--primary); }
.lightbox-counter { text-align: center; color: var(--muted-foreground); font-size: 14px; letter-spacing: 0.08em; padding-top: 0.6rem; margin: 0; }
@media (max-width: 640px) {
  .lightbox { padding: 0.75rem 0.5rem; }
  .lightbox-img { max-width: calc(100vw - 6.5rem); }
  .lightbox-nav { width: 44px; height: 44px; font-size: 30px; }
  .lightbox-thumb { width: 92px; height: 56px; }
  .lightbox-thumbs { max-height: 22vh; }
}

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(-4px); }
  50% { transform: translateX(-50%) translateY(4px); }
}

@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-main-img { height: 520px; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links, .nav-ticket { display: none !important; }
  .section-title-row { align-items: flex-start; flex-direction: column; }
  .eventos-grid { grid-template-columns: 1fr; }
  .about-features, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .venue-gallery { grid-template-columns: 1fr; }
  .modal-panel { grid-template-columns: 1fr; top: 0; transform: none; }
  .modal-image { min-height: 280px; max-height: 360px; }
  .music-player { right: 1rem; bottom: 1rem; width: min(19rem, calc(100vw - 2rem)); }
  .badge-10-wrap { left: 1rem; bottom: 8.5rem; }
  .badge-container { padding: 0.6rem; }
  .badge-container img { width: 3rem; height: 3rem; }
  .badge-tooltip { display: none; }
}
@media (max-width: 520px) {
  .hero { min-height: 620px; }
  .hero-subtitle br { display: none; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; text-align: center; }
  .about-main-img { height: 380px; }
  .about-badge-img { width: 9rem; height: 9rem; right: 0.75rem; }
}
