:root {
  --gold-1: #f9a67c;
  --gold-2: #b47356;
  --gold-3: #9a5a46;
  --brand-gradient: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  --brand-gradient-diag: linear-gradient(160deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  --bg: #000000;
  --card-bg: #0a0a0a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

a { color: var(--gold-1); text-decoration: none; }
a:hover { color: #ffcaa8; }

img { max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.container-narrow { max-width: 1000px; margin: 0 auto; padding: 0 60px; }
.container-contact { max-width: 900px; margin: 0 auto; padding: 0 60px; }

/* ---------- Pills / gradient border components ---------- */
.pill-wrap {
  display: inline-block;
  padding: 2px;
  border-radius: 999px;
  background: var(--brand-gradient);
  margin-bottom: 18px;
}
.pill-inner {
  background: var(--bg);
  border-radius: 999px;
  padding: 14px 40px;
}
.pill-inner span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.card-wrap {
  padding: 2px;
  border-radius: 20px;
  background: var(--brand-gradient-diag);
}
.card-inner {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(249,166,124,0) 0%, var(--gold-1) 20%, var(--gold-2) 50%, var(--gold-3) 80%, rgba(154,90,70,0) 100%);
}

.btn-primary {
  border: none;
  cursor: pointer;
  padding: 20px 48px;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { filter: brightness(1.08); color: #000; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(180,115,86,0.3);
  padding: 20px 60px;
}
.site-header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lang-switch {
  position: absolute;
  top: 4px;
  right: 0;
  display: flex;
  padding: 2px;
  border-radius: 999px;
  background: var(--brand-gradient);
}
.lang-switch button {
  cursor: pointer;
  padding: 7px 16px;
  border-radius: 999px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-1);
}
.lang-switch button.active { background: var(--bg); color: var(--gold-1); }
.lang-switch button:not(.active) { background: transparent; color: #000000; }

.logo { height: 150px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-1); }

.hamburger-btn { display: none; }

/* ---------- Sections ---------- */
section { }
.section-pad { padding: 20px 60px 100px; }

h2.venue-title { font-size: 48px; font-weight: 800; margin: 0; letter-spacing: -0.3px; }

.venue-hero-img { width: 100%; height: 78vh; min-height: 560px; max-height: 900px; overflow: hidden; }
.venue-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.venue-desc { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 860px; margin: 56px auto 0; text-align: center; }

.venue-gallery { margin: 56px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.venue-gallery .g-item { border-radius: 20px; overflow: hidden; height: 380px; }
.venue-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-1); margin-bottom: 18px; }

.restaurants-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.restaurant-name { font-size: 18px; font-weight: 700; }
.restaurant-cuisine { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--gold-1); text-transform: uppercase; }
.restaurant-hours { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ---------- Agenda ---------- */
.agenda-tabs { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.agenda-tab { cursor: pointer; flex: 1; min-width: 220px; padding: 2px; border-radius: 14px; background: var(--brand-gradient); }
.agenda-tab-inner { border-radius: 12px; padding: 18px 20px; text-align: center; background: var(--bg); }
.agenda-tab.active .agenda-tab-inner { background: transparent; }
.agenda-tab-inner span { font-size: 15px; font-weight: 700; letter-spacing: 1px; color: var(--gold-1); }
.agenda-tab.active .agenda-tab-inner span { color: #000000; }

.agenda-card-wrap { padding: 2px; border-radius: 24px; background: var(--brand-gradient-diag); }
.agenda-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  min-height: 460px;
  background-image: linear-gradient(120deg, rgba(0,0,0,0.88), rgba(0,0,0,0.72)), url('../../assets/imagenes/venue-1.jpeg');
  background-size: cover;
  background-position: center;
}
.agenda-card-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 48px; align-items: center; min-height: 460px; }
.agenda-day-col { display: flex; align-items: center; gap: 18px; }
.agenda-month { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 15px; font-weight: 700; letter-spacing: 8px; color: var(--gold-1); text-transform: uppercase; }
.agenda-day-num {
  font-size: 140px; font-weight: 900; line-height: 1;
  background: var(--brand-gradient-diag);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.agenda-items { display: flex; flex-direction: column; gap: 28px; }
.agenda-item { display: flex; gap: 20px; align-items: flex-start; }
.agenda-item-time { font-size: 15px; font-weight: 700; color: var(--gold-1); width: 150px; flex-shrink: 0; }
.agenda-item-title { font-size: 18px; font-weight: 700; }
.agenda-item-detail { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.65); }
.agenda-item-dresscode { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }

.agenda-accordion { display: none; }

/* ---------- Tips ---------- */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tip-card { padding: 32px; height: 400px; }
.tz-wrap { grid-row: span 2; }
.tip-card.tip-timezone { height: 824px; }
.tip-icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tip-title { font-size: 20px; font-weight: 700; }
.tip-lines { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.tz-list { display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }
.tz-row { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 6px; }
.tz-offset { color: var(--gold-1); font-weight: 600; white-space: nowrap; }
.voltage-img { width: 80%; max-width: 180px; margin: auto auto 0; display: block; border-radius: 10px; }

/* ---------- Dresscode ---------- */
.dresscode-block { margin-bottom: 72px; }
.dresscode-title { font-size: 26px; font-weight: 700; }
.dresscode-items-line { font-size: 14px; color: var(--gold-1); }
.dresscode-images { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 16px; }
.dresscode-images .d-item { aspect-ratio: 3 / 4; border-radius: 16px; overflow: hidden; }
.dresscode-images img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Documentacion ---------- */
.doc-card { padding: 48px; display: flex; flex-direction: column; gap: 10px; }
.doc-card-title { font-size: 20px; font-weight: 800; }
.doc-card-body { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.eticket-block { position: relative; }
.eticket-card { padding: 56px; display: flex; flex-direction: column; gap: 24px; }
.eticket-mandatory { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-1); }
.eticket-title { font-size: 20px; font-weight: 800; }
.eticket-body { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 420px; }
.eticket-items { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.eticket-item-row { display: flex; align-items: center; gap: 12px; }
.eticket-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-1); flex-shrink: 0; }
.mascot-img { position: absolute; right: 56px; bottom: 0; top: 130px; width: 300px; height: auto; object-fit: contain; object-position: bottom; }

/* ---------- Contact ---------- */
.contact-cols { display: flex; gap: 64px; justify-content: center; flex-wrap: wrap; }
.contact-col { display: flex; flex-direction: column; align-items: center; max-width: 300px; text-align: center; }
.contact-line { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.contact-email { font-size: 20px; font-weight: 500; color: #ffffff; letter-spacing: 0.3px; }
.btn-secondary {
  margin-top: 4px; border: none; cursor: pointer; padding: 16px 40px; border-radius: 999px;
  background: var(--brand-gradient); color: #000000; font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { filter: brightness(1.08); color: #000; }

/* =========================================================
   MOBILE (<768px) — el sitio original usa un layout distinto
   (no solo tamaños): header con hamburguesa + overlay, agenda
   en acordeón en vez de tabs, grillas a 1-2 columnas.
   ========================================================= */
@media (max-width: 767px) {
  .container, .container-narrow, .container-contact { padding: 0 20px; }
  .site-header { padding: 14px 20px; }
  .site-header .header-inner { flex-direction: row; align-items: center; justify-content: flex-start; gap: 0; }
  .logo { height: 56px; order: 1; margin-right: auto; }
  .lang-switch { position: static; order: 2; margin-right: 14px; }
  .lang-switch button { padding: 5px 12px; font-size: 11px; }
  .header-right { display: flex; align-items: center; gap: 14px; order: 3; }

  .main-nav {
    display: none;
    position: fixed; inset: 0; top: 84px; background: var(--bg); z-index: 49;
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    padding: 40px 20px; overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 18px; }

  .hamburger-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    width: 32px; height: 32px; cursor: pointer; background: none; border: none; padding: 0;
  }
  .hamburger-btn span { width: 24px; height: 2px; background: var(--gold-1); display: block; transition: transform .2s; }
  .hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger-btn.open span:nth-child(2) { opacity: 0; }
  .hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .section-pad { padding: 16px 20px 70px; }
  h2.venue-title { font-size: 30px; line-height: 1.2; }
  .venue-hero-img { height: 46vh; min-height: 320px; }
  .venue-desc { font-size: 15px; line-height: 1.7; margin-top: 32px; }
  .venue-gallery { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .venue-gallery .g-item { height: 220px; border-radius: 16px; }

  .restaurants-grid { grid-template-columns: 1fr; gap: 16px; }
  .restaurant-name { font-size: 17px; }

  .agenda-tabs { display: none; }
  .agenda-card-wrap { display: none; }
  .agenda-accordion { display: flex; flex-direction: column; gap: 12px; }
  .accordion-head { cursor: pointer; padding: 2px; border-radius: 14px; }
  .accordion-head-inner { border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
  .accordion-day { font-size: 24px; font-weight: 900; }
  .accordion-label { font-size: 14px; font-weight: 700; }
  .accordion-icon { font-size: 18px; font-weight: 700; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
  .accordion-body { padding: 20px 4px 4px; display: flex; flex-direction: column; gap: 20px; }
  .accordion-body .agenda-item-time { font-size: 13px; width: 100px; }
  .accordion-body .agenda-item-title { font-size: 16px; }
  .accordion-body .agenda-item-detail { font-size: 14px; }
  .accordion-body .agenda-item-dresscode { font-size: 12px; }

  .tips-grid { grid-template-columns: 1fr; gap: 16px; }
  .tip-card { height: auto; padding: 24px; }
  .tz-wrap { grid-row: auto; }
  .tip-card.tip-timezone { height: auto; }
  .tz-list { max-height: 280px; }
  .tip-icon { width: 44px; height: 44px; }
  .tip-title { font-size: 18px; }
  .voltage-img { width: 55%; max-width: 160px; margin: 4px auto 0; }

  .dresscode-block { margin-bottom: 48px; }
  .dresscode-title { font-size: 21px; }
  .dresscode-images { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dresscode-images .d-item { border-radius: 14px; }

  .doc-card, .eticket-card { padding: 28px; }
  .eticket-body { max-width: none; }
  .eticket-items { max-width: none; }
  .mascot-img { display: none; }

  .contact-cols { gap: 40px; flex-direction: column; align-items: center; }
  .btn-primary { width: 100%; text-align: center; padding: 18px 0; }
}
