.social-proof-popup {
    position: fixed;
    z-index: 99999;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.6s ease;
    background-clip: padding-box;
}

/* Avatar */
.social-proof-popup-avatar img.popup-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Conteúdo */
.social-proof-popup-content {
    flex: 1;
}

.social-proof-popup-content .emoji {
    width: 18px;
    height: 18px;
}

/* Posições */
.social-proof-popup.bottom-left {
    bottom: 20px;
    left: 20px;
}

.social-proof-popup.bottom-right {
    bottom: 20px;
    right: 20px;
}

.social-proof-popup.top-left {
    top: 20px;
    left: 20px;
}

.social-proof-popup.top-right {
    top: 20px;
    right: 20px;
}

/* Estados */
.social-proof-popup.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ✨ Animações */
@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes de animação */
.social-proof-popup.slide.visible {
    animation: slide-in-up 0.6s ease forwards;
}

.social-proof-popup.fade.visible {
    animation: fade-in 0.6s ease forwards;
}

.social-proof-popup.zoom.visible {
    animation: zoom-in 0.6s ease forwards;
}

/* 💡 Responsividade */
@media (max-width: 480px) {
    .social-proof-popup {
        max-width: 260px;
        font-size: 13px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .social-proof-popup-avatar img.popup-avatar {
        width: 34px;
        height: 34px;
    }
}