/* ─────────────────────────────────────────────────────
   GestorFin — css_shortcode_bienvenida_usuario.css
   ───────────────────────────────────────────────────── */

.gf-bu-wrap {
    display: inline-block;
}

/* ── Nombre del usuario ── */
.gf-bu-nombre {
    font-family: var(--gf-fuente-encabezado, 'Roboto', sans-serif) !important;
    color: var(--gf-color-primario, #3A86FF) !important;
    font-weight: 500 !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin: 0 0 12px !important;
}

/* ── Lista de empresas — fila horizontal ── */
.gf-bu-empresas {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0 !important;
}

/* Separador | entre items (no antes del primero) */
.gf-bu-empresa-item + .gf-bu-empresa-item::before {
    content: '|' !important;
    color: var(--gf-color-acento, #FF006E) !important;
    font-weight: 300 !important;
    padding: 0 12px !important;
    opacity: .5 !important;
    font-size: 1em !important;
}

.gf-bu-empresa-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Contenedor del logo (50×50 máx) ── */
.gf-bu-logo {
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: rgba(0, 0, 0, .04) !important;
    overflow: hidden !important;
}

.gf-bu-logo img {
    max-width: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* Ícono genérico cuando no hay logo */
.gf-bu-logo i {
    font-size: 22px !important;
    color: var(--gf-color-acento, #FF006E) !important;
}

/* ── Nombre de la empresa ── */
.gf-bu-empresa-nombre {
    font-family: var(--gf-fuente-texto, 'Roboto', sans-serif) !important;
    color: var(--gf-color-acento, #FF006E) !important;
    font-weight: 600 !important;
    font-size: 1em !important;
    line-height: 1.3 !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .gf-bu-nombre {
        font-size: 25px !important;
    }
}

@media (max-width: 480px) {
    .gf-bu-nombre {
        font-size: 18px !important;
    }
}
