.whatsapp-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
    
    /* Agrega la animación intermitente a todo el contenedor */
    animation: pulse-animation 1.5s infinite ease-in-out;
  }

  /* Definición de la animación (cambia de tamaño suavemente) */
  @keyframes pulse-animation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.08); /* Crece un 8% */
    }
    100% {
      transform: scale(1);
    }
  }

  .whatsapp-bubble {
    background-color: #ffffff;
    color: #333333;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-right: 12px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    position: relative;
    border: 1px solid #e0e0e0;
  }

  /* Pequeña flecha de la burbuja apuntando al icono */
  .whatsapp-bubble::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
  }

  /* Estilos base del botón */
  .whatsapp-btn-round {
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
  }

  /* Efecto extra cuando pases el mouse por encima */
  .whatsapp-btn-round:hover {
    background-color: #20ba5a;
  }

  .whatsapp-icon-svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
  }