/* css/social-proof.css */
.sp-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none; /* Let clicks pass through */
}

/* Ocultar en móviles por UX para no interferir con la navegación */
@media (max-width: 768px) {
    .sp-container {
        display: none !important;
    }
}

.sp-toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Geist', 'Outfit', sans-serif;
    max-width: 340px;
    will-change: transform, opacity;
}

.sp-img-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.sp-img-wrapper.type-download {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    color: #e4e4e7; /* zinc-200 */
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-img-wrapper.type-register {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    color: #e4e4e7;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-img-wrapper.type-purchase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-img-wrapper.type-subscribe {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 10px rgba(255,255,255,0.1); /* Brillo sutil extra para premium */
}

.sp-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sp-text {
    font-size: 13px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-text strong {
    color: #fff;
    font-weight: 600;
}

.sp-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}
