.wact-floating-button {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: wact-pulse 2s infinite;
}

.wact-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.wact-floating-button svg {
    width: 32px;
    height: 32px;
}

.wact-bottom-right {
    bottom: 20px;
    right: 20px;
}

.wact-bottom-left {
    bottom: 20px;
    left: 20px;
}

.wact-top-right {
    top: 20px;
    right: 20px;
}

.wact-top-left {
    top: 20px;
    left: 20px;
}

.wact-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wact-floating-button:hover .wact-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.wact-bottom-left .wact-tooltip,
.wact-top-left .wact-tooltip {
    right: auto;
    left: 70px;
}

.wact-bottom-left:hover .wact-tooltip,
.wact-top-left:hover .wact-tooltip {
    right: auto;
    left: 75px;
}

@keyframes wact-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Shortcode Button */
.wact-shortcode-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wact-shortcode-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.wact-btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.wact-btn-medium {
    padding: 12px 24px;
    font-size: 15px;
}

.wact-btn-large {
    padding: 16px 32px;
    font-size: 17px;
}

/* Widget Button */
.wact-widget-button {
    margin: 15px 0;
}

.wact-widget-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.wact-widget-link:hover {
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .wact-floating-button {
        width: 50px;
        height: 50px;
    }
    
    .wact-floating-button svg {
        width: 26px;
        height: 26px;
    }
    
    .wact-bottom-right,
    .wact-bottom-left {
        bottom: 15px;
    }
    
    .wact-bottom-right {
        right: 15px;
    }
    
    .wact-bottom-left {
        left: 15px;
    }
}