@charset "UTF-8";

/* RESET */

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* IMAGENS */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* LINKS */

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

/* TIPOGRAFIA */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

/* LISTAS */

ul,
ol {
  margin: 0;
  padding: 0;
}

/* ACESSIBILIDADE */

:focus-visible {
  outline: 3px solid #1f4ed8;
  outline-offset: 2px;
}

/* CONTAINER PADRÃO */

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}