/* ===============================
   MENU INFERIOR - MENU GERAL
   =============================== */

#menugeral {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  right: 0;

  display: flex;
  justify-content: space-around;
  align-items: center;

  background-color: #111;
  border-top: 2px solid var(--verde);
  padding: 0.4rem 0.2rem;

  z-index: 999;
}

/* Botões do menu */
#menugeral button {
  flex: 1;
  background: none;
  border: none;
  color: var(--branco);
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 0.2rem;
  padding: 0.4rem 0;

  transition: all 0.2s ease;
}

/* Ícone */
#menugeral button {
  font-size: 1.4rem;
}

/* Texto */
#menugeral button span {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Hover / ativo */
#menugeral button:hover {
  background-color: rgba(0, 200, 83, 0.15);
}

#menugeral button.active {
  color: var(--verde);
}

/* Espaço extra no conteúdo para não ficar atrás do menu */
body {
  padding-bottom: 80px;
}

/* Ajuste mobile muito pequeno */
@media (max-width: 360px) {
  #menugeral button span {
    font-size: 0.55rem;
  }
}
