/* ===============================
   WEUF SOCIAL - REAÇÕES MODERNAS
================================ */

.weuf-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0;
}

.weuf-share-group {
    display: flex;
    gap: 18px;
}

/* ===============================
   BOTÃO BASE
================================ */

.weuf-icon-btn {
    background: transparent;
    border: none;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    border-radius: 50%;
}

/* Hover moderno (halo suave) */
.weuf-icon-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

/* ===============================
   ÍCONES
================================ */

.weuf-icon-btn img.weuf-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.weuf-icon-btn:hover img.weuf-icon {
    transform: scale(1.08);
}

/* ===============================
   LIKE ESPECIAL
================================ */

.weuf-like-btn {
    background: #fff7e8;
    border: 1px solid #f1d2a6;
    border-radius: 40px;
    padding: 6px 16px;
    gap: 10px;
}

.weuf-like-btn img.weuf-icon {
    width: 24px;
    height: 24px;
}

.weuf-like-btn .weuf-count {
    font-weight: 600;
    font-size: 1rem;
    color: #a56600;
}

/* ===============================
   MICRO FEEDBACK AO CLICAR
================================ */

.weuf-icon-btn:active {
    transform: scale(0.92);
}

/* ===============================
   ANIMAÇÃO CONTADOR
================================ */

@keyframes weufPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.weuf-animate {
    animation: weufPulse 0.35s ease;
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 600px) {
    .weuf-social {
        flex-wrap: wrap;
    }
}
/* ===============================
   TOOLTIP SUAVE
================================ */

.weuf-icon-btn {
    position: relative;
}

.weuf-icon-btn::after {
    content: attr(title);
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.weuf-icon-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}
.weuf-copied img.weuf-icon {
    filter: brightness(1.2);
    transform: scale(1.15);
}
