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

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

/* Quando o botão está à esquerda, alinha os filhos à esquerda */
[style*="left:"] .delight-whatsapp-container,
[style*="left :"] .delight-whatsapp-container {
    align-items: flex-start;
}

/* ── Botão ────────────────────────────────────────────────── */
.delight-whatsapp__btn {
    display: block;
    border-radius: 50%;
    line-height: 0;
    transition: transform 0.2s ease, box-shadow 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;
}

.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;
}

/* ── Animação de 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;

    /* Animação de entrada */
    animation: delight-slide-in 0.4s ease both;
}

/* Triângulo do balão */
.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));
}

/* Se estiver à esquerda, inverte o triângulo */
.delight-whatsapp-container[style*="left"] .delight-whatsapp__greeting::after {
    right: auto;
    left: 18px;
}

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

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