@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/rawline");
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Rawline", sans-serif;
  font-size: 1.8rem;
}

header > section.container > div,
main > section.container > div,
footer > section.container > div {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.6rem;
}

/* tipografia e diagramação */
h1 {
  margin: 2rem auto;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
}

h2 {
  margin: 2rem auto 3rem auto;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}

h3 {
  margin: 2rem auto;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.1;
}

h4 {
  margin: 2rem auto;
  font-size: 2.2rem;
  line-height: 1.1;
}

p {
  margin: 1.6rem 0;
  line-height: 1.1;
}

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

/* "atalhos" */
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tcenter {
  text-align: center !important;
}

.d-flex_row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.d-flex_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ------ HEADER ------ */
header {
  background-color: #2864ae;
}
header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header div img {
  max-width: 175px;
  margin: 0;
}
header div .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  background-color: #46ad44;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}
header div .btn svg {
  width: 24px;
  margin-right: 5px;
  fill: #fff;
}

/* ------ MAIN ------ */
main .btn {
  max-width: 540px;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 20px auto;
  padding: 10px 20px;
  color: #fff;
  background-color: #46ad44;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}
main .btn svg {
  width: 24px;
  margin-right: 5px;
  fill: #fff;
}
main .blue--bg {
  color: #fff;
  background-color: #2864ae;
}

/* ------ FOOTER ------ */
footer .btn {
  max-width: 540px;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 20px auto;
  padding: 10px 20px;
  color: #fff;
  background-color: #46ad44;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}
footer .btn svg {
  width: 24px;
  margin-right: 5px;
  fill: #fff;
}
footer .disclaimer {
  margin-top: 3rem;
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
}/*# sourceMappingURL=main.css.map */