/* Base: reset y fondo global */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  /* Fondo con foto + capa clara encima para que no se vea muy fuerte */
  background:
    linear-gradient(rgba(245, 247, 251, 0.85), rgba(245, 247, 251, 0.85)),
    url("../images/terraza1.jpg") center center no-repeat fixed;
  background-size: cover;
  color: #222;
}

