@keyframes slideRight {
    from {
      left: -100%;
    }
    to {
      left: 50%;
      transform: translateX(-50%);
    }
  }

  .sliding-div { 
    top: 50%;
      left: -100%; /* Inicialmente fora da tela à esquerda */
      transform: translateX(-50%);
      animation: slideRight 2s ease-in-out forwards;
  }

  #floating-button {

    margin: 0;
    padding: 0;
    height: 100vh; /* 100% da altura da tela */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 100;
  }

  #floating-button img {
    width: 55px; /* Ajuste conforme necessário */
    height: 55px; /* Ajuste conforme necessário */
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Adiciona sombreamento cinza */

  }