/* =========================
   BASE GLOBAL - VestPolo
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  background: #f6f6f6; /* 👈 fundo único do site */
  color: #111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial,
               sans-serif;
}

/* Evita scroll horizontal acidental */
body {
  overflow-x: hidden;
}

/* Links padrão */
a {
  color: inherit;
  text-decoration: none;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  display: block;
}
