/* ============================================================
   Delight WhatsApp — Public CSS v3.1.0
   ============================================================ */

.delight-whatsapp-container {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* ── Botão ────────────────────────────────────────────────── */
.delight-whatsapp__btn {
    display: block;
    border-radius: 50%;
    line-height: 0;
    transition: transform 0.2s ease;
    outline-offset: 3px;
    text-decoration: none;
}

.delight-whatsapp__btn img {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
    display: block;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.delight-whatsapp__btn:hover img,
.delight-whatsapp__btn:focus img {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.50);
    transform: scale(1.08);
}

.delight-whatsapp__btn:focus { outline: 3px solid #25D366; }

/* Desabilitado (fora do horário) */
.delight-whatsapp__btn--disabled { opacity: 0.45; cursor: not-allowed; }
.delight-whatsapp__btn--disabled:hover img { transform: none; box-shadow: 0 4px 12px rgba(0,0,0,0.20); }

/* ── Pulso ────────────────────────────────────────────────── */
.delight-whatsapp--pulse {
    animation: delight-pulse 2.2s ease-in-out infinite;
}

@keyframes delight-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    50%       { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ── Balão de saudação ────────────────────────────────────── */
.delight-whatsapp__greeting {
    background: #ffffff;
    color: #111;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1.4;
    max-width: 220px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    position: relative;
    animation: delight-slide-in 0.4s ease both;
}

.delight-whatsapp__greeting::after {
    content: '';
    position: absolute;
    bottom: -9px;
    right: 18px;
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 9px solid #ffffff;
    filter: drop-shadow(0 2px 1px rgba(0,0,0,0.08));
}

/* ── Balão offline ────────────────────────────────────────── */
.delight-whatsapp__offline {
    background: #fff3cd;
    color: #856404;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ffc107;
    font-size: 12px;
    max-width: 200px;
    text-align: center;
}

@keyframes delight-slide-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .delight-whatsapp__greeting { max-width: 170px; font-size: 13px; }
}
