/* ========================================
   FLOATING BUTTONS - Bottom Right
   WhatsApp + GTranslate (solo CSS override)
   ======================================== */

/* ---- WhatsApp ---- */
.whatsapp-float {
    position: fixed !important;
    bottom: 15%;
    right: 2.5%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Pulse */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---- GTranslate Override ---- */


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

    .whatsapp-float::before {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    #gt_float_wrapper {
        bottom: 78px !important;
        right: 16px !important;
    }
}