*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  background: var(--neutral-000);
  color: var(--neutral-900);
  /* DD_013: el edificio nuevo es página única que apila secciones (Portada →
     Espejo → …). El `overflow: hidden` heredado del edificio viejo (app de
     pantalla fija) bloqueaba el scroll vertical y dejaba el Espejo bajo el
     pliegue. Sólo se recorta el eje horizontal. */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  font: inherit;
}
