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

/* ══════════════════════════════
   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; }

/* ══════════════════════════════
   PAGE HEADER
══════════════════════════════ */
.page-header { padding: 40px 48px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-title { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.page-subtitle { font-size: 14px; color: #555; padding-bottom: 24px; }

/* ══════════════════════════════
   SEO INTRO
══════════════════════════════ */
.cal-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 48px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}

.cal-intro-title {
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.04em; color: #E8272A;
  margin-bottom: 10px; line-height: 1.2;
}

.cal-intro-desc {
  font-size: 14px; color: #888;
  margin-bottom: 20px; line-height: 1.5;
}

.cal-intro-body {
  font-size: 14px; color: #666;
  line-height: 1.7; margin-bottom: 12px;
}
.cal-intro-body strong { color: #888; }

.cal-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cal-intro-card {
  border-radius: 8px;
  height: 120px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s;
}
.cal-intro-card:hover { transform: scale(1.02); }

.cal-intro-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8,8,8,0.85) 100%);
}

.cal-intro-card-label {
  position: absolute; bottom: 24px; left: 10px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.6);
  z-index: 2;
}

.cal-intro-card-name {
  position: absolute; bottom: 8px; left: 10px; right: 10px;
  font-size: 13px; font-weight: 800;
  color: #fff; z-index: 2; line-height: 1.2;
}

/* ══════════════════════════════
   NAVEGACIÓN SEMANA
══════════════════════════════ */
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px; flex-wrap: wrap;
  position: relative;
}
.cal-nav-left, .cal-nav-right { display: flex; align-items: center; gap: 12px; }

