.whatsapp-button {
    position: fixed;
    bottom: 90px; /* Ajusta para colocarlo justo encima del botón de subir */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .whatsapp-button:hover {
    background-color: #20b158;
    transform: scale(1.1);
  }
  
  .whatsapp-button i {
    font-size: 24px;
  }
  
  .hidden {
    display: none; /* Oculta el elemento */
}
