/* ou só pro rodapé móvel */
.rodape-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;           /* ocupa toda a viewport sem ultrapassar */
  box-sizing: border-box; /* inclui padding na largura */
  padding: 20px;
  background-color: rgba(0,0,0,0.95)!important;
  text-align: center;
  z-index: 9999;
}

/* Estilo para o botÃ£o */
.rodape-mobile button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

@keyframes tremor {

  0%,
  20%,
  100% {
    transform: translateX(0);
  }

  5%,
  15% {
    transform: translateX(-4px);
  }

  10% {
    transform: translateX(4px);
  }
}

.shake {
  animation: tremor 2s ease-in-out infinite;
}

/* Estilo para dispositivos mÃ³veis */
@media only screen and (max-width: 768px) {
  .rodape-mobile {
    display: block;
    /* Mostra apenas em dispositivos mÃ³veis */
  }
}
