
/* ********************************************************************************************************************* */
.div-fixa {
  position: fixed;
  top: 40%; /* Ajuste aqui a distância do topo */
  right: 0;
  width: 100px; /* Ajuste aqui a largura desejada */
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(50%); /* Move a div 50% para a esquerda para centralizar */
  z-index: 999;
  /* background-color: #ffff00; */
  /* color: #001866; */
  padding: 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: none;
}

/* Ajuste para telas menores */
@media screen and (max-width: 768px) {
  .div-fixa {
      width: 100px;
      top: 65%; /* Ajuste aqui a distância do topo */
      /* display: none; */
  }
  .apaga{
    display: none;
  }
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.botao-topo {
  position: fixed;
  bottom: 20px;
  left: 10px;
  background-color: #ff00008c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* Inicialmente oculto */
  z-index: 1000; /* Garante que fique acima de outros elementos */
}
/* ********************************************************************************************************************* */