.whatsapp-btn {
      position: fixed;
      bottom: 120px;
      right: 20px;
      color: #ffffff; /* Texto en color blanco */
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      font-size: 18px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease; /* Agregamos transición para suavizar el efecto */
    }

    /* Estilos para el ícono de WhatsApp */
    .whatsapp-btn img {
      width: 65px;
      height: 65px;
      margin-right: 5px;
    }

    /* Efecto de escala al hacer hover */
    .whatsapp-btn:hover {
      transform: scale(1.1);
    }