#whatsapp-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

#whatsapp-flotante:hover {
    transform: scale(1.1);
}

#whatsapp-flotante img {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

#whatsapp-flotante .ws-tooltip {
    background: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

/* Flechita del tooltip */
#whatsapp-flotante .ws-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #25d366;
}

#whatsapp-flotante:hover .ws-tooltip {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 600px) {
    #whatsapp-flotante {
        bottom: 20px;
        right: 20px;
    }
    #whatsapp-flotante img {
        width: 55px;
        height: 55px;
    }
    #whatsapp-flotante .ws-tooltip {
        display: none; /* Ocultamos el texto en móviles para no tapar contenido */
    }
}
