body {
  margin: 0;
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  height: 100vh;
}

/* MENU */
.sidebar {
  width: 220px;
  background-color: #153E6F;
  color: white;
  transition: width 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.sidebar.collapsed {
  width: 60px;
}

.sidebar-header {
  height: 60px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: start;
  border-bottom: 1px solid #274e87;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}

.sidebar-menu {
  padding-top: 10px;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  transition: background 0.2s;
}

.sidebar-menu a:hover {
  background-color: #102d50;
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .sidebar-menu span {
  display: none;
}

/* CONTEÚDO PRINCIPAL */
.main-content {
  transition: margin-left 0.3s;
  width: 100%;
  margin-left: 220px;
}

.main-content.expanded {
  margin-left: 60px;
}

/* TOPO */
.topbar {
  height: 60px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

/* ÍCONE DE USUÁRIO */
.user-icon {
  background-color: #0d6efd;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

/* BOTÃO FIXO ☰ */
.toggle-btn-global {
  position: fixed;
  top: 15px;
  left: 15px;
  background: #153E6F;
  color: white;
  border: none;
  font-size: 20px;
  border-radius: 4px;
  padding: 6px 12px;
  z-index: 9999;
}

.login-page {
  background-image: url('../images/bg-login.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-page {
      height: 100vh;
    }