* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #080808; color: #fff; font-family: 'DM Sans', sans-serif; }

/* HEADER */
.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #080808; position: sticky; top: 0; z-index: 100;
}
.logo img { height: 38px; width: auto; }
.nav { display: flex; gap: 48px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav a { color: #888; text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav a:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 20px; }
.lang { font-size: 14px; font-weight: 600; color: #fff; cursor: pointer; }
.user-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all .3s; }

/* LAYOUT 2 COLUMNAS */
.event-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

/* ASIDE IZQUIERDA */
.event-aside {
  position: sticky;
  top: 112px;
  height: fit-content;
  padding-right: 40px;
}

.event-poster {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.poster-img {
  width: 100%;
  height: 380px;
  border-radius: 12px;
}

.poster-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: flex-end;
}

.action-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #141414; border: 1px solid rgba(255,255,255,0.12);
  color: #888; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.action-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

.promo-code {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: #111; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  margin-top: 16px;
}
.promo-code span { font-size: 13px; color: #666; }
.promo-btn {
  background: transparent; border: none; color: #E8272A;
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif;
}

/* MAIN DERECHA */
.event-main { padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.06); }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #555; margin-bottom: 24px;
}
.breadcrumb a { color: #555; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

.event-info-top { margin-bottom: 28px; }

.event-club-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #888; margin-bottom: 10px;
}

.event-title {
  font-size: 42px; font-weight: 800;
  line-height: 1.08; margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.event-meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.event-date { font-size: 15px; color: #E8272A; font-weight: 600; }
.event-tags { display: flex; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.15); color: #888;
  padding: 4px 10px; border-radius: 4px;
}

/* BUY BAR */
.buy-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: #111; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 32px;
  position: sticky; top: 84px; z-index: 50;
}
.buy-bar-info { display: flex; flex-direction: column; gap: 2px; }
.buy-price { font-size: 20px; font-weight: 800; }
.buy-label { font-size: 11.5px; color: #555; }
.buy-bar-actions { display: flex; gap: 10px; }
.btn-vip {
  background: transparent; color: #E8272A;
  border: 1.5px solid #E8272A;
  padding: 11px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .2s;
}
.btn-vip:hover { background: #E8272A; color: #fff; }
.btn-buy {
  background: #E8272A; color: #fff; border: none;
  padding: 11px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.btn-buy:hover { background: #C01F22; }

/* TICKETS */
.tickets-section { margin-bottom: 40px; }

.section-title {
  font-size: 22px; font-weight: 700;
  margin-bottom: 20px;
}

.ticket-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: #0F0F0F; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; margin-bottom: 10px;
  opacity: 0.5;
}
.ticket-row.available { opacity: 1; }

.ticket-info { flex: 1; }
.ticket-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; display: flex; align-items: center; gap: 8px; }
.ticket-desc { font-size: 12.5px; color: #555; }
.vip-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  background: #E8272A; color: #fff;
  padding: 2px 7px; border-radius: 3px;
}
.ticket-right { display: flex; align-items: center; gap: 16px; }
.ticket-price { font-size: 16px; font-weight: 700; color: #fff; }
.ticket-price-strike { font-size: 14px; color: #444; text-decoration: line-through; }
.ticket-sold-out { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: #E8272A; }

.ticket-counter { display: flex; align-items: center; gap: 12px; }
.counter-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: transparent;
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.counter-btn:hover { border-color: #E8272A; color: #E8272A; }
.counter-val { font-size: 16px; font-weight: 700; min-width: 20px; text-align: center; }

.vip-table-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: #0F0F0F; border: 1px solid rgba(201,160,96,0.25);
  border-radius: 8px; margin-bottom: 20px;
}
.btn-request {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 10px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .2s; white-space: nowrap;
}
.btn-request:hover { border-color: #E8272A; color: #E8272A; }

.btn-checkout {
  width: 100%; padding: 16px;
  background: #E8272A; color: #fff; border: none;
  border-radius: 8px; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s;
}
.btn-checkout:hover { background: #C01F22; }

/* DIVIDER */
.divider { height: 1px; background: rgba(255,255,255,0.06); margin: 40px 0; }

/* DESCRIPCIÓN */
.event-description p { font-size: 15px; color: #aaa; line-height: 1.7; margin-bottom: 14px; }
.read-more-btn {
  background: transparent; border: none; color: #E8272A;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; padding: 0;
}
.extra-description { display: none; margin-top: 14px; }
.extra-description.open { display: block; }
.extra-description p { font-size: 15px; color: #aaa; line-height: 1.7; margin-bottom: 14px; }

/* NORMAS */
.rules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.rule-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 8px;
}
.rule-item svg { color: #E8272A; flex-shrink: 0; margin-top: 2px; }
.rule-label { font-size: 11px; color: #555; margin-bottom: 3px; }
.rule-val { font-size: 13.5px; font-weight: 600; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; background: transparent; border: none;
  color: #fff; font-size: 15px; font-weight: 500;
  cursor: pointer; font-family: 'DM Sans', sans-serif; text-align: left; gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: #E8272A; }
.faq-q.open svg { transform: rotate(180deg); }
.faq-q svg { flex-shrink: 0; transition: transform .3s; }
.faq-a {
  display: none; padding: 0 0 18px;
  font-size: 14px; color: #888; line-height: 1.6;
}
.faq-a.open { display: block; }

/* VENUE */
.venue-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; background: #0F0F0F;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 8px;
  margin-bottom: 16px;
}
.venue-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.venue-address { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #666; }
.venue-actions { display: flex; gap: 10px; }
.venue-btn {
  padding: 10px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  background: #E8272A; color: #fff; border: none;
  transition: background .2s;
}
.venue-btn:hover { background: #C01F22; }
.venue-btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.venue-btn-outline:hover { background: rgba(255,255,255,0.05); }
.map-container { border-radius: 10px; overflow: hidden; }

/* MORE EVENTS */
.more-events-list { display: flex; flex-direction: column; gap: 2px; }
.more-event-item {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.more-event-date {
  display: flex; flex-direction: column; align-items: center;
  min-width: 44px;
}
.me-day { font-size: 22px; font-weight: 800; line-height: 1; }
.me-month { font-size: 10px; color: #555; font-weight: 700; letter-spacing: 0.06em; }
.more-event-info { flex: 1; }
.more-event-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.more-event-meta { font-size: 12px; color: #555; }
.more-event-price { font-size: 14px; font-weight: 600; color: #fff; white-space: nowrap; }
.more-event-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 8px 16px; border-radius: 6px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: all .2s; white-space: nowrap;
}
.more-event-btn:hover { background: #E8272A; border-color: #E8272A; }

/* WHATSAPP */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3);
  z-index: 999; transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute; right: 70px;
  background: #fff; color: #080808;
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: #fff;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .event-layout { grid-template-columns: 280px 1fr; }
  .event-title { font-size: 34px; }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; }
   .nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    transform: none;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 999;
  }
  .nav.open { display: flex !important; }
  .nav a { font-size: 28px; font-weight: 700; color: #fff; }
  .user-btn { display: none; }
  .hamburger { display: flex; }

  .event-layout {
    grid-template-columns: 1fr;
    padding: 20px 16px 60px;
  }

  .event-aside {
    position: static;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .poster-img { height: 300px; }

  .event-main {
    padding-left: 0;
    border-left: none;
  }

  .event-title { font-size: 28px; }

  .buy-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: static;
  }

  .buy-bar-actions { width: 100%; }
  .btn-vip, .btn-buy { flex: 1; text-align: center; }

  .rules-grid { grid-template-columns: 1fr 1fr; }

  .venue-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .venue-actions { width: 100%; }
  .venue-btn { flex: 1; text-align: center; }

  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
