/* ================================================================
   header-logo.css — GAMS Sacaba
   Estilos del bloque logo + búsqueda + bicentenario.
   Extraído de parts/header-logo.php.
   ================================================================ */

/* ── Cabecera contenedor ──────────────────────────────────── */
#cabecera {
  background-color: var(--header-bg);
  border-bottom: var(--header-borde);
}
[data-theme="dark"] #cabecera {
  background-color: var(--background-default);
}

/* ── Wrapper interno ─────────────────────────────────────── */
#gams-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  max-width: var(--max-ancho);
  margin: 0 auto;
}

/* ── Brand: logo + texto ─────────────────────────────────── */
#gams-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

#gams-logo-circle {
  width: 112px;
  height: 112px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gams-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#gams-brand-text h1 {
  font-weight: 700 !important;
  color: var(--primary-main) !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}
[data-theme="dark"] #gams-brand-text h1 {
  color: var(--texto-default) !important;
}

#gams-brand-text h4 {
  font-weight: 400 !important;
  color: var(--texto-suave) !important;
  line-height: 1.3 !important;
  margin: 2px 0 0 !important;
}
[data-theme="dark"] #gams-brand-text h4 {
  color: var(--texto-suave) !important;
}

#gams-brand-text h6 {
  font-weight: 600 !important;
  color: var(--color-acento-dark) !important;
  line-height: 1.2 !important;
  margin: 3px 0 0 !important;
}

/* ── Buscador ────────────────────────────────────────────── */
#gams-search-wrap {
  flex: 1;
  max-width: 420px;
}
#gams-search-wrap form {
  display: flex;
  align-items: center;
  background: var(--background-input);
  border-radius: 24px;
  padding: 6px 14px;
  gap: 8px;
}
#gams-search-wrap input[type="search"] {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  color: var(--texto-default) !important;
  flex: 1;
  box-shadow: none !important;
  font-family: var(--fuente);
}
#gams-search-wrap input[type="search"]::placeholder {
  color: var(--texto-muy-suave);
}
#gams-search-wrap button {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  color: var(--texto-muy-suave);
  display: flex;
  align-items: center;
}
#gams-search-wrap button i { font-size: 16px; }

/* ── Bloque derecho ──────────────────────────────────────── */
#gams-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Bicentenario fallback texto */
#gams-bicentenario { text-align: center; line-height: 1; }
#gams-bicentenario .bic-num {
  font-weight: 700;
  color: #C8102E;
  line-height: 1;
  display: block;
  font-size: 2rem;
}
#gams-bicentenario .bic-bo {
  font-weight: 600;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
}
#gams-bicentenario .bic-txt {
  color: #C8102E;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
}

/* Logo derecho (bicentenario imagen) */
#gams-logo-right img {
  height: 104px;
  object-fit: contain;
}

/* Toggle modo oscuro */
#gams-header-right #theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--texto-suave);
  padding: 4px;
  font-size: 1.1rem;
  line-height: 1;
}

/* Línea amarilla obligatoria AGETIC */
.linea-cabecera {
  height: 5px;
  background: var(--color-acento);
  margin: 0;
  padding: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  #gams-header-wrap {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 10px;
  }

  /* ── Fila 1: logo + marca/eslogan ─────────────────────── */
  #gams-brand {
    order: 1;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  #gams-logo-circle {
    width: 90px;
    height: 90px;
  }

  #gams-brand-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  /* Texto se adapta al ancho real disponible y permite wrap,
     como ajuste de texto / "wrap text" de Excel */
  #gams-brand-text h1 {
    font-size: clamp(1.1rem, 6.5vw, 1.4rem) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #gams-brand-text h4 {
    font-size: clamp(0.82rem, 4vw, 1rem) !important;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.15 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #gams-brand-text h6 {
    font-size: clamp(0.72rem, 3.5vw, 0.94rem) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── Fila 2: buscador (izq) + tema/burger (der) ───────── */
  #gams-search-wrap {
    order: 2;
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
  }

  #gams-header-right {
    order: 3;
    flex: 0 0 auto;
    gap: 8px;
  }

  /* Ocultar elementos que no aplican en este layout simplificado */
  #gams-logo-right,
  #gams-bicentenario {
    display: none !important;
  }
}
