/* ── PAGE HEADER ── */
.page-header {
  background: #0a0a0a;
  border-bottom: 2px solid #e8342a;
  padding: 36px 24px;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8342a;
  margin-bottom: 8px;
}

.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #f0ede6;
  line-height: 1;
  margin-bottom: 10px;
}

.page-header-desc {
  font-size: 14px;
  color: #5a5550;
}

/* ── CONTAINER ── */
.lanzamientos-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ── MESES BAR ── */
.meses-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mes {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #111;
  border: 1px solid #2a2a2a;
  color: #9a9590;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s;
}

.mes:hover {
  border-color: #e8342a;
  color: #f0ede6;
}

.mes.active {
  background: #e8342a;
  border-color: #e8342a;
  color: #fff;
}

/* ── PROXIMO GRANDE ── */
.proximo-grande {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.proximo-grande-inner {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.proximo-grande-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.5) 60%, transparent 100%);
}

.proximo-grande-content {
  position: relative;
  z-index: 2;
}

.proximo-tag {
  display: inline-block;
  background: #e8342a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.proximo-fecha {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a5550;
  margin-bottom: 6px;
}

.proximo-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #f0ede6;
  line-height: 1;
  margin-bottom: 10px;
}

.proximo-desc {
  font-size: 14px;
  color: #9a9590;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.proximo-plataformas {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ── PLATAFORMA TAGS ── */
.plataforma-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #9a9590;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plataforma-tag.sm {
  font-size: 10px;
  padding: 2px 7px;
}

/* ── MES SECCION ── */
.mes-seccion {
  margin-bottom: 36px;
}

.mes-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.mes-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #f0ede6;
  white-space: nowrap;
}

.mes-linea {
  flex: 1;
  height: 1px;
  background: #1e1e1e;
}

/* ── GRILLA ── */
.lanzamientos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* ── LANZAMIENTO CARD ── */
.lanzamiento-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}

.lanzamiento-card:hover {
  border-color: #e8342a;
  transform: translateY(-2px);
}

.lanzamiento-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lanzamiento-body { padding: 12px; }

.lanzamiento-fecha {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e8342a;
  margin-bottom: 4px;
}

.lanzamiento-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #f0ede6;
  margin-bottom: 8px;
  line-height: 1.1;
}

.lanzamiento-plataformas {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.lanzamiento-genero {
  font-size: 11px;
  color: #4a4a4a;
}

/* ═══════════════════════════════════
   MOBILE — hasta 768px
═══════════════════════════════════ */
@media (max-width: 768px) {

  .page-header {
    padding: 24px 16px;
  }

  .page-header-title {
    font-size: 36px;
  }

  .lanzamientos-container {
    padding: 20px 16px;
  }

  .proximo-grande-inner {
    height: 220px;
    padding: 16px;
  }

  .proximo-title {
    font-size: 28px;
  }

  .proximo-desc {
    display: none;
  }

  .lanzamientos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .lanzamiento-img {
    height: 80px;
  }

  .lanzamiento-titulo {
    font-size: 15px;
  }
}

/* ═══════════════════════════════════
   TABLET — entre 769px y 1024px
═══════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  .lanzamientos-container {
    padding: 24px 16px;
  }

  .lanzamientos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proximo-grande-inner {
    height: 250px;
  }

  .proximo-title {
    font-size: 32px;
  }
}
