/* WhatsApp Flotante - Versión con imagen personalizada */
.whatsapp-float {
    position: fixed;
    width: 70px; /* Ajusta según el tamaño de tu imagen */
    height: 70px; /* Ajusta según el tamaño de tu imagen */
    bottom: 25px;
    right: 25px;
  background-color: transparent;  Fondo transparente 
   /* color: #FFF;*/
    border-radius: 0; /* Sin bordes redondeados si tu imagen ya los tiene */
    text-align: center;
    font-size: 30px;
   /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);*/
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-image: url('iconSocial/iconow.png'); /* Cambia por tu ruta */
    background-size: cover; /* Asegura que la imagen cubra todo el botón */
    background-repeat: no-repeat;
    background-position: center;
}

.whatsapp-float:hover {
    background-color: transparent; /* Mantener transparente */
    transform: scale(1.1);
   /* box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);*/
}

.whatsapp-float i {
    display: none; /* Oculta el ícono de Font Awesome */
}

/* Tooltip */
.whatsapp-float::after {
    content: "¡Contáctanos por WhatsApp!";
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float::after {
        font-size: 12px;
        right: 70px;
    }
}