/* ===============================
   WHATSAPP FLOATING BUTTON (site-wide)
================================ */
.whatsapp-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.whatsapp-cta .wa-label {
    background-color: #111;
    color: #fff;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    white-space: nowrap;
    padding: .55rem .9rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}
.whatsapp-cta:hover .wa-label {
    opacity: 1;
    transform: translateX(0);
}
.whatsapp-cta .wa-btn {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.28);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-cta .wa-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25D366;
    animation: wa-pulse 2.2s ease-out infinite;
    z-index: -1;
}
.whatsapp-cta:hover .wa-btn {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.32);
}
.whatsapp-cta .wa-btn svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: .55; }
    100% { transform: scale(1.85); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .whatsapp-cta .wa-btn::before { animation: none; }
}
@media (max-width: 480px) {
    .whatsapp-cta {
        right: 16px;
        bottom: 16px;
    }
    .whatsapp-cta .wa-label {
        display: none;
    }
    .whatsapp-cta .wa-btn {
        width: 52px;
        height: 52px;
    }
    .whatsapp-cta .wa-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* ===============================
   SUPPORT FLOATING BUTTON (site-wide)
   Stacked directly above the WhatsApp button.
================================ */
.support-cta {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}
.support-cta .support-label {
    background-color: #111;
    color: #fff;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    white-space: nowrap;
    padding: .55rem .9rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}
.support-cta:hover .support-label {
    opacity: 1;
    transform: translateX(0);
}
.support-cta .support-btn {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: #800000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.28);
    transition: transform .2s ease, box-shadow .2s ease;
}
.support-cta:hover .support-btn {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.32);
}
.support-cta .support-btn svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}
@media (max-width: 480px) {
    .support-cta {
        right: 16px;
        bottom: 80px;
    }
    .support-cta .support-label {
        display: none;
    }
    .support-cta .support-btn {
        width: 52px;
        height: 52px;
    }
    .support-cta .support-btn svg {
        width: 24px;
        height: 24px;
    }
}
