@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #262626;
}

/* ========= + CONFIGURAÇÕES BÁSICAS ======== */
img {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
}

/* MARGENS */
.mt150 {
  margin-top: 15rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mt35 {
  margin-top: 3.5rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt10n {
  margin-top: -1rem;
}

.mb30 {
  margin-bottom: 3rem !important;
}

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

.mb50n {
  margin-bottom: -5rem !important;
}

.mb80n {
  margin-bottom: -8rem !important;
}

.mb150n {
  margin-bottom: -15rem !important;
}

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

/* ========= TIPOGRAFIA ========= */
h1 {
  margin: 2rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.25;
}

h2 {
  margin: 3rem 0;
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.25;
}

h3 {
  margin: 2rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}

/* ========= HEADER ========= */
header {
  border-top: 4px solid #3C6BFD;
  border-bottom: 1px solid #E4E5E7;
}
header img {
  margin: 0 auto !important;
}

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

/* ========= MAIN ========= */
main > div > div {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

/* BOTÕES */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin: 3rem auto 2rem auto;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #3C6BFD;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3137254902);
  -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;
}
.btn img {
  margin: 0 0.5rem 0 0 !important;
}

.btn:hover, .btn2:hover {
  opacity: 90%;
}

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

@keyframes scaler {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.btn2 {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 3rem auto 2rem auto;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #37B800;
  border-radius: 25px;
}
.btn2 img {
  margin: 0 0.5rem 0 0 !important;
}

/* DIV COLORS */
.gray-bg {
  background-color: #F4F5F7;
}

.blue-bg {
  color: #FFFFFF;
  background-color: #000F3D;
}

/* DIV VANTAGENS */
.vantagens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.vantagens div {
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 25px;
  border: 1px solid #E4E5E7;
}
.vantagens img {
  padding: 1rem;
  background-color: #FFFFFF;
  border-radius: 25px;
  border: 1px solid #000000;
}
.vantagens p {
  text-align: center;
}

/* DIV CLASSES */
footer hr {
  max-width: 50%;
  border: 2px solid #E4E5E7;
  border-radius: 2px;
}

.classes h4 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  margin: 1rem auto;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
.classes img {
  margin: 0 1rem 0 0;
}
.classes div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

/* DIV DUVIDAS */
.duvidas {
  margin: 0 auto;
}
.duvidas .duvidas-img {
  position: relative;
  z-index: 998;
}
.duvidas .duvidas-img img {
  position: relative;
  z-index: 997;
  margin: 0 auto;
  border-radius: 25px 25px 0 0;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3137254902);
}
.duvidas .duvidas-text {
  max-width: 500px;
  position: relative;
  z-index: 999;
  margin: 0 auto;
  padding: 1rem 2rem;
  color: #262626;
  background-color: #FFFFFF;
  border-radius: 0 0 25px 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3137254902);
}
.duvidas .duvidas-text h3 {
  margin-bottom: 0;
}
.duvidas .duvidas-text p {
  margin-top: 0;
  text-align: center;
}

/* ========= FOOTER ========= */
footer > div > div {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* DIV INSTITUCIONAL */
.institucional p {
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .classes div {
    display: block;
  }
}/*# sourceMappingURL=main.css.map */