html {
  scroll-behavior: auto;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

:root {
  /* Hotspot ~ dedo do ponteiro; fallback pointer se o SVG falhar */
  --cursor-click: url('./../images/cursors/cursor-click.svg') 6 2, pointer;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: #F8F8F8;
  overflow: visible;
  cursor: url('./../images/cursors/cursor.svg'), auto;
}


body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-family: "Satoshi", sans-serif;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Zonas clicáveis: mesmo cursor no elemento e nos filhos (texto, ícones) */
a,
a *,
button,
button *,
[role="button"],
[role="button"] *,
input[type="submit"],
input[type="button"],
input[type="reset"],
label[for],
summary {
  cursor: var(--cursor-click);
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}