/* =========================================
   ESTILO CONTADOR SOCIAL PROOF (Corregido y Completo)
   ========================================= */

.undato-premium-wrapper {
    /* CAMBIOS CLAVE PARA QUE BAJE DE LÍNEA */
    display: flex;         /* Fuerza el salto de línea */
    width: fit-content;    /* Ajusta el ancho al contenido */
    clear: both;           /* Asegura que no flote nada a los lados */

    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px 8px 12px;
    border-radius: 50px;

    /* ESPACIADO VERTICAL */
    margin-top: 15px !important;
    margin-bottom: 25px !important;

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, system-ui, sans-serif;
    max-width: 100%;
}

/* Círculos de Avatares */
.undato-avatars {
    display: flex;
    margin-right: 10px;
}

.avatar-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

/* Colores de Avatares */
.av-1 { background-color: #cbd5e1; z-index: 3; margin-left: 0; }
.av-2 { background-color: #94a3b8; z-index: 2; }
.av-3 { background-color: #64748b; z-index: 1; }

/* Texto y Negrita */
.undato-premium-text {
    font-size: 11px;
    color: #344054;
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.undato-premium-text strong {
    color: #101828;
    font-weight: 700;
    margin-right: 4px;
}

/* Punto Verde Pulsante */
.live-dot {
    width: 6px;
    height: 6px;
    background-color: #12b76a;
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.7);
    animation: softPulse 2s infinite;
}

@keyframes softPulse {
    0%   { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.7); }
    70%  { box-shadow: 0 0 0 6px rgba(18, 183, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0); }
}
