@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  color: #202527;
  background-color: #FFF;
}

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

/* tipografia e diagramação */
h1 {
  margin: 2rem auto;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.5px;
}

h2 {
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  margin: 1rem auto 2rem auto;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

h4 {
  margin: 0rem auto;
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.1;
}

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

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

mark {
  font-weight: 600;
  color: #00b349;
  background: none;
}

/* "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;
}

.d-none {
  display: none !important;
}

.parte1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* animação entre as telas */
.fade-out {
  animation: fadeOut 1s forwards;
}

.fade-in {
  animation: fadeIn 1s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.t-center {
  text-align: center;
}

.passo2 {
  display: flex;
  align-items: center;
}/*# sourceMappingURL=main.css.map */