/*
Versión: 0.26.0504.2
Fecha: 2026-05-04
Cambio:
- Se agrega CSS global para header y footer reutilizables sin alterar el catálogo.
- Se agrega estilo para botón icon-only de compartir en header.
*/

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 20px 40px;
  color: #fff;
  background: rgba(8, 12, 22, .48);
  backdrop-filter: blur(14px);
}

.header__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.header__brand,
.header a {
  color: #fff;
  text-decoration: none;
}

.header__brand-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header__brand {
  font-weight: 650;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.header__nav a {
  margin-left: 20px;
  opacity: .8;
}

.header__nav a:hover {
  opacity: 1;
}

.share-icon-button {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  opacity: .82;
  transition: opacity .18s ease, background .18s ease, border-color .18s ease;
}

.share-icon-button:hover,
.share-icon-button.is-shared {
  opacity: 1;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.34);
}

.share-icon-button i {
  font-size: 1rem;
  line-height: 1;
}

.footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 80px auto 0;
  padding: 40px 20px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer strong {
  color: rgba(255,255,255,.78);
  font-weight: 600;
}

.footer a {
  color: rgba(255,255,255,.66);
  text-decoration: none;
  margin-top: 8px;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .header {
    padding: 18px 20px;
  }

  .header__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header__nav {
    justify-content: flex-start;
  }

  .header__nav a {
    margin: 0 18px 8px 0;
  }
}
