/* Reset mínimo */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

/* Tipografía base */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

/* Enlaces y textos */
a { text-decoration: none; }
a:hover { text-decoration: underline; }

/* Contenedores genéricos */
.wrap,
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Utilidades */
.muted { opacity: .8; }
.hidden { display: none; }
