/* ════════════════════════════════════════════════════════════════════════
   RESET.CSS — StartImob LP
   Reset moderno e enxuto. Remove estilos padrão do navegador sem impor
   opiniões visuais — isso fica por conta de tokens.css e style.css.
   ════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Respeita quem prefere menos movimento — sobrepõe o smooth-scroll acima */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  min-height: 100svh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* Elementos interativos sempre com indicação de foco visível (acessibilidade) */
:focus-visible {
  outline: 2px solid var(--color-gold, #C4965A);
  outline-offset: 2px;
}

/* Remove animações do preenchimento automático do Chrome */
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
}