.nav-arrow {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid rgba(255,255,255,0.12);
  color: #888; padding: 8px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .2s; white-space: nowrap;
}
.nav-arrow:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.month-tabs { display: flex; gap: 4px; }
.month-tab {
  padding: 7px 14px; border-radius: 6px;
  background: transparent; border: 1px solid transparent;
  color: #555; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s;
}
.month-tab.active { background: #1C1C1C; color: #fff; border-color: rgba(255,255,255,0.15); }
.month-tab:hover { color: #fff; }

.cal-icon-btn {
  width: 36px; height: 36px; border-radius: 6px;
  background: transparent; border: 1px solid rgba(255,255,255,0.12);
  color: #888; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; position: relative;
}
.cal-icon-btn:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

.cal-select {
  background: #111; border: 1px solid rgba(255,255,255,0.12);
  color: #888; padding: 8px 14px; border-radius: 6px;
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  cursor: pointer; outline: none; transition: all .2s;
}
.cal-select:hover, .cal-select:focus { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ══════════════════════════════
   DATE PICKER
══════════════════════════════ */
.date-picker {
  position: absolute;
  top: 56px; left: 200px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 20px; width: 320px;
  z-index: 200; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.dp-header {
  display: flex; align-items: center; justify-content: space-between;
  background: #E8272A; border-radius: 8px;
  padding: 12px 16px; margin-bottom: 20px;
}
.dp-header button {
  background: rgba(255,255,255,0.2); border: none;
  color: #fff; width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.dp-header button:hover { background: rgba(255,255,255,0.35); }
.dp-title { font-size: 15px; font-weight: 800; letter-spacing: 0.06em; color: #fff; }
.dp-grid-head {
  display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 8px;
}
.dp-grid-head span {
  text-align: center; font-size: 11px; font-weight: 700;
  color: #444; letter-spacing: 0.04em; padding: 4px 0;
}
.dp-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; margin-bottom: 20px;
}
.dp-day {
  text-align: center; padding: 8px 4px;
  font-size: 14px; color: #888; border-radius: 6px; cursor: pointer; transition: all .15s;
}
.dp-day:hover { background: rgba(232,39,42,0.15); color: #fff; }
.dp-day.dp-today {
  background: rgba(232,39,42,0.2); color: #E8272A;
  font-weight: 700; border: 1px solid rgba(232,39,42,0.4);
}
.dp-footer { display: flex; gap: 10px; }
.dp-btn-today {
  background: #E8272A; color: #fff; border: none;
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; flex: 1;
}
.dp-btn-close {
  background: #111; color: #888;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; flex: 1; transition: all .2s;
}
.dp-btn-close:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* ══════════════════════════════
   TABLA CALENDARIO
══════════════════════════════ */
.cal-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.cal-wrap::-webkit-scrollbar { height: 6px; }
.cal-wrap::-webkit-scrollbar-track { background: transparent; }
.cal-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.cal-table { min-width: 1100px; }

.cal-head-row {
  display: grid;
  grid-template-columns: 160px repeat(7, 1fr);
  border-bottom: 2px solid rgba(255,255,255,0.1);
  position: sticky; top: 72px; z-index: 50;
  background: #080808;
}
.cal-venue-col { padding: 16px; border-right: 1px solid rgba(255,255,255,0.06); }
.cal-day-head {
  padding: 14px 10px; text-align: center;
  font-size: 13px; font-weight: 700; color: #555;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.cal-day-head.today { color: #E8272A; }
.cal-day-head .day-name { font-size: 11px; color: #444; margin-bottom: 4px; }
.cal-day-head .day-num { font-size: 20px; font-weight: 800; }

.cal-row {
  display: grid;
  grid-template-columns: 160px repeat(7, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .2s;
  align-items: stretch;
}
.cal-row:hover { background: rgba(255,255,255,0.01); }
.cal-row.hidden { display: none; }

.cal-venue {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 4px;
}
.venue-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.venue-type {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 2px 7px; border-radius: 3px; width: fit-content;
}
.venue-type.clubs { background: rgba(232,39,42,0.15); color: #E8272A; }
.venue-type.beach { background: rgba(34,197,94,0.15); color: #22C55E; }
.venue-type.festival { background: rgba(168,85,247,0.15); color: #A855F7; }

.cal-cell {
  padding: 8px;
  border-right: 1px solid rgba(255,255,255,0.04);
  min-height: 120px;
}
.cal-cell.empty { background: rgba(255,255,255,0.01); }

.cal-event {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 10px;
  height: 100%; min-height: 100px;
  display: flex; flex-direction: column; gap: 5px;
  transition: border-color .2s;
}
.cal-event:hover { border-color: rgba(255,255,255,0.2); }
.cal-event.featured {
  border-color: rgba(232,39,42,0.4);
  background: rgba(232,39,42,0.05);
}

.event-time { font-size: 10px; color: #555; font-weight: 500; }
.event-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; word-break: break-word; }
.event-lineup { font-size: 11px; color: #666; line-height: 1.4; word-break: break-word; }
.event-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.event-tags span { font-size: 9px; font-weight: 700; color: #555; letter-spacing: 0.04em; }
.event-btns { display: flex; gap: 5px; margin-top: auto; padding-top: 8px; flex-wrap: wrap; }

.cal-btn {
  font-size: 10px; font-weight: 700;
  padding: 5px 9px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.04em;
  transition: all .2s; white-space: nowrap;
}
.cal-btn.tickets { background: #E8272A; color: #fff; }
.cal-btn.tickets:hover { background: #C01F22; }
.cal-btn.vip {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2); color: #888;
}
.cal-btn.vip:hover { border-color: #E8272A; 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);
  z-index: 999; transition: transform .2s; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08); }
.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;
}
.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: 768px) {
  .header { padding: 0 20px; }
  .nav { display: none; }
  .user-btn { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 40px; z-index: 999; display: flex !important;
  }
  .nav.open a { font-size: 28px; font-weight: 700; color: #fff; }
  .page-header { padding: 24px 16px 0; }
  .page-title { font-size: 24px; }
  .cal-intro { grid-template-columns: 1fr; padding: 32px 16px; gap: 28px; }
  .cal-intro-title { font-size: 18px; }
  .cal-nav { padding: 12px 16px; gap: 10px; }
  .month-tabs { overflow-x: auto; }
  .cal-head-row { top: 72px; }
  .date-picker { left: 16px; width: calc(100vw - 32px); }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
