.sidebar {
  width: 350px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sidebar .area-util{
  padding-top: 8vh;
}

.sidebar.collapsed {
  transform: translateX(-100%);
}

.sidebar.collapsed + .content {
  margin-left: 0;
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #dbdbdb;
  border-radius: 10px;
}

/* Estilo para os botões */
.nav-link {
  color: #000 !important;
  text-decoration: none;
}

.nav-link.active {
  background-color: #4157a3 !important;
  color: #fff !important;
}

.nav-link.link-dark {
  color: #6c757d !important;
}

.nav-link:hover {
  background-color: #708ae6 !important;
}