/* User Profile Card Modernization */
.user-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin: 0 16px 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.user-profile-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#userInitials {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.user-name {
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-email {
  color: #94a3b8;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-logout-icon {
  background: transparent;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-logout-icon:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Ajuste Mobile */
@media (max-width: 1024px) {
  .user-profile-card {
    margin: 16px;
  }
}
/* Botão de Comando Luxo - Premium Design */
.btn-luxury {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #6366f1 100%) !important;
  color: #fbbf24 !important; /* Cor Dourada Premium */
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  box-shadow: 
    0 4px 15px rgba(79, 70, 229, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  margin: 0 auto;
}

.btn-luxury:hover {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #4f46e5 100%) !important;
  transform: translateY(-3px) rotate(5deg) scale(1.15) !important;
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.5) !important;
  color: #ffffff !important; /* Branco no hover */
}

.btn-luxury:active {
  transform: scale(0.9) !important;
}

.btn-luxury i {
  font-size: 16px !important;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5)) !important;
  transition: all 0.3s ease !important;
}

.btn-luxury:hover i {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) !important;
}
