/* ========================= */
/* Hero de Inicio (home.css) */
/* ========================= */
.hero {
  position: relative;
  border-radius: 12px;
  padding: 18px 0 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(80, 80, 80, 0.7) 0%, rgba(40, 40, 40, 0.85) 100%), url('/media/panel/tire.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(12, 38, 70, 0.25);
}

.hero-compact {
  min-height: 96px;
}

.hero-title {
  margin: 0 0 6px 0;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 1.6rem;
}

.hero-subtitle {
  font-size: 1rem;
  opacity: .95;
}

.hero-actions .btn {
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.hero-actions .btn:hover {
  transform: translateY(-1px);
}

/* Select2 dentro del hero */
.hero .select2-container .select2-selection--single {
  height: 32px;
  border-radius: 8px;
  border: none;
}

.hero .select2-container .select2-selection__rendered {
  line-height: 32px;
}

.hero .select2-container .select2-selection__arrow {
  height: 32px;
}

/* Tarjetas: hover sutil y métricas */
.card-hover {
  transition: transform .15s ease, box-shadow .15s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.metric-card .metric-number {
  font-weight: 800;
}