﻿/* ==============================
   WhatsApp (balão + botão)
   ============================== */

@media (max-width: 800px) {
    .wa-tip {
        display: none !important;
    }
}


/* Container fixo */
.wa-widget {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 1055 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Balão */
.wa-tip {
    position: absolute !important;
    right: -8px !important;
    bottom: 63px !important; /* fica acima do botão */
    width: 260px !important;
    background: #fff !important;
    border-radius: 14px !important;
    padding: 16px 18px 16px 18px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.12) !important;
    color: #333 !important;
    line-height: 1.35 !important;
    font-size: 15px !important;
}

    /* Seta triangulada apontando pro botão */
    .wa-tip::after {
        content: "";
        position: absolute;
        right: 24px; /* alinha com o botão */
        bottom: -10px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 12px solid #fff;
        filter: drop-shadow(0 6px 6px rgba(0,0,0,.08));
    }

    /* Título do balão */
    .wa-tip strong {
        display: block !important;
        font-weight: 600 !important;
        margin-bottom: 6px !important;
    }

    /* Fechar (X) */
    .wa-tip .wa-x {
        position: absolute;
        top: 10px;
        right: 12px;
        border: 0;
        background: transparent;
        color: #9aa0a6;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        padding: 0;
    }

        .wa-tip .wa-x:hover {
            color: #6b7280;
        }

/* Botão redondo (AJUSTADO PARA O TAMANHO DO PRINT) */
.wa-btn {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    transition: transform .15s ease, filter .15s ease;
}

    .wa-btn:hover {
        transform: translateY(-1px);
        filter: brightness(1.03);
        color: #fff;
    }

    /* Ícone Font Awesome */
    .wa-btn i {
        font-size: 22px;
    }
