#scrollToTopBtn {
   
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 30px;
}

  
       /* Contenedor general flotante */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px; /* Espaciado entre botones */
  }
  
  /* Botón principal (con texto) */
  #whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  #whatsapp-btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  
  /* Botón solo con ícono */
  .icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #006AFF;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .icon-btn img {
    width: 24px;
    height: 24px;
  }
  
  /* Hover effect (para ambos botones) */
  #whatsapp-btn:hover,
  .icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Tooltip (mensaje emergente) */
  .tooltip {
    position: absolute;
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
  }
  
  /* Posicionamiento específico de tooltips */
  #tooltip-icon {
    bottom: 90px; /* Justo encima del botón sin texto */
    right: 10px;
  }
  
  #tooltip-text {
    bottom: 40px; /* Justo encima del botón con texto */
    right: 10px;
  }
  
  /* Tooltip visible */
  .tooltip.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .tooltip.hidden {
    opacity: 0;
    transform: translateY(10px);
  }