/* ================================
   🔝 NAVBAR (apenas os usados)
================================== */


.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.navbar-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.brand-text {
  line-height: 1.1;
  font-size: 1.2rem;
}

.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0d6efd;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar .btn {
  transition: all 0.3s ease;
}

.navbar .btn:hover {
  transform: translateY(-2px);
}
