/* Botão flutuante WhatsApp — tamanho fixo, nunca cobre a tela */
.connecttv-wa-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.connecttv-wa-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.connecttv-wa-fab svg,
.connecttv-wa-fab img {
    display: block;
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

.connecttv-wa-fab .label-wa {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .connecttv-wa-fab {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        max-width: 48px;
        max-height: 48px;
        bottom: 14px;
        right: 14px;
    }

    .connecttv-wa-fab svg,
    .connecttv-wa-fab img {
        width: 24px;
        height: 24px;
        max-width: 24px;
        max-height: 24px;
    }
}
