/* HOME preta */
body.home-dark {
  background-color: #000000;
  color: #ffffff;
}

/* garante que links fiquem visíveis */
body.home-dark a {
  color: #ffffff;
}







.tela {
  padding: 20px;
}

.bolha-menu {
  position: fixed;
  bottom: 0;         /* encosta no rodapé */
  right: 20px;       /* distância da borda direita */
  background-color: #ad3aad;
  color: white;
  padding: 12px 20px;
  border-radius: 1.5rem 1.5rem 0 0; /* arredondamento no topo */
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  z-index: 9998;
}

.bolha-menu {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: #ad3aad;
  color: white;
  padding: 12px 20px;
  border-radius: 1.5rem 1.5rem 0 0;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  z-index: 9998;
}

.menu-lex-flutuante {
  position: fixed;
  bottom: 60px; /* ou 65px se quiser mais folga */
  right: 20px;
  background: white;
  border: 2px solid #ad3aad;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  z-index: 9997; /* abaixo do botão */
}

.menu-lex-flutuante.oculto {
  display: none;
}

.btn-menu-lex-flutuante {
  background-color: #f27e27;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: bold;
}

/* CSS LIMPO E RESPONSIVO */

body {
  background: #000000; /* ALTERADO AQUI */
  margin: 0;
  font-family: sans-serif;
}

/* Botão do menu flutuante */
.menu-bolha {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #008000;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Container do menu */
.menu-bolha-container {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Ocultar por padrão */
.oculto {
  display: none;
}

/* Botões dentro do menu */
.menu-bolha-item {
  padding: 10px 15px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
}

.menu-bolha-item:hover {
  background-color: #e0e0e0;
}






.bloco-ganhos {
  background-color: #151912;
  color: #ffffff;
}

/* garante títulos e textos */
.bloco-ganhos h1,
.bloco-ganhos h2,
.bloco-ganhos h3,
.bloco-ganhos p,
.bloco-ganhos strong {
  color: #ffffff;
}












/* ===== MENU FLUTUANTE — FORÇA TEMA ESCURO ===== */

/* container do menu aberto */
.menu-lex-flutuante,
.menu-bolha-container {
  background-color:#ffffff !important; /* VERDE */
  border: none !important;
}

/* botões internos */
.btn-menu-lex-flutuante,
.menu-bolha-item {
  background-color: #000000 !important; /* PRETO */
  color: #ffffff !important;
  border: none !important;
}

/* hover continua coerente */
.btn-menu-lex-flutuante:hover,
.menu-bolha-item:hover {
  background-color: #111111 !important;
}

/* remove qualquer herança clara */
.menu-lex-flutuante *,
.menu-bolha-container * {
  color: #ffffff !important;
}

.bolha-menu,
.bolha-menu.ativo {
  background-color: #008000;
  color: #ffffff;
}






/* Painel Dialogo */

.painel-dialogo {
  max-height: 300px;
  overflow-y: auto;
  background: #0e0e0e;
  border-radius: 12px;
  padding: 12px;
  margin-top: 10px;
  font-family: monospace;
  color: #eaeaea;
}

.msg-user {
  color: #00ff88;
  margin-bottom: 8px;
}

.msg-lexa {
  color: #4da6ff;
  margin-bottom: 12px;
}








/* MENU HAMBURG */


/* Ícone do menu (hambúrguer) */
.menu-hamburguer {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 26px;
  cursor: pointer;
  z-index: 10001;
  background: transparent;
}

/* Menu lateral (invisível por padrão) */
.menu-lateral {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: #0e0e0e;
  color: #fff;
  padding: 15px;
  overflow-y: auto;
  z-index: 10000;

  /* 🔥 ESSENCIAL */
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  will-change: transform;
}

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

/* Conteúdo do chat em texto */
#chatTexto {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

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