/* Botón flotante de WhatsApp */
.dawf-floating-button {
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dawf-floating-button:hover {
    transform: scale(1.1);
}

.dawf-position-bottom-right {
    bottom: 20px;
    right: 20px;
}

.dawf-position-bottom-left {
    bottom: 20px;
    left: 20px;
}

.dawf-position-top-right {
    top: 20px;
    right: 20px;
}

.dawf-position-top-left {
    top: 20px;
    left: 20px;
}

.dawf-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dawf-whatsapp-link:hover {
    background-color: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

.dawf-whatsapp-link svg {
    width: 32px;
    height: 32px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Animación de pulso */
@keyframes dawf-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.dawf-whatsapp-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0;
    animation: dawf-pulse 2s infinite;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .dawf-floating-button {
        bottom: 15px;
        right: 15px;
        left: auto;
    }
    
    .dawf-whatsapp-link {
        width: 56px;
        height: 56px;
    }
    
    .dawf-whatsapp-link svg {
        width: 28px;
        height: 28px;
    }
}

