/* =========================================
   RESET CSS by SVP @studiovictorpagani
   ========================================= */

/* Box model */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

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

/* Remove margens padrão */
html,
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/* Estrutura semântica */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

/* Base */
body {
  min-height: 100vh;
  line-height: 1;
}

/* Mídia */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* SVG */
svg {
  overflow: hidden;
  vertical-align: middle;
  fill: currentColor;
}

svg:not([fill]) {
  fill: none;
}

svg:not([stroke]) {
  stroke: none;
}

/* Formulários */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  outline: none;
}

button,
select {
  text-transform: none;
  outline: none;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: none;
}

/* Textareas */
textarea {
  resize: vertical;
}

/* Listas */
ol,
ul {
  list-style: none;
}

/* Tabelas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Citações */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* Elementos herdando tipografia */
address,
cite,
dfn,
em,
i {
  font-style: inherit;
}

b,
strong {
  font-weight: inherit;
}

/* Fieldset */
fieldset {
  border: 0;
  min-width: 0;
}

/* [hidden] */
[hidden] {
  display: none !important;
}