/* Cabecera minimalista con logo centrado arriba */
.header-logo-shary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 0 10px 0;
  background: #fff;
  border-bottom: 1.5px solid #ececec;
  margin-bottom: 18px;
}
.header-logo-shary img {
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 #eee);
}
@media (max-width: 600px) {
  .header-logo-shary img {
    height: 40px;
  }
  .header-logo-shary {
    padding: 12px 0 6px 0;
    margin-bottom: 10px;
  }
}
