/* assets/css/reset.css */
/* Reset leve e seguro (clean) */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  height: 100%;
}

body{
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6,
p,figure,blockquote,dl,dd{
  margin: 0;
}

ul,ol{
  margin: 0;
  padding: 0;
  list-style: none;
}

a{
  color: inherit;
  text-decoration: none;
}

img, picture, video, canvas, svg{
  display: block;
  max-width: 100%;
}

button, input, textarea, select{
  font: inherit;
  color: inherit;
}

button{
  border: none;
  background: none;
  padding: 0;
}

input, textarea{
  border: none;
  outline: none;
  background: none;
}

table{
  border-collapse: collapse;
  border-spacing: 0;
}

/* evita zoom estranho no iOS em inputs */
input, textarea, select{
  font-size: 16px;
}

/* reduz motion para acessibilidade */
@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
