/* ===========================
   MENU COM DEGRAD���
   =========================== */

/* Container principal do menu */
.navbar {
  background: linear-gradient(135deg, #0d0f13, #1b1d22, #131518);
  border-bottom: 2px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Links principais */
.navbar .nav-link {
  color: #e9eef3;
  text-decoration: none;
  font-weight: 600;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #00ff88;
  text-shadow: 0 0 8px rgba(0,255,136,0.7);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

/* Bot���o do usu���rio */
.btn-user {
  background: linear-gradient(135deg, #1f1f22, #0f0f12);
  color: #e9eef3;
  border: 1px solid rgba(0,255,136,0.4);
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-user:hover {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #111;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(0,255,136,0.6), 0 0 20px rgba(0,212,255,0.4);
}

/* Dropdown do usu���rio */
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: linear-gradient(180deg, #1c1f24, #101214);
  border: 1px solid rgba(0,255,136,0.35);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,.7);
  display: flex;
  flex-direction: column;
  min-width: 220px;
  z-index: 2000;
  overflow: hidden;
}

.user-dropdown a {
  padding: 12px 16px;
  color: #e9eef3;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.user-dropdown a:hover {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  color: #111;
}

.user-dropdown a:last-child {
  border-bottom: none;
}

.user-dropdown.hidden {
  display: none;
}
