/* --- CONVERSION TOOLS GLOBAL --- */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    text-decoration: none !important;
}
.whatsapp-chat:hover {
    transform: scale(1.1);
    color: #fff;
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 10px 0;
    z-index: 9998;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sticky-bar.active {
    transform: translateY(0);
}
.sticky-bar .btn-sticky {
    margin: 0 !important;
    padding: 10px 25px !important;
    font-size: 14px !important;
    border-radius: 5px !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}
.sticky-bar .btn-call {
    background: #1c8f5c !important;
    color: white !important;
}
.sticky-bar .btn-quote {
    background: #333 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .sticky-bar {
        gap: 10px;
        padding: 10px;
    }
    .sticky-bar .btn-sticky {
        flex: 1;
        padding: 12px 5px !important;
        font-size: 11px !important;
        letter-spacing: 0 !important;
    }
}
