/* ═══════════════════════════════════════════════════════════════
   Bators CO — main.css
   Extraído íntegramente de bators_home_mockup.html y
   bators_eventos_mockup.html. No improvises diseño.
═══════════════════════════════════════════════════════════════ */

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

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

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:      #0e0e0c;
  --bg1:     #191917;
  --bg2:     #111110;
  --bg3:     #131312;
  --border:  #222220;
  --border2: #2a2a27;
  --olive:   #7d9068;
  --olive2:  #2e3328;
  --text:    #f0ece2;
  --muted:   #b8b4a8;
  --dim:     #8a8a7e;
  --faint:   #6e6e62;
  --ghost:   #1d1d1b;
  --max:     1200px;
  --pad:     clamp(24px, 5vw, 80px);
}

/* ── BASE ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── SKIP LINK (ADA) ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 4px;
  background: var(--olive);
  color: #0e0e0c;
  padding: 8px 16px;
  font-weight: 700;
  z-index: 9999;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus { left: 4px; }

/* ── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes ghostBreathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(1.012); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes countFlip {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── ANIMATION CLASSES ─────────────────────────────────────── */
.stat-val-num {
  display: inline-block;
  animation: countFlip 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Home hero staggered entrance */
.hero-anim { opacity: 0; animation: fadeUp .75s cubic-bezier(.22, 1, .36, 1) forwards; }
.hero-anim-1 { animation-delay: .05s; }
.hero-anim-2 { animation-delay: .20s; }
.hero-anim-3 { animation-delay: .38s; }
.hero-anim-4 { animation-delay: .54s; }
.hero-anim-5 { animation-delay: .68s; }

.hero-divider-line {
  transform-origin: left center;
  animation: drawLine 1s cubic-bezier(.22, 1, .36, 1) .68s both;
}

/* Eventos page staggered entrance */
.fade-in { opacity: 0; animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) forwards; }
.d1 { animation-delay: .05s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .32s; }
.d4 { animation-delay: .46s; }

.draw-line {
  transform-origin: left center;
  animation: drawLine 1s cubic-bezier(.22, 1, .36, 1) .5s both;
}

/* Respeta prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-anim,
  .hero-divider-line,
  .bn-hero-ghost,
  .stat-val-num,
  .fade-in,
  .draw-line,
  .page-header-ghost {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── NAV ───────────────────────────────────────────────────── */
.bn-nav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
}
.bn-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bn-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bn-nav-logo img { width: 30px; height: 30px; object-fit: contain; }
.bn-nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.bn-nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.bn-nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.bn-nav-links a:hover,
.bn-nav-links a:focus { color: var(--olive); outline: none; border-bottom-color: var(--olive); }
.bn-nav-links a.active { color: var(--text); border-bottom-color: var(--olive); }

/* Mobile hamburger toggle (oculto en desktop) */
.bn-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
}
.bn-nav-toggle:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }

.bn-nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0e0e0c;
  background: var(--olive);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  min-height: 44px;
}
.bn-nav-cta:hover,
.bn-nav-cta:focus { background: #8fa077; outline: 2px solid var(--text); outline-offset: 2px; }

/* ── HERO ──────────────────────────────────────────────────── */
.bn-hero {
  position: relative;
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 80px 0 72px;
}
.bn-hero-ghost {
  position: absolute;
  right: -2vw;
  top: -40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(220px, 28vw, 500px);
  font-weight: 900;
  line-height: 1;
  color: var(--ghost);
  letter-spacing: -20px;
  user-select: none;
  pointer-events: none;
  animation: ghostBreathe 5.5s ease-in-out infinite;
  transform-origin: right top;
}
.bn-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.bn-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
}
.bn-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 32px;
}
.bn-hero-title span { color: var(--olive); }
.bn-hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
}
.bn-hero-desc strong { color: var(--text); font-weight: 600; }
.bn-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.bn-hero-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--border2) 50%, transparent 100%);
  margin-top: 52px;
}

/* ── STATS PANEL (desktop) ─────────────────────────────────── */
.bn-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-self: start;
}
.bn-stat-cell {
  background: var(--bg1);
  padding: 28px 32px;
}
.bn-stat-cell + .bn-stat-cell { border-top: 1px solid var(--border); }
.bn-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.bn-stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--olive);
}
.bn-stat-value .unit {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--muted);
  margin-left: 6px;
}
.bn-next-cell {
  background: var(--bg3);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.bn-next-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.bn-next-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--olive);
  letter-spacing: -.5px;
}
.bn-next-info {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 4px;
}
.bn-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid var(--olive2);
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color .2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.bn-badge:hover,
.bn-badge:focus { border-color: var(--olive); outline: none; }

/* ── STATS STRIP (mobile) ──────────────────────────────────── */
.bn-stats-strip {
  display: none;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bn-stats-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.bn-strip-cell {
  background: var(--bg1);
  padding: 24px 20px;
}
.bn-strip-cell.wide {
  grid-column: 1 / -1;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.bn-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.bn-strip-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--olive);
}
.bn-strip-value .unit {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--muted);
  margin-left: 4px;
}
.bn-strip-next-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--olive);
}
.bn-strip-next-info {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-top: 3px;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0e0e0c;
  background: var(--olive);
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover,
.btn-primary:focus { background: #8fa077; outline: 2px solid var(--text); outline-offset: 2px; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  background: transparent;
  padding: 15px 30px;
  cursor: pointer;
  border: 1px solid var(--olive2);
  transition: border-color .2s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-ghost:hover,
.btn-ghost:focus { border-color: var(--olive); outline: none; }

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── PILARES ───────────────────────────────────────────────── */
.bn-pillars {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
}
.bn-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.bn-pillar { background: var(--bg1); padding: 36px 28px; }
.bn-pillar-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--olive);
  margin-bottom: 12px;
}
.bn-pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.bn-pillar-desc { font-size: 16px; color: var(--muted); line-height: 1.65; }

/* ── RUTAS ─────────────────────────────────────────────────── */
.bn-rutas { padding: 72px 0; border-bottom: 1px solid var(--border); }
.bn-rutas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.bn-ruta {
  background: var(--bg1);
  padding: 32px 26px;
  cursor: pointer;
  transition: background .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.bn-ruta:hover,
.bn-ruta:focus { background: #1a1a18; outline: none; }
.bn-ruta:focus-visible { outline: 2px solid var(--olive); outline-offset: -2px; }
.bn-ruta-ghost {
  position: absolute;
  right: -6px;
  bottom: -14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: var(--ghost);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: transform .35s ease, opacity .35s ease;
}
.bn-ruta:hover .bn-ruta-ghost,
.bn-ruta:focus .bn-ruta-ghost { transform: scale(1.06) translateY(-4px); opacity: .7; }
.bn-ruta-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
.bn-ruta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.bn-ruta-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.bn-ruta-arrow {
  font-size: 24px;
  color: var(--olive2);
  margin-top: 20px;
  position: relative;
  z-index: 2;
  display: block;
  transition: color .2s, transform .25s;
}
.bn-ruta:hover .bn-ruta-arrow,
.bn-ruta:focus .bn-ruta-arrow { color: var(--olive); transform: translateX(5px); }

/* ── CTA / REGISTRO ────────────────────────────────────────── */
.bn-cta {
  background: var(--bg3);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.bn-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.bn-cta-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 16px;
}
.bn-cta-titulo span { color: var(--olive); }
.bn-cta-sub { font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 360px; }
.bn-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HEADER (eventos + blog + post) ───────────────────── */
.page-header {
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header-ghost {
  position: absolute;
  right: -10px;
  top: -20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(200px, 24vw, 400px);
  font-weight: 900;
  line-height: 1;
  color: var(--ghost);
  letter-spacing: -12px;
  user-select: none;
  pointer-events: none;
  animation: ghostBreathe 6s ease-in-out infinite;
  transform-origin: right top;
}
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.page-title span { color: var(--olive); }
.page-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.page-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--border2) 50%, transparent 100%);
  margin-top: 48px;
}

