.dashboard-production {
  display: grid;
  gap: 22px;
}

.dashboard-production-head {
  margin-bottom: 0;
}

.dashboard-production-eyebrow {
  margin-bottom: 4px;
  color: #71819a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-production-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-production-kpi {
  min-height: 108px;
  padding: 22px;
  border: 1px solid rgba(117, 175, 255, 0.38);
  border-radius: 22px;
  background:
    radial-gradient(circle at right, rgba(54, 217, 190, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
  box-shadow: 0 16px 40px rgba(22, 39, 73, 0.08);
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dashboard-production-kpi:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 104, 255, 0.42);
  box-shadow: 0 22px 48px rgba(22, 39, 73, 0.12);
}

.dashboard-production-kpi span {
  display: block;
  margin-bottom: 8px;
  color: #71819a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-production-kpi strong {
  display: block;
  color: #14203a;
  font-size: 34px;
  line-height: 1;
}

.dashboard-production-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf3ff, #dffbf5);
  color: #5268ff;
  box-shadow: inset 0 0 0 1px rgba(82, 104, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.dashboard-production-icon.small {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.dashboard-production-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 20px;
}

.dashboard-production-panel {
  padding: 22px;
}

.dashboard-production-panel-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-production-panel-title h2 {
  margin: 0;
  color: #152039;
  font-size: 24px;
  line-height: 1.1;
}

.dashboard-production-panel-title p {
  margin-top: 5px;
}

.dashboard-production-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-production-action {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(210, 220, 235, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dashboard-production-action:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 104, 255, 0.25);
  box-shadow: 0 16px 34px rgba(22, 39, 73, 0.09);
}

.dashboard-production-action strong {
  display: block;
  margin-bottom: 5px;
  color: #17223b;
  font-size: 15px;
}

.dashboard-production-action span {
  display: block;
  color: #75859d;
  font-size: 13px;
  line-height: 1.35;
}

.dashboard-production-summary-list {
  display: grid;
  gap: 12px;
}

.dashboard-production-summary-list div {
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(210, 220, 235, 0.7);
  border-radius: 16px;
  background: linear-gradient(135deg, #f7faff, #eef7ff);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-production-summary-list span {
  color: #65758f;
  font-size: 14px;
}

.dashboard-production-summary-list strong {
  color: #152039;
  font-size: 22px;
}

.dashboard-production-note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(28, 184, 132, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(28, 184, 132, 0.12), rgba(82, 104, 255, 0.1));
}

.dashboard-production-note strong {
  display: block;
  margin-bottom: 4px;
  color: #152039;
  font-size: 15px;
}

.dashboard-production-note span {
  display: block;
  color: #65758f;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .dashboard-production-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-production-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dashboard-production {
    gap: 16px;
  }

  .dashboard-production-kpis,
  .dashboard-production-menu {
    grid-template-columns: 1fr;
  }

  .dashboard-production-kpi {
    min-height: 96px;
    padding: 18px;
  }

  .dashboard-production-panel {
    padding: 18px;
  }

  .dashboard-production-panel-title {
    align-items: flex-start;
  }
}

/* FIX43: producción - dashboard limpio y módulo único Clubes/Equipos */
.dashboard-production-head {
  display: none !important;
}

.clubes-equipos-fusion {
  display: grid;
  gap: 24px;
}

.clubes-equipos-fusion > div + div {
  padding-top: 4px;
}

.dashboard-production-action[href$="/clubes"],
.nav-link[href$="/clubes"] {
  display: none !important;
}

@media (max-width: 760px) {
  .clubes-equipos-fusion {
    gap: 18px;
  }
}
