.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 {

.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;
}










/* Seção com imagem e texto lado a lado */

/* CSS LIMPO E RESPONSIVO */








body {
  background: #ffffff;
  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;
}

