/* Social Proof Notifications — compactas, canto inferior esquerdo (estilo xgram) */
.social-notification {
    position: fixed;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(19, 12, 31, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 9px 14px 9px 9px;
    box-shadow: 0 8px 30px -10px rgba(5, 2, 12, 0.9);
    border: 1px solid #241B34;
    max-width: 260px;
    z-index: 900;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.social-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Avatar com anel gradiente */
.social-notification-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #A855F7 55%, #EC4899);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px -4px rgba(168, 85, 247, 0.6);
}

.social-notification-body {
    min-width: 0;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 1px;
}

.social-notification-platform {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
}

.social-notification-platform i {
    color: #A855F7;
    font-size: 11px;
}

.social-notification-username {
    display: none;
}

.social-notification-name {
    font-weight: 600;
    color: #FAFAFA;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-notification-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: #86EFAC;
    font-weight: 600;
    flex-shrink: 0;
}

.social-notification-time::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22C55E;
}

.social-notification-action {
    color: #A79FB9;
    font-size: 10px;
    line-height: 1.35;
}

.social-notification-action strong {
    color: #C4B5FD;
    font-weight: 600;
}

@media (max-width: 768px) {
    .social-notification {
        bottom: 14px;
        left: 10px;
        right: auto;
        max-width: 225px;
        padding: 8px 12px 8px 8px;
    }

    .social-notification-avatar {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
