
/* Mobile Bottom Nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(-222deg, rgb(25, 35, 45), #0f1c29);
  z-index: 1040;
  display: flex;
  justify-content: space-between; 
  align-items: stretch; 
  padding: 0; 
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  height: 65px; 
  border-top-left-radius: 8px; 
  border-top-right-radius: 8px;
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 10px !important;
  text-align: center;
  flex: 1; 
  text-decoration: none;
  transition: all 0.2s;
  padding: 6px;
}

.mobile-bottom-nav .nav-item .icon-container {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.2s;
}

.mobile-bottom-nav .nav-item i {
  font-size: 15px;
  transition: all 0.2s;
}

/* Estado Ativo: Fundo Amarelo, Ícone Preto, Texto Preto */
.mobile-bottom-nav .nav-item.active {
  background-color: #F3B600;
  color: #19232D;
  border-radius: 8px; 
  margin: 6px; 
  border-radius: 8px;
}

.mobile-bottom-nav .nav-item.active img {
  opacity: 1;
  filter: brightness(0); /* Make icons black */
}

.mobile-bottom-nav .nav-item.active i {
  color: #19232D;
}

.menu-destaque {
  color: #F3B600 !important;
}

/* Sidebar Toggle Mobile */
@media (max-width: 768px) {
  .template-sidebar-fixed {
    display: block !important; 
    position: fixed;
    z-index: 9999;
    width: 100%; 
    height: 100dvh; 
    top: 0;
    left: 0;
    padding-right: 20px; 
    padding-left: 0; 
    box-shadow: none; 
    overflow-y: auto;
    background: linear-gradient(-222deg, rgb(25, 35, 45), #0f1c29);
    transform: translateY(100%); 
    transition: transform 0.3s ease-in-out;
  }

  /* Quando ativo, desliza para cima (0) */
  .template-sidebar-fixed.show-sidebar {
    transform: translateY(0);
  }

  .sidebar-mobile-header img.logo-mobile {
    height: 60px;
    width: auto;
  }
}

/* Custom Header na Sidebar Mobile */
.sidebar-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 0;
}

.sidebar-mobile-header .btn-close-sidebar {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.sidebar-mobile-header .btn-close-sidebar img {
  width: 24px;
  height: 24px;
}