/* Colores existentes (no los toco) */
#top-menu { background:#0F6B72; }
#header   { background:#1CA0A6; border-bottom:1px solid #0e6268; }

/* Oculta el div antiguo si sigue inyectándose */
#systeck-brand{ display:none; }

/* Inserta el logo a la izquierda del título y lo centra verticalmente */
#header h1{
  position:relative;
  padding-left:56px;             /* espacio para el logo + margen */
}

#header h1::before{
  content:"";
  position:absolute;
  left:16px;                      /* separación del borde izquierdo */
  top:50%;
  transform:translateY(-50%);     /* centra a la altura de las letras */
  width:34px; height:34px;        /* ajusta tamaño del logo aquí */
  background:url("/plugin_assets/systeck_brand/images/mi-logo.png") no-repeat center / contain;
}

/* Responsive opcional */
@media (max-width:480px){
  #header h1{ padding-left:50px; }
  #header h1::before{ left:12px; width:28px; height:28px; }
}
