/* ═══════════════════════════════════════════════════════════════
   Culture Fit · Shows — Shared Stylesheet
   Used by: urban-garden, aca-fit, chakana, mvl, sky-nazca,
            virtual-fit, fit-class
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:   #0a0a0a;
  --off:     #111111;
  --accent:  #cc1b1b;        /* overridden per show via JS */
  --accent-dim: rgba(204,27,27,0.18);
  --white:   #f5f0eb;
  --grey:    #8a8a8a;
  --gl:      #c8c2ba;
  --border:  rgba(255,255,255,0.07);
  --fd: 'Bebas Neue', sans-serif;
  --fc: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── ACCESSIBILITY ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--fc);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; }

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── SCROLL PROGRESS BAR ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--white), var(--accent));
  background-size: 200% 100%;
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--accent-dim);
  animation: shimmer-bar 3s linear infinite;
}
@keyframes shimmer-bar {
  from { background-position: 0% 0%; }
  to   { background-position: 200% 0%; }
}

/* ─── CURSOR (desktop only) ─────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.18s;
}

/* ─── PREFERS-REDUCED-MOTION ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  body { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }
  .scroll-progress { display: none !important; }
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav img { height: 28px; width: auto; }

.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-back {
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav-back::before { content: '←'; transition: transform 0.2s; }
.nav-back:hover { color: var(--accent); }
.nav-back:hover::before { transform: translateX(-4px); }

.nav-show-title {
  font-family: var(--fd);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.lang-switcher button {
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
}
.lang-switcher button.active { color: var(--accent); }

/* ─── LANGUAGE TOGGLES ──────────────────────────────────────── */
[data-lang="en"], [data-lang="pt"] { display: none; }
body.lang-en [data-lang="es"] { display: none; }
body.lang-en [data-lang="en"] { display: block; }
body.lang-en .ies { display: none; } body.lang-en .ien { display: inline; }
body.lang-pt [data-lang="en"] { display: none; } body.lang-pt [data-lang="pt"] { display: block; }
body.lang-pt .ien { display: none; } body.lang-pt .ipt { display: inline; }
.ien, .ipt { display: none; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--black);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, var(--accent-dim) 0%, transparent 65%),
    linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.95) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.hero-num {
  position: absolute;
  right: -2%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--fd);
  font-size: clamp(160px, 22vw, 300px);
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 64px 72px;
  max-width: 1400px;
  width: 100%;
}
.hero-tag {
  font-family: var(--fc);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fu 0.8s ease 0.2s forwards;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.hero-title {
  font-family: var(--fd);
  font-size: clamp(56px, 9.5vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fu 0.9s ease 0.35s forwards;
}
.hero-subtitle-text {
  font-family: var(--fc);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--gl);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fu 0.9s ease 0.45s forwards;
}
.hero-intro {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 300;
  color: var(--gl);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fu 0.9s ease 0.55s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu 0.9s ease 0.7s forwards;
}
@keyframes fu {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 16px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.35s;
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--black); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-ghost {
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gl);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s, transform 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-num {
  font-family: var(--fd);
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1.35;
  min-height: 2.7em;
}

/* ─── MAIN CONTENT ──────────────────────────────────────────── */
.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 64px 120px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

/* ─── NARRATIVE ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--fc);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.section-title {
  font-family: var(--fd);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 0.93;
}
.narrative-body {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 300;
  color: var(--gl);
  line-height: 1.85;
  margin-bottom: 28px;
}
.narrative-body p { margin-bottom: 18px; }
.narrative-body p:last-child { margin-bottom: 0; }

/* ─── ACTS ──────────────────────────────────────────────────── */
.acts-grid { margin-top: 48px; }
.acts-title {
  font-family: var(--fd);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 24px;
}
.act-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.act-item:last-child { border-bottom: none; }
.act-num {
  font-family: var(--fd);
  font-size: 36px;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
}
.act-name {
  font-family: var(--fc);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.act-desc {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
}

/* ─── VIDEO ─────────────────────────────────────────────────── */
.video-section { margin-top: 56px; }
.video-wrap {
  position: relative;
  border: 1px solid var(--border);
  background: var(--off);
  overflow: hidden;
  min-height: 300px;
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
}
.video-cover {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(10,10,10,0.88);
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 2;
}
.video-cover.hidden { opacity: 0; pointer-events: none; }
.video-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  transition: all 0.25s;
  padding-left: 4px;
}
.video-cover:hover .video-play-btn {
  background: var(--accent);
  color: var(--black);
  transform: scale(1.08);
}
.video-cover-title {
  font-family: var(--fd);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-align: center;
}
.video-cover-sub {
  font-family: var(--fc);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 300px;
  background: var(--off);
}
.video-placeholder-icon { font-size: 40px; color: rgba(255,255,255,0.1); }
.video-placeholder-text {
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ─── SIDEBAR ───────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sb {
  border: 1px solid var(--border);
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
}
.sb-title {
  font-family: var(--fc);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sb-title::before { content: ''; width: 16px; height: 1px; background: var(--accent); }
.sb-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sb-row:last-child { border-bottom: none; padding-bottom: 0; }
.sb-key {
  font-family: var(--fc);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
}
.sb-val {
  font-family: var(--fc);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.sb-val.accent { color: var(--accent); }

/* ─── CITIES ────────────────────────────────────────────────── */
.city-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.city-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.city-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.city-chip-name {
  font-family: var(--fd);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.city-chip-country {
  font-family: var(--fc);
  font-size: 10px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.1em;
  margin-left: auto;
}

/* ─── NEXT SHOWS ────────────────────────────────────────────── */
.next-shows { margin-top: 2px; }
.next-show-title {
  font-family: var(--fc);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 20px 20px 12px;
  border: 1px solid var(--border);
  border-bottom: none;
}
.next-show-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-top: none;
  text-decoration: none;
  transition: background 0.2s;
  background: rgba(255,255,255,0.01);
}
.next-show-item:first-of-type { border-top: 1px solid var(--border); }
.next-show-item:hover { background: rgba(255,255,255,0.04); }
.next-show-name {
  font-family: var(--fd);
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.next-show-item:hover .next-show-name { color: var(--white); }
.next-show-arrow { font-size: 12px; color: var(--grey); transition: transform 0.2s; }
.next-show-item:hover .next-show-arrow { transform: translateX(4px); color: var(--accent); }

/* ─── POSTULATION CTA ───────────────────────────────────────── */
.cta-section {
  margin-top: 64px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
  background: rgba(255,255,255,0.015);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h3 {
  font-family: var(--fd);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  max-width: 500px;
}
.cta-accent-line {
  width: 40px; height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.page-footer {
  border-top: 1px solid var(--border);
  padding: 28px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.page-footer p {
  font-family: var(--fc);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey);
}

/* Footer legal links — Privacidad / Términos / Cookies */
.page-footer .footer-legal {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-footer .footer-legal a {
  color: var(--grey);
  text-decoration: none;
  padding: 4px 6px;
  transition: color 0.2s ease;
}
.page-footer .footer-legal a:hover {
  color: var(--red);
}
.page-footer .footer-legal-sep {
  color: var(--border);
  margin: 0 4px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  nav { padding: 0 24px; height: 56px; }
  .nav-left .nav-back { font-size: 11px; }
  .nav-show-title { display: none; }
  .hero-content { padding: 48px 24px 56px; }
  .stats-inner { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 16px; }
  .stat-item:first-child { padding-left: 16px; }
  .stat-item:nth-child(2) { padding-right: 16px; border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .content { padding: 48px 24px 80px; }
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .sidebar { position: static; }
  .cta-section { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .page-footer { padding: 24px 20px; text-align: center; }
}
@media (max-width: 600px) {
  nav { padding: 0 16px; height: 52px; }
  .nav-back { font-size: 10px; letter-spacing: 0.1em; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 36px 16px 48px; }
  .hero-num { font-size: clamp(80px, 22vw, 160px); }
  .hero-title { font-size: clamp(44px, 12vw, 68px); }
  .hero-subtitle-text { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 14px 24px; }
  .stats-inner { padding: 0 16px; grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 12px; min-height: 80px; }
  .stat-num { font-size: clamp(20px, 6vw, 32px); }
  .stat-label { font-size: 9.5px; letter-spacing: 0.12em; }
  .content { padding: 40px 16px 72px; }
  .content-grid { gap: 32px; }
  .act-item { flex-direction: column; gap: 10px; }
  .act-num { font-size: 36px; width: auto; }
  .cta-section { padding: 28px 16px; gap: 20px; }
  .cta-text h3 { font-size: clamp(28px, 8vw, 40px); }
  .city-chips { gap: 4px; }
  .city-chip { padding: 8px 12px; }
  .next-show-name { font-size: 16px; }
  .page-footer { padding: 20px 16px; flex-direction: column; }
}
