@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;family=Source+Code+Pro&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #e7e7e7 !important;
}

header {
  position: fixed;
  top: 0%;
  width: 100%;
  z-index: 5;
  background-color: #622ec2;
  text-align: center;
  padding: 1rem 0;
}
@media (max-width: 576px) {
  header {
    position: static;
  }
}
header h1 {
  text-transform: uppercase;
  color: #f1f1f1;
  font-weight: 400;
}

.banner {
  position: relative;
  display: flex;
}
.banner img {
  width: 70%;
}
@media (max-width: 1400px) {
  .banner img {
    width: 100%;
  }
}

.principal {
  margin-top: -15rem;
  display: flex;
  justify-content: center;
  margin-bottom: 15rem;
}
@media (max-width: 1400px) {
  .principal {
    margin-top: -10rem;
  }
}
@media (max-width: 992px) {
  .principal {
    margin-top: -6rem;
  }
}
@media (max-width: 992px) {
  .principal__novidades {
    display: none;
  }
}
@media (max-width: 1400px) {
  .principal__novidades img {
    width: 100%;
  }
}
.principal__cards {
  --columns: 2;
  --gap: 30px;
  width: 1100px;
  padding: 0 0 0 1rem;
  position: relative;
  margin-top: -6rem;
  justify-content: center;
  height: 100%;
}
@media (max-width: 1400px) {
  .principal__cards {
    margin-top: 0;
    padding: 0;
  }
}
.principal__cards .principal__card {
  grid-area: card;
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 992px) {
  .principal__cards .principal__card {
    --parte: 2;
  }
}
.principal__cards .principal__card.grid-part-full {
  --parte: 2;
  height: auto;
}
.principal__cards .principal__card__titulo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 26px;
  color: #7c32dd;
  margin-bottom: 1rem;
}
.principal__cards .principal__card__descricao {
  font-weight: 500;
}

.proposta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0 0 0;
  width: 100% !important;
}
.proposta__conteudo {
  position: relative;
}
.proposta__conteudo img {
  width: 100%;
}
@media (max-width: 768px) {
  .proposta__conteudo img {
    display: none;
  }
}
.proposta__botao {
  position: absolute;
  cursor: pointer;
  border-radius: 5px;
  left: 18%;
  bottom: 30%;
  border-radius: 5px;
  font-weight: 600;
  font-size: 24px;
  padding: 0.7rem 1.3rem;
  text-transform: uppercase;
  color: #f1f1f1;
  display: block;
  text-decoration: none;
  transition: all ease 0.5s;
  background-color: #0f2d4f;
}
@media (max-width: 768px) {
  .proposta__botao {
    position: static;
  }
}
.proposta__botao:hover {
  transform: translate(-10px, -10px);
  box-shadow: 10px 10px 3px 1px rgba(0, 0, 0, 0.52);
}

[data-tp-grid] {
  display: flex;
  flex-wrap: wrap;
  --defaultColumns: 12;
  --rowItems: var(--columns, var(--defaultColumns));
  --defaultGap: 0px;
  --gapCalc: var(--gap, var(--defaultGap));
  gap: var(--gapCalc);
}

[data-tp-grid] > * {
  --defaultParte:1;
  --parteCalc: var(--parte, var(--defaultParte));
  --colLocal: calc(var(--rowItems) / var(--parteCalc));
  --rowThis: var(--colLocal, var(--rowItems));
  --semGap: calc(100% - (var(--gapCalc) * var(--rowThis)));
  width: calc(var(--semGap) / var(--rowThis));
  box-sizing: border-box;
}

[data-tp-grid] > * > * {
  --gap: initial;
  --columns: initial;
}

[data-tp-grid=auto] > * {
  width: auto;
}

/* rodape */
.bordas-div {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: auto;
  margin-top: -4.3rem;
}
@media (max-width: 768px) {
  .bordas-div {
    display: none;
  }
}

.borda-esquerda {
  width: 100%;
  height: 0;
  bottom: 4px;
  border-right: 20rem solid transparent;
  border-bottom: 2.5rem solid #0f2d4f;
}

.borda-direita {
  bottom: 4px;
  width: 100%;
  height: 0;
  border-left: 20rem solid transparent;
  border-bottom: 2.5rem solid #0f2d4f;
}

.final {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #0f2d4f;
  margin-top: -1px;
}

.final > p {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 1.6rem;
  height: 100px;
}

.final > p > span {
  display: flex;
  width: 43px;
  height: 8px;
  margin-top: 25px;
  background: #0f2d4f;
}

.contatos {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .contatos {
    flex-direction: column;
  }
}

.contato {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  padding: 2rem;
}

.contato:hover {
  transform: scale(1.1);
}

.contato div > img {
  display: flex;
  width: 4rem;
}

.contato div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
}

.contato > span {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.3em;
  margin-top: 1.2rem;
}

.contato > span > font {
  font-weight: 300;
}

.bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.5rem;
  line-height: 1.2rem;
  color: #fff;
  font-size: 1rem;
  padding: 0 1rem;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  background: #0c2340;
}

/* rodape *//*# sourceMappingURL=styles.css.map */