.menu-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1001;
  font-size: 28px;
  background: #ad3aad;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-lateral {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background-color: #151912;
  color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-lateral.aberto {
  transform: translateX(0);
}

.menu-topo {
  text-align: center;
}

.logo-menu {
  width: 120px;
  margin-bottom: 10px;
}

.menu-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item {
  background-color: #f27e27;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}

















/* Botão hambúrguer */
.menu-hamburguer {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 26px;
  cursor: pointer;
  z-index: 10002;
}

/* Menu lateral (100% fora da tela quando fechado) */
.menu-lateral {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 100vh;
  background: #0e0e0e;
  color: #fff;
  padding: 15px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 10001;
}

/* Menu ativo */
.menu-lateral.ativo {
  transform: translateX(0);
}

/* Ações */
.menu-acoes {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.menu-acoes button {
  flex: 1;
  background: #1f1f1f;
  color: #fff;
  border: none;
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.menu-acoes button:hover {
  background: #333;
}

/* Texto do chat */
#chatTexto {
  font-size: 14px;
  line-height: 1.5;
}

/* Mensagens */
.mensagem {
  margin-bottom: 10px;
  padding: 8px;
  background: #1a1a1a;
  border-radius: 8px;
}
