/**
 * Estilos para el botón flotante de WhatsApp
 * 
 * @package DrucklabCore
 * @since 1.0.0
 */

.drucklab-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: drucklab-fade-in 0.3s ease-in-out;
}

.drucklab-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #3DDC97;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.drucklab-whatsapp-button:hover {
    background: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.drucklab-whatsapp-button:active {
    transform: scale(0.95);
}

.drucklab-whatsapp-button svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* Animación de entrada */
@keyframes drucklab-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .drucklab-whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}
