/* ── Estructura de Ventanas Modales Premium ── */
.swal2-premium-popup {
  border-radius: 16px !important;
  padding: 1.5rem !important;
}
.swal2-premium-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  font-size: 1.25rem !important;
}

/* ── BOTONES PREMIUM (ESTANDARIZADOS) ── */

/* Base para todos los botones premium */
.btn-premium-confirm,
.btn-premium-danger,
.btn-premium-warning,
.btn-premium-corp,
.btn-premium-danger-corp,
.btn-premium-reset,
.btn-premium-cancel {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all .2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  letter-spacing: 0.03em !important;
  font-size: 0.82rem !important;
  padding: .6rem 1.5rem !important;
  min-height: 40px !important;
  border: none !important;
  margin-bottom: 0 !important;
  gap: 8px !important;
  line-height: 1 !important;
}

/* --- Variaciones de Color --- */

/* Azul (Principal / Corporativo) */
.btn-premium-confirm, 
.btn-premium-corp,
.btn-premium-reset {
  background: linear-gradient(135deg, #1565c0 0%, #1e88e5 100%) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(21, 101, 192, 0.3) !important;
}
.btn-premium-confirm:hover, 
.btn-premium-corp:hover,
.btn-premium-reset:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 14px rgba(21, 101, 192, 0.4) !important;
  background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%) !important;
  color: white !important;
}

/* Rojo (Peligro / Cancelar Premium) */
.btn-premium-danger, 
.btn-premium-danger-corp {
  background: linear-gradient(135deg, #c62828 0%, #ef5350 100%) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(198, 40, 40, 0.3) !important;
}
.btn-premium-danger:hover, 
.btn-premium-danger-corp:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 14px rgba(198, 40, 40, 0.4) !important;
  background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%) !important;
  color: white !important;
}

/* Amarillo (Advertencia) */
.btn-premium-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3) !important;
}
.btn-premium-warning:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.4) !important;
  color: white !important;
}

/* Cancelar (Gris Minimalista / Neutro) */
.btn-premium-cancel {
  background: #f8fafc !important;
  color: #64748b !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: none !important;
}
.btn-premium-cancel:hover {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
}

/* Ajustes Activos (Click) */
.btn-premium-confirm:active,
.btn-premium-danger:active,
.btn-premium-corp:active {
  transform: translateY(0) !important;
}
