/* WhatsApp Floating Bubble - Muebles y Estilo */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    text-decoration: none;
}
.whatsapp-float__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.45);
    transition: box-shadow 0.3s ease;
}
.whatsapp-float:hover .whatsapp-float__icon {
    box-shadow: 0 6px 20px rgba(37,211,102,.6);
}
.whatsapp-float__icon svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}
.whatsapp-float__label {
    background: #fff;
    color: #333;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-float__icon {
        width: 54px;
        height: 54px;
    }
    .whatsapp-float__icon svg {
        width: 30px;
        height: 30px;
    }
    .whatsapp-float__label {
        display: none;
    }
}
/* Pulse animation */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float__icon {
    animation: wa-pulse 2.5s infinite;
}
