/* ══════════════════════════════════════════
   BESÒS CANALLA — public.css
   Paleta: Negro · Rojo · Blanco
   Modo claro (por defecto) + Modo oscuro
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── MODO CLARO (por defecto) ── */
:root {
  --bg:      #f5f4f0;
  --surface: #eceae5;
  --card:    #ffffff;
  --border:  rgba(0,0,0,.10);
  --border2: rgba(0,0,0,.18);
  --text:    #111111;
  --muted:   #666666;
  --dim:     #999999;
  --accent:  #cc0000;
  --accent2: #990000;
  --green:   #1a7a40;
  --red:     #cc0000;
  --ff:      'Barlow', -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
  --ff-h:    'Barlow Condensed', sans-serif;
  --radius:  6px;
  --max-w:   1100px;
  --shadow:  0 2px 12px rgba(0,0,0,.08);
}

/* ── MODO OSCURO ── */
[data-theme="dark"] {
  --bg:      #0a0a0a;
  --surface: #111111;
  --card:    #181818;
  --border:  rgba(255,255,255,.09);
  --border2: rgba(255,255,255,.16);
  --text:    #f0ede8;
  --muted:   #888888;
  --dim:     #555555;
  --accent:  #dd1111;
  --accent2: #ff4444;
  --green:   #22c97a;
  --red:     #ff4444;
  --shadow:  0 2px 12px rgba(0,0,0,.4);
}


/* ── ICONS ── */
.ico { width: 20px; height: 20px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.ico-sm { width: 14px; height: 14px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.feat-ico .ico { width: 24px; height: 24px; color: var(--accent); }
.ft-ico .ico { width: 22px; height: 22px; }
.tok-rule-n .ico-sm { color: var(--accent); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: none; border: 1px solid var(--border2);
  color: var(--muted); cursor: pointer;
  width: 34px; height: 34px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all .2s; flex-shrink: 0;
}
.theme-toggle:hover { color: var(--text); border-color: var(--text); }
.icon-sun, .icon-moon { display: none; }
:root .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: rgba(245,244,240,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s, background .3s;
}
[data-theme="dark"] .nav {
  background: rgba(10,10,10,.95);
}
.nav.scrolled { border-bottom-color: rgba(204,0,0,.3); }
.nav-logo { font-family: var(--ff-h); font-size: 20px; letter-spacing: 1px; font-weight: 800; }
.nav-logo em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-btn {
  background: var(--accent); color: #fff !important;
  padding: 7px 16px; border-radius: var(--radius);
  font-weight: 700 !important; font-size: 13px !important;
  transition: background .2s !important;
  text-transform: uppercase; letter-spacing: .5px;
}
.nav-btn:hover { background: var(--accent2) !important; }
.nav-user-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--text) !important; padding: 6px 13px; border-radius: var(--radius);
  font-size: 13px !important; font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-user-btn:hover { background: var(--card) !important; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .3s; }

/* ── MOB MENU ── */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 800;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mob-menu.open { transform: none; }
.mob-menu a { font-family: var(--ff-h); font-size: 36px; font-weight: 800; letter-spacing: 1px; color: var(--text); }
.mob-menu a:hover { color: var(--accent); }
.mob-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ── CONTAINERS ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.container-xs { max-width: 480px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: 40px 20px 100px;
  position: relative; overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 45% at 70% 35%, rgba(204,0,0,.18), transparent 65%), #000;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px; width: 100%;
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; animation: fadeUp .7s .2s both;
}
.hero-eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--accent); flex-shrink: 0; }
.hero-h1 {
  font-family: var(--ff-h);
  font-size: clamp(52px, 10vw, 110px);
  line-height: .88; letter-spacing: -1px;
  margin-bottom: 20px; color: #fff;
  opacity: 0; animation: fadeUp .7s .35s both;
  font-weight: 800;
}
.hero-h1 .accent { color: var(--accent); }
.hero-h1 .hollow { -webkit-text-stroke: 2px #fff; color: transparent; }
.hero-meta {
  font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .7s .5s both;
}
.hero-meta strong { color: #fff; font-weight: 600; }
.hero-btns {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .7s .65s both;
}

/* ── TICKER ── */
.ticker { background: var(--accent); padding: 10px 0; overflow: hidden; white-space: nowrap; user-select: none; }
.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }
.t-item { font-family: var(--ff-h); font-size: 16px; letter-spacing: 2px; color: #fff; padding: 0 28px; font-weight: 700; }
.ticker-rev .ticker-inner { animation-direction: reverse; }
.t-sep { color: rgba(255,255,255,.4); font-size: 12px; align-self: center; }

/* ── SECTION HEADINGS ── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--accent); }
.sec-title {
  font-family: var(--ff-h);
  font-size: clamp(36px, 6vw, 64px);
  line-height: .92; letter-spacing: -.5px;
  margin-bottom: 32px; font-weight: 800;
}
.bg-surface { background: var(--surface); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--ff); font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all .2s;
  text-decoration: none; line-height: 1.2;
  text-transform: uppercase; letter-spacing: .5px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); }
.btn-outline { border: 2px solid var(--border2); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline-dark { border: 2px solid var(--border2); color: var(--text); background: transparent; }
.btn-outline-dark:hover { border-color: var(--text); background: var(--surface); }
.btn-sm { padding: 8px 16px; font-size: 12px; }

/* ── CARDS ── */
.card-pub {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ── FORMS ── */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
input[type=text], input[type=email], input[type=tel],
input[type=number], input[type=password] {
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text); padding: 10px 14px;
  font-family: var(--ff); font-size: 14px;
  outline: none; width: 100%;
  transition: border-color .2s;
}
input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(204,0,0,.1); }
input::placeholder { color: var(--dim); }
.chk-label {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--muted); cursor: pointer;
  margin-bottom: 14px;
}
.chk-label input { width: 16px; height: 16px; accent-color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.chk-label a { color: var(--accent); text-decoration: underline; }

/* ── ALERTS ── */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
.alert-ok  { background: rgba(26,122,64,.08);  border: 1px solid rgba(26,122,64,.25);  color: var(--green); }
.alert-err { background: rgba(204,0,0,.07);    border: 1px solid rgba(204,0,0,.2);     color: var(--red); }
.alert-info{ background: rgba(204,0,0,.06);    border: 1px solid rgba(204,0,0,.18);    color: var(--accent); }

/* ── TICKET TYPES GRID ── */
.tipos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 24px;
}
.tipo-card {
  background: var(--card); padding: 20px 18px;
  cursor: pointer; transition: background .2s; position: relative;
}
.tipo-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transition: transform .3s;
}
.tipo-card:hover { background: var(--surface); }
.tipo-card.sel::after { transform: scaleX(1); }
.tipo-card.sel { background: rgba(204,0,0,.04); }
.tipo-card.agotado { opacity: .4; cursor: not-allowed; pointer-events: none; }
.tipo-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 2px 9px; border-radius: 99px; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .5px;
}
.tb-accent { background: var(--accent); color: #fff; }
.tb-gold   { background: var(--accent2); color: #fff; }
.tipo-nombre { font-family: var(--ff-h); font-size: 20px; letter-spacing: .5px; margin-bottom: 3px; font-weight: 700; }
.tipo-precio { font-family: var(--ff-h); font-size: 30px; color: var(--accent); line-height: 1; margin-bottom: 6px; font-weight: 800; }
.tipo-desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.tipo-stock { font-size: 11px; color: var(--dim); font-family: var(--ff-mono); }

/* ── PAYMENT METHOD TABS ── */
.metodo-tabs { display: flex; border: 1.5px solid var(--border2); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.mtab {
  flex: 1; padding: 11px; font-family: var(--ff); font-size: 13px; font-weight: 600;
  text-align: center; cursor: pointer; background: transparent;
  color: var(--muted); border: none; transition: all .2s;
}
.mtab.on { background: var(--accent); color: #fff; }
.mtab:hover:not(.on) { background: var(--surface); color: var(--text); }
.mpanel { display: none; } .mpanel.on { display: block; }
.info-pay {
  background: rgba(204,0,0,.05); border: 1px solid rgba(204,0,0,.15);
  border-radius: var(--radius); padding: 14px 16px;
  font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 12px;
}
.info-pay strong { color: var(--text); font-weight: 600; }

/* ── CARTEL ── */
.artista-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  transition: background .2s; position: relative;
}
.artista-row:last-child { border-bottom: none; }
.artista-row:hover { background: var(--surface); }
.artista-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent); transform: scaleY(0); transition: transform .3s;
}
.artista-row:hover::before { transform: scaleY(1); }
.art-foto {
  width: 52px; height: 52px; border-radius: 4px;
  object-fit: cover; filter: grayscale(80%); opacity: .75;
  transition: all .3s; flex-shrink: 0;
}
.artista-row:hover .art-foto { filter: grayscale(0); opacity: 1; }
.art-no-foto {
  width: 52px; height: 52px; border-radius: 4px;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.art-info { flex: 1; min-width: 0; }
.art-rol { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
.art-nom { font-family: var(--ff-h); font-size: clamp(20px, 3.5vw, 36px); letter-spacing: .5px; line-height: 1; font-weight: 800; }
.art-origen { font-size: 12px; color: var(--dim); margin-top: 3px; }
.art-pills { display: flex; gap: 5px; flex-wrap: wrap; }
.pill { font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 99px; border: 1px solid var(--border2); color: var(--muted); }
.pill.hot { border-color: rgba(204,0,0,.3); color: var(--accent); }

/* ── PROGRAMA ── */
.dias-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.dia-card { border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 22px; box-shadow: var(--shadow); }
.dia-card.main { border-color: rgba(204,0,0,.35); }
.dia-badge { display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 99px; margin-bottom: 12px; }
.dia-titulo { font-family: var(--ff-h); font-size: 32px; line-height: 1; margin-bottom: 3px; font-weight: 800; }
.dia-sub { font-size: 12px; color: var(--dim); margin-bottom: 16px; }
.prog { list-style: none; }
.prog li { display: flex; align-items: center; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.prog li:last-child { border-bottom: none; }
.prog-h { font-family: var(--ff-mono); font-size: 10px; color: var(--accent); min-width: 80px; flex-shrink: 0; }
.prog-act { font-weight: 500; }
.prog-act small { font-size: 11px; color: var(--dim); font-weight: 400; margin-left: 6px; }
.prog-star { color: var(--accent); }

.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.feat { background: var(--card); padding: 18px; text-align: center; }
.feat-ico { font-size: 22px; margin-bottom: 7px; display: block; }
.feat strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.feat p { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ── VENUE ── */
.venue-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.venue-map-box { border: 1.5px solid var(--border); background: var(--card); border-radius: var(--radius); aspect-ratio: 4/3; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.venue-nom { font-family: var(--ff-h); font-size: clamp(32px, 5vw, 56px); line-height: 1; margin-bottom: 6px; font-weight: 800; }
.venue-addr { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.venue-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.vs { background: var(--card); padding: 14px 16px; }
.vs span:first-child { font-family: var(--ff-h); font-size: 28px; color: var(--accent); display: block; line-height: 1; font-weight: 800; }
.vs span:last-child { font-size: 11px; color: var(--muted); }
.vtags { display: flex; flex-wrap: wrap; gap: 6px; }
.vtag { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border: 1.5px solid var(--border2); border-radius: 99px; color: var(--dim); }
.vtag.on { border-color: var(--accent); color: var(--accent); }

/* ── TOKENS ── */
.tokens-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tok-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.tok-desc strong { color: var(--text); font-weight: 600; }
.tok-rule { display: flex; align-items: baseline; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.tok-rule-n { font-family: var(--ff-mono); font-size: 10px; color: var(--accent); min-width: 16px; }
.tok-rule strong { color: var(--text); }
.tok-tbl { width: 100%; border-collapse: collapse; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 20px; }
.tok-tbl th { background: var(--surface); padding: 10px 12px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); border-bottom: 1px solid var(--border); }
.tok-tbl td { padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.tok-tbl tr:last-child td { border-bottom: none; background: rgba(0,0,0,.02); }
[data-theme="dark"] .tok-tbl tr:last-child td { background: rgba(255,255,255,.02); }
.tok-gold { color: var(--accent); font-weight: 700; font-family: var(--ff-h); font-size: 16px; }
.bonus-bar { height: 3px; background: var(--border); margin-top: 4px; border-radius: 99px; }
.bonus-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #ff4444); border-radius: 99px; }

/* ── WALLET CARD ── */
.wallet-card {
  background: linear-gradient(135deg, #111, #000);
  border: 1.5px solid rgba(204,0,0,.25); border-radius: var(--radius);
  padding: 22px; position: relative; overflow: hidden;
}
.wallet-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), #ff4444); }
.wallet-chip { position: absolute; right: 20px; top: 28px; width: 38px; height: 28px; background: linear-gradient(135deg, #555, #333); border-radius: 4px; opacity: .5; }
.wc-fest { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.wc-name { font-family: var(--ff-h); font-size: 20px; letter-spacing: 1px; margin-bottom: 16px; color: #fff; font-weight: 700; text-transform: uppercase; }
.wc-bals { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; margin-bottom: 14px; }
.wb { background: rgba(255,255,255,.03); padding: 12px; }
.wb-l { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 3px; }
.wb-n { font-family: var(--ff-h); font-size: 26px; line-height: 1; display: block; font-weight: 800; }
.wb-n.e { color: #fff; } .wb-n.t { color: var(--accent); }
.wc-movs .wmov { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 12px; color: rgba(255,255,255,.5); }
.neg { color: #ff8888; } .pos { color: var(--accent); }
.wc-foot { font-size: 10px; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.08); padding-top: 10px; margin-top: 8px; line-height: 1.5; }
.ki-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 12px; }
.ki { background: var(--card); padding: 12px; text-align: center; }
.ki strong { font-family: var(--ff-h); font-size: 20px; color: var(--accent); display: block; font-weight: 800; }
.ki span { font-size: 10px; color: var(--muted); }

/* ── FOODTRUCKS ── */
.ft-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.ft-num { background: var(--card); padding: 18px 16px; }
.ft-big { font-family: var(--ff-h); font-size: 38px; color: var(--accent); line-height: 1; display: block; font-weight: 800; }
.ft-lbl { font-size: 12px; color: var(--muted); margin-top: 3px; }
.ft-conds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.ft-cond { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.ft-ico { font-size: 20px; margin-bottom: 8px; display: block; }
.ft-cond strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 5px; }
.ft-cond p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.ft-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px; border: 1.5px solid rgba(204,0,0,.2); background: rgba(204,0,0,.04); border-radius: var(--radius); flex-wrap: wrap; }
.ft-cta-t { font-family: var(--ff-h); font-size: 22px; display: block; margin-bottom: 3px; font-weight: 800; }
.ft-cta p { font-size: 13px; color: var(--muted); }

/* ── NEWSLETTER ── */
.nl-row { display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border2); }
.nl-in {
  flex: 1; min-width: 0;
  background: var(--card); border: none;
  color: var(--text); padding: 12px 16px;
  font-family: var(--ff); font-size: 14px; outline: none;
}
.nl-in::placeholder { color: var(--dim); }
.nl-btn {
  background: var(--accent); color: #fff; border: none;
  padding: 12px 20px; font-family: var(--ff); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background .2s; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .5px;
}
.nl-btn:hover { background: var(--accent2); }
.nl-note { font-size: 11px; color: var(--dim); margin-top: 8px; }
.nl-msg { font-size: 13px; margin-top: 8px; }
.nl-msg.ok { color: var(--green); } .nl-msg.err { color: var(--red); }

/* ── SOCIAL ICONS ── */
.social-row { display: flex; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; align-items: center; }
.social-a {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  padding: 9px 16px; border: 1.5px solid var(--border2);
  border-radius: var(--radius); transition: all .2s;
  text-transform: uppercase; letter-spacing: .5px;
}
.social-a svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-a:hover { color: var(--text); border-color: var(--text); }
.social-a.ig:hover { color: #e1306c; border-color: #e1306c; }
.social-a.tk:hover { color: var(--text); border-color: var(--text); }
.social-a.tw:hover { color: var(--text); border-color: var(--text); }

/* ── FOOTER ── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 32px 20px; }
.foot-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.foot-logo { font-family: var(--ff-h); font-size: 22px; letter-spacing: 1px; color: var(--text); font-weight: 800; }
.foot-logo em { font-style: normal; color: var(--accent); }
.foot-nav { display: flex; gap: 18px; list-style: none; flex-wrap: wrap; }
.foot-nav a { font-size: 13px; color: var(--muted); transition: color .2s; }
.foot-nav a:hover { color: var(--accent); }
.foot-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--border); padding-top: 16px; font-size: 12px; color: var(--muted); max-width: var(--max-w); margin: 0 auto; }
.foot-bot a { color: var(--muted); text-decoration: underline; }

/* ── ACCOUNT PAGES ── */
.account-wrap { padding-top: 80px; padding-bottom: 60px; }
.account-nav { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); display: flex; gap: 0; overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow); }
.acc-tab { flex: 1; padding: 13px 16px; text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; border-bottom: 3px solid transparent; transition: all .15s; }
.acc-tab.on { color: var(--accent); border-bottom-color: var(--accent); background: rgba(204,0,0,.04); }
.acc-tab:hover:not(.on) { color: var(--text); background: var(--surface); }
.entry-card {
  background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin-bottom: 10px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow);
}
.entry-qr { width: 80px; height: 80px; flex-shrink: 0; border: 2px solid var(--border2); border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: white; }
.entry-qr img { width: 100%; height: 100%; object-fit: cover; }
.entry-info { flex: 1; min-width: 0; }
.entry-tipo { font-family: var(--ff-h); font-size: 22px; color: var(--text); line-height: 1; margin-bottom: 3px; font-weight: 800; }
.entry-estado { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 99px; margin-bottom: 5px; }
.es-ok  { background: rgba(26,122,64,.10); color: var(--green); }
.es-use { background: rgba(204,0,0,.08);   color: var(--accent); }
.entry-meta { font-size: 12px; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .dias-grid { grid-template-columns: 1fr; }
  .feats { grid-template-columns: 1fr 1fr; }
  .venue-wrap { grid-template-columns: 1fr; }
  .tokens-wrap { grid-template-columns: 1fr; }
  .ft-conds { grid-template-columns: 1fr; }
  .hero { padding: 80px 16px 80px; justify-content: center; }
  .hero-h1 { font-size: clamp(44px, 13vw, 80px); }
  .artista-row .art-pills { display: none; }
  #foodtrucks .reveal > div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important; flex-direction: column; gap: 24px;
  }
}
@media (max-width: 600px) {
  .hero { padding-bottom: 56px; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: center; gap: 8px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .section { padding: 52px 0; }
  .sec-title { margin-bottom: 20px; }
  .t-item { font-size: 13px; padding: 0 18px; }
  .tipos-grid { grid-template-columns: 1fr; }
  .nl-row { flex-direction: column; }
  .nl-in { border-bottom: 1.5px solid var(--border2); }
  .feats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ft-nums { grid-template-columns: 1fr 1fr; }
  .account-nav { flex-direction: column; }
  .entry-card { flex-direction: column; align-items: flex-start; }
  .wc-bals { grid-template-columns: 1fr; }
  .prog-h { min-width: 60px; }
  .dia-titulo { font-size: 26px; }
  .venue-stats { grid-template-columns: 1fr 1fr; }
}
