/* Modern CSS Reset - Baseado em Josh Comeau's CSS Reset */

/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remover margin padrão */
* {
  margin: 0;
}

/* Tipografia fluida */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* Formulários */
input, button, textarea, select {
  font: inherit;
}

/* Evitar text overflow */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

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

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

/* Fieldsets */
fieldset {
  border: 0;
  padding: 0;
}

/* Strong e em */
strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}