/* ── PRÓXIMO EVENTO ────────────────────────────────────────── */
.next-event-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.next-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.next-event-card {
  background: var(--bg1);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  overflow: hidden;
  position: relative;
}
.next-event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--olive);
}
.next-event-left {
  padding: 48px 48px 48px 56px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.next-event-edition {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid var(--olive2);
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 32px;
  align-self: flex-start;
}
.next-event-date-wrap { position: relative; z-index: 2; }
.next-event-date-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -4px;
  color: var(--olive);
}
.next-event-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
}
.next-event-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--faint);
  margin-top: 4px;
  margin-bottom: 28px;
}
.next-event-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
  position: relative;
  z-index: 2;
}
.next-event-ghost {
  position: absolute;
  right: -12px;
  bottom: -24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
  color: var(--ghost);
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
}
.next-event-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.next-event-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -.5px;
  line-height: 1.05;
}
.next-event-title span { color: var(--olive); }
.next-event-desc { font-size: 17px; color: var(--muted); line-height: 1.7; }
.next-event-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ev-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid var(--olive2);
  padding: 6px 14px;
}
.next-event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.meta-cell { background: var(--bg3); padding: 18px 20px; }
.meta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 5px;
}
.meta-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.meta-sub { font-size: 14px; color: var(--faint); margin-top: 3px; }
.price-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--olive);
  line-height: 1;
}
.price-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 3px;
}
.next-event-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── INFO STRIP ────────────────────────────────────────────── */
.info-strip { border-bottom: 1px solid var(--border); }
.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.info-strip-cell {
  background: var(--bg3);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-strip-icon { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 3px; }
.info-strip-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: .3px;
  margin-bottom: 4px;
}
.info-strip-desc { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.faq-header { margin-bottom: 36px; }
.faq-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.faq-item { background: var(--bg1); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  transition: background .2s;
  min-height: 48px;
}
.faq-question:hover { background: var(--bg3); }
.faq-question:focus-visible { outline: 2px solid var(--olive); outline-offset: -2px; }
.faq-q-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: .3px;
  line-height: 1.2;
}
.faq-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--olive);
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
  width: 28px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22, 1, .36, 1), padding .35s;
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border2);
  padding-top: 20px;
}
.faq-answer strong { color: var(--text); font-weight: 600; }

/* ── BLOG ──────────────────────────────────────────────────── */
.blog-section { padding: 64px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.blog-card {
  background: var(--bg1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-card-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
}
.blog-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.blog-card-title a:hover,
.blog-card-title a:focus { color: var(--olive); outline: none; }
.blog-card-excerpt { font-size: 16px; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── POST INDIVIDUAL ───────────────────────────────────────── */
.post-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint);
  position: relative;
  z-index: 2;
  margin-top: 8px;
}
.post-content {
  max-width: 720px;
  margin: 64px auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}
.post-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: .5px;
  margin: 48px 0 16px;
}
.post-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin: 36px 0 12px;
}
.post-content p { margin-bottom: 24px; }
.post-content strong { color: var(--text); font-weight: 600; }
.post-content a { color: var(--olive); text-decoration: underline; }
.post-content a:hover { color: var(--text); }
.post-content ul, .post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }

/* ── FOOTER ────────────────────────────────────────────────── */
.bn-footer { background: var(--bg); border-top: 1px solid #1a1a18; padding: 28px 0; }
.bn-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bn-footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--faint);
}
.bn-footer-links { display: flex; gap: 28px; }
.bn-footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint);
  text-decoration: none;
  transition: color .2s;
}
.bn-footer-links a:hover,
.bn-footer-links a:focus { color: var(--muted); outline: none; text-decoration: underline; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  /* Evento card: stack vertical */
  .next-event-card { grid-template-columns: 1fr; }
  .next-event-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 32px;
  }
  .next-event-right { padding: 36px 32px; }
  .info-strip-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Hero: stack vertical, panel stats -> strip mobile */
  .bn-hero-inner { grid-template-columns: 1fr; }
  .bn-stats-panel { display: none; }
  .bn-stats-strip { display: block; }
  /* Rutas: 2 columnas */
  .bn-rutas-grid { grid-template-columns: 1fr 1fr; }
  /* CTA: stack */
  .bn-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  /* Blog: 2 columnas */
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* Nav: oculta links, muestra toggle */
  .bn-nav-links { display: none; }
  .bn-nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 16px var(--pad);
    gap: 16px;
    z-index: 99;
  }
  .bn-nav-toggle { display: inline-flex; }

  /* Grids: 1 columna */
  .bn-pillars-grid { grid-template-columns: 1fr; }
  .bn-rutas-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Hero title */
  .bn-hero-title { font-size: 56px; }

  /* Strip */
  .bn-stats-strip-inner { grid-template-columns: 1fr 1fr; }

  /* Info strip */
  .info-strip-inner { grid-template-columns: 1fr; }

  /* Evento meta */
  .next-event-meta { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q-text { font-size: 17px; }

  /* Footer */
  .bn-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
