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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  background-color: #F4F5F7;
}

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

/* hacks */
.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10n {
  margin-bottom: -10rem;
}

.tcenter {
  text-align: center;
}

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

.mr6 {
  margin-right: 6px !important;
}

/* tipografia, diagramação */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.4rem auto;
}

h1 {
  margin: 3rem auto;
  font-size: 4.8rem;
  font-weight: 800;
  color: #31AF85;
}

h2 {
  margin: 2rem auto;
  font-size: 2.4rem;
  font-weight: 400;
  color: #111;
}

h3 {
  margin: 4rem auto 1rem auto;
  font-size: 3.6rem;
  color: #1A478D;
}

p {
  margin: 1.4rem auto;
}

hr {
  margin: 4rem auto;
  max-width: 50%;
  border: 3px solid #D4D5D7;
  border-radius: 15px;
}

/* btn */
.register {
  z-index: 998;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto 2rem auto;
  padding: 1rem;
  font-size: 2.2rem;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  background-color: #31AF85;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1450980392);
  -webkit-animation: scaler 0.5s;
          animation: scaler 0.5s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.register img {
  margin: 0 6px 0 0;
}

.register3 {
  padding: 1rem;
  font-size: 1.6rem !important;
  text-decoration: none;
  color: #31AF85;
  border: 1px solid #31AF85;
  border-radius: 10px;
}

@-webkit-keyframes scaler {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

@keyframes scaler {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}
/* ==== header  ==== */
header {
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1450980392);
}
header img {
  margin: 0;
  max-width: 160px !important;
}

.header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header + main {
  padding-top: 12rem;
}

/* ==== main  ==== */
/* example */
.example {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.example .example-template {
  width: 45%;
  padding: 2rem;
  background-color: #FFF;
  border-radius: 25px;
  border: 2px solid #1A478D;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1450980392);
}
.example .example-template h4 {
  margin: 1.4rem auto;
  font-size: 2.4rem;
  color: #31AF85;
}
.example .example-template .example-demonstration {
  display: flex;
  text-align: center;
}

/* portfolio */
.portfolio {
  background-color: #1A478D;
}
.portfolio h3, .portfolio p {
  color: #FFF;
}
.portfolio .register {
  margin-bottom: 4rem;
}

/* grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 2rem auto 3rem auto;
}

.grid-template {
  padding: 1rem;
  background: #FFF;
  border-radius: 25px;
}
.grid-template h4 {
  margin: 1rem auto 1.4rem auto;
  color: #1A478D;
}

/* steps */
.steps h4 {
  margin: 1.4rem auto;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
}

/* ==== footer  ==== */
.footer1 {
  display: flex;
  color: #FFF;
  background-color: #1A478D;
  padding: 8rem 0 6rem 0;
}
.footer1 a {
  display: inline-block;
  margin: 1.4rem auto;
  font-size: 1.4rem;
  color: #FFF;
  text-align: center;
  text-decoration: none;
}
.footer1 .social-icons {
  display: flex;
  justify-content: center;
}
.footer1 .social-icons a {
  margin: 0;
}
.footer1 .social-icons img {
  margin: 0;
}

.footer2 {
  color: #FFF;
  background-color: #31AF85;
}
.footer2 p {
  font-size: 1.4rem;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 3.8rem;
  }
  h3 {
    font-size: 3rem;
  }
  p {
    font-size: 1.8rem;
  }
  .register {
    max-width: 80%;
  }
  .example {
    flex-direction: column;
  }
  .example .example-template {
    margin: 2.8rem auto;
    width: 100%;
  }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  hr {
    max-width: 80%;
  }
}
@media screen and (max-width: 380px) {
  .register3 {
    padding: 0.5rem;
    font-size: 1.4rem;
  }
  a.register {
    font-size: 2rem;
  }
  header img {
    margin: 0;
    max-width: 140px !important;
  }
}/*# sourceMappingURL=main.css.map */