/* Header siempre visible arriba */
.header-area {
  position: sticky;      /* si querés que esté siempre fijo usá: position: fixed; */
  top: 0;
  z-index: 999;
  background: #ffffff;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Transición suave del logo */
.header-area .logo-area img {
  transition: max-height 0.3s ease;
}

/* Estado "chico" cuando se hace scroll */
.header-area.header-small {
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Logo más chico en el header reducido */
.header-area.header-small .logo-area img {
  max-height: 80px !important;   /* sobreescribe el inline de 140px */
}
