

    .whatsapp-button-container {
      font-family: Arial, Helvetica, sans-serif;
      position: fixed;
      align-items: center;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      z-index: 9999;
    }

    .floating-button {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #25d366;
      color: white;
      border: none;
      border-radius: 50%;
      padding: 16px;
      font-size: 32px;
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 60px;
      height: 60px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      margin-bottom: 0px;
      animation: pulse 2s infinite;
    }

    .whatsapp-icon {
      font-size: 40px;
      width: 40px;
      height: 40px;
      background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg') no-repeat center;
      background-size: contain;
    }

    .whatsapp-button-text {
      display: none;
    }

    .floating-button:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }

    @keyframes bounce {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
      100% {
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .whatsapp-button-container {
        bottom: 10px; /* Mantener en la parte inferior derecha */
        right: 10px; /* Mantener alineado a la derecha */
        transform: none; /* Elimina la traslación que lo centra */
      }

      .floating-button {
        width: 50px; /* Tamaño ajustado para móvil */
        height: 50px;
        font-size: 28px;
        padding: 12px;
      }

      .whatsapp-icon {
        font-size: 32px;
        width: 32px;
        height: 32px;
      }

      .whatsapp-button-text {
        display: none;
      }
    }