.sidebar-gestao {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: #120c23;
  color: #fff;
  transition: width 0.3s, left 0.3s;
  z-index: 1000;
  overflow-x: hidden;
  box-shadow: 2px 0 8px rgba(0,0,0,0.08);
}
.sidebar-gestao.collapsed {
  width: 0;
  left: -220px;
}
.btn-toggle-sidebar {
  /* position: fixed;
  top: 86px;
  left: 10px; */
  width: 36px;
  height: 36px;
  background: #d2a8ff;
  border: none;
  border-radius: 50%;
  color: #120c23;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* z-index: 1101; */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: left 0.3s;
}
.sidebar-gestao:not(.collapsed) ~ .btn-toggle-sidebar {
  left: 230px;
}