/* Estilos del botón de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Verde de WhatsApp */
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .whatsapp-link:hover {
    background-color: #128c7e; /* Verde más oscuro al hacer hover */
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Tooltip (Texto emergente) */
  .whatsapp-link .tooltip {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    background-color: #d32f2f; /* Rojo de ServiFlash */
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
  }
  
  .whatsapp-link:hover .tooltip {
    opacity: 1;
    visibility: visible;
  }
  
  /* Animación de iconos */
  .whatsapp-link i {
    transition: transform 0.3s ease;
  }
  
  .whatsapp-link:hover i {
    transform: rotate(15deg);
  }
  
  /* Icono de paquete (efecto adicional) */
  .whatsapp-link::after {
    content: "📦";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .whatsapp-link:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  /* Cambiar el cursor a una cajita */
body {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text x='0' y='28' font-size='28' fill='%23d32f2f'>📦</text></svg>"), auto;
  }