/* ============================================================
   H.Analistas — Header unificado
   Incluir en <head>, DESPUÉS de la fuente y del <style> de la página:
   <link rel="stylesheet" href="/assets/header.css">
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@700&display=swap');

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,16,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #232838;
}
.site-header .nav{
  width: 100%;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bloque logo + marca — idéntico en todas las páginas */
.site-header .brand-lockup{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.site-header .logo-badge{
  width: 34px;
  height: 34px;
  background: #f5f0e6;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}
.site-header .logo-badge img{
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
  border-radius: 0;
}
.site-header .brand-text{
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #eef1f6;
}
.site-header .brand-text span{ color: #d4a537; }

@media(max-width: 600px){
  .site-header .nav{ padding: 16px 20px; }
}
