/* ============================================
   HEADER - Purewell
   ============================================ */

.pw-header {
  background: #ffffff;
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  /* SIN SOMBRA para integración perfecta con hero */
  transition: box-shadow 0.2s ease;
}

/* Barra de anuncio superior */
.pw-header__announcement {
  background: var(--pw-primary);
  color: var(--pw-white);
  text-align: center;
  padding: var(--pw-space-2) var(--pw-space-4);
  font-size: var(--pw-text-sm);
  font-weight: var(--pw-font-weight-semibold);
}

/* Contenedor del logo */
.pw-header__content {
  padding-top: var(--pw-space-4);
  padding-bottom: var(--pw-space-4);
}

.pw-header__logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pw-header__logo-link {
  display: block;
}

.pw-header__logo-img {
  height: var(--pw-space-12);
  width: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .pw-header__logo-img {
    height: var(--pw-space-10);
  }

  .pw-header__content {
    padding-top: var(--pw-space-3);
    padding-bottom: var(--pw-space-3);
  }
}
