@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  font-family: "Montserrat", serif !important;
}

body {
  background-color: #050821;
  overflow-x: hidden;
}

.contain {
  max-width: 1350px;
  padding: 0 40px;
  margin: 0 auto;
}

@media only screen and (max-width: 515px) {
  .contain {
    padding: 0 15px;
  }
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #192592;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0C1249;
}

.button-blue {
  text-wrap: none;
  text-decoration: none;
  padding: 15px 20px;
  background-color: #2A3EF4;
  color: #E9EBF8;
  font-size: 16px;
  border-radius: 50px;
  transition: 0.5s all ease-in-out;
}

.button-blue:hover {
  background-color: #2232C3;
  transition: 0.5s all ease-in-out;
}

.button-blue:active {
  scale: 0.98;
  transition: 0.5s all ease-in-out;
}

.button-email {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0A0E3A;
  border-radius: 10px;
  color: #E9EBF8;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 0%; /* 0px */
  padding: 15px 10px;
  transition: 0.5s all ease-in-out;
}

.button-email:hover {
  background-color: #090E37;
  transition: 0.5s all ease-in-out;
}

.burger-menu-button {
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.burger-menu-button img {
  width: 30px;
  filter: brightness(0);
  filter: invert(1);
}

.burger-menu-button:hover {
  filter: brightness(0.8);
  transition: 0.5s ease-in-out;
}

.burger-menu-button:active {
  scale: 0.9;
  transition: 0.2s ease-in-out;
}

@media only screen and (min-width: 1149px) {
  .burger-menu-button {
    display: none;
  }
}
.input-outline {
  background-color: transparent;
  outline: none;
  border: solid 2px #E9EBF8;
  border-radius: 100px;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  color: #E9EBF8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  box-sizing: border-box;
}

.input-outline::-moz-placeholder {
  color: #E9EBF8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input-outline::placeholder {
  color: #E9EBF8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input-outline:focus {
  border: solid 2px #2A3EF4;
}

.text-area-outline {
  background-color: transparent;
  outline: none;
  border: solid 2px #E9EBF8;
  border-radius: 40px;
  width: 100%;
  height: 200px;
  padding: 20px 30px;
  color: #E9EBF8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  box-sizing: border-box;
  resize: none;
}

.text-area-outline::-moz-placeholder {
  color: #E9EBF8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text-area-outline::placeholder {
  color: #E9EBF8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text-area-outline:focus {
  border: solid 2px #2A3EF4;
}

header {
  z-index: 100;
  position: fixed;
  height: 93px;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: #000000;
  display: flex;
  align-items: center;
}
header .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}
header .container .contain-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
header .container .contain-logo .logotipo-blue {
  width: 50px;
}
header .container .contain-logo .logotipo-horizontal-blue {
  width: 150px;
}
@media only screen and (max-width: 1149px) {
  header .container .contain-logo .logotipo-blue {
    display: none;
  }
}
header .container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  text-wrap: none;
}
header .container ul li a {
  text-decoration: none;
  color: #E9EBF8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 845px) {
  header .container ul {
    gap: 30px;
  }
}
@media only screen and (max-width: 1149px) {
  header .container ul {
    display: none;
  }
}
@media only screen and (max-width: 1149px) {
  header .container .button-blue {
    display: none;
  }
}

#home {
  overflow: hidden;
  display: flex;
  margin-top: 93px;
  align-items: center;
  position: relative;
  height: 600px;
}
#home .cotainer-text {
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  flex: 1;
}
#home .cotainer-text h1 {
  color: #E9EBF8;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#home .cotainer-text h1 span {
  animation: piscar 2s infinite;
}
@keyframes piscar {
  0%, 100% {
    opacity: 1; /* Ponto totalmente visível */
  }
  50% {
    opacity: 0; /* Ponto invisível */
  }
}
#home .cotainer-text p {
  color: #E9EBF8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#home .contain-img {
  z-index: 5;
  display: flex;
  justify-content: center;
  flex: 1;
}
#home .contain-img img {
  width: 460px;
  transition: 0.5s all ease-in-out;
}
#home .contain-img img:hover {
  scale: 1.02;
  transition: 0.5s all ease-in-out;
}
@media only screen and (max-width: 986px) {
  #home .contain-img {
    display: none;
  }
}
#home .image-decoration-home {
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
  width: 1000px;
}

#soluction {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  position: relative;
  flex-direction: column;
}
#soluction .contain-text {
  margin-bottom: 50px;
}
#soluction .contain-text h3 {
  color: #E9EBF8;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#soluction .contain-text p {
  color: #E9EBF8;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#soluction .contain-banner {
  border-radius: 200px;
  height: 180px;
  width: 80%;
  background: #0C1249;
  background: linear-gradient(90deg, #0A0E3A 0%, #2232C3 50%, #0A0E3A 100%);
  display: flex;
}
#soluction .contain-banner .contain {
  padding: 20px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#soluction .contain-banner .contain hr {
  border-color: #BDC3FC;
  opacity: 0.5;
}
@media only screen and (max-width: 1100px) {
  #soluction .contain-banner .contain hr {
    box-sizing: border-box;
    width: 90%;
  }
}
#soluction .contain-banner .contain .opt-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  flex: 1;
  padding: 0 25px;
}
@media only screen and (max-width: 440px) {
  #soluction .contain-banner .contain .opt-banner img {
    width: 50px;
  }
}
#soluction .contain-banner .contain .opt-banner p {
  color: #E9EBF8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1100px) {
  #soluction .contain-banner .contain {
    flex-direction: column;
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 1100px) {
  #soluction .contain-banner {
    width: 100%;
    border-radius: 50px;
    height: 380px;
  }
}
@media only screen and (max-width: 398px) {
  #soluction .contain-banner {
    height: 400px;
  }
}

#about-us {
  overflow: hidden;
  display: flex;
  margin-top: 93px;
  height: 600px;
  align-items: center;
  position: relative;
  z-index: 5;
}
#about-us .lines-decoration {
  position: absolute;
  z-index: 3;
  top: 0;
  rotate: 180deg;
}
#about-us .contain-img {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}
#about-us .contain-img .img-coins {
  position: absolute;
  z-index: 6;
  width: 700px;
}
#about-us .contain-img .img-icon {
  width: 490px;
}
@media only screen and (max-width: 1123px) {
  #about-us .contain-img {
    display: none;
  }
}
#about-us .contain-text {
  width: 40%;
  color: #E9EBF8;
  display: flex;
  flex-direction: column;
}
#about-us .contain-text h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
#about-us .contain-text h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 20px;
}
#about-us .contain-text p {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 500px;
}
@media only screen and (max-width: 1123px) {
  #about-us .contain-text p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1123px) {
  #about-us .contain-text {
    width: 100%;
  }
}

#what-moves-us {
  height: 600px;
  display: flex;
  flex-direction: column;
  color: #E9EBF8;
  display: flex;
  justify-content: center;
}
#what-moves-us h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
#what-moves-us .contain-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
#what-moves-us .contain-card .card {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex: 1;
  padding: 20px 0;
  border-radius: 20px;
  background: #0C1249;
  background: linear-gradient(90deg, #0F1655 0%, #192592 50%, #0F1655 100%);
}
#what-moves-us .contain-card .card img {
  width: 60px;
}
#what-moves-us .contain-card .card .contain-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#what-moves-us .contain-card .card .contain-text h6 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#what-moves-us .contain-card .card .contain-text p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 280px;
}
@media only screen and (max-width: 1149px) {
  #what-moves-us .contain-card .card {
    padding: 20px;
    flex-direction: column;
  }
  #what-moves-us .contain-card .card img {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 714px) {
  #what-moves-us .contain-card {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1149px) {
  #what-moves-us .burger-menu-button {
    display: none;
  }
}

@media only screen and (max-width: 714px) {
  #what-moves-us {
    height: 900px;
  }
}
#our-rates {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 800px;
  flex-direction: column;
  position: relative;
}
#our-rates .lines-decoration-our-rates {
  position: absolute;
  bottom: 190px;
  z-index: 3;
  opacity: 0.2;
}
#our-rates .cotain-title-img {
  width: 90%;
  border-radius: 500px;
  height: 300px;
  background-image: url(/assets/images/background-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E9EBF8;
  flex-direction: column;
  gap: 12px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#our-rates .cotain-title-img h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#our-rates .cotain-title-img p {
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0 60px;
}
@media only screen and (max-width: 648px) {
  #our-rates .cotain-title-img {
    width: 100%;
    border-radius: 30px;
  }
  #our-rates .cotain-title-img h3 {
    margin: 0 10px;
    font-size: 25px;
  }
  #our-rates .cotain-title-img p {
    font-size: 25px;
    margin: 0 10px;
  }
}
#our-rates .cotain-title-img::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 80%;
  width: 80px;
  height: 80px;
  background-image: url(/assets/svg/check-background.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: solid 15px #0F1655;
  pointer-events: all;
  transition: 0.3s all ease-in-out;
}
#our-rates .cotain-title-img:hover::before {
  transition: 0.3s all ease-in-out;
  transform: scale(1.1);
}
#our-rates .cotain-title-img:active::before {
  transition: 0.3s all ease-in-out;
  transform: scale(0.98);
}
#our-rates .contain-rates {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 160px;
  width: 80%;
}
#our-rates .contain-rates .rate {
  display: flex;
  flex-direction: column;
  color: #E9EBF8;
  gap: 2px;
  align-items: center;
}
#our-rates .contain-rates .rate .contain-icon {
  width: 160px;
  height: 160px;
  background: linear-gradient(180deg, #0F1655 0%, #2A3EF4 100%);
  border-radius: 50%;
  border: solid 20px #0A0E3A;
  display: flex;
  justify-content: center;
  align-items: center;
}
#our-rates .contain-rates .rate .contain-icon img {
  width: 50%;
}
#our-rates .contain-rates .rate h3 {
  margin-top: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#our-rates .contain-rates .rate h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#our-rates .contain-rates .rate p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 940px) {
  #our-rates .contain-rates .rate {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 940px) {
  #our-rates .contain-rates {
    flex-direction: column;
  }
}

@media only screen and (max-width: 940px) {
  #our-rates {
    height: 1500px;
  }
}
#blog {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
  flex-direction: column;
  position: relative;
  gap: 70px;
}
#blog .contain-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #E9EBF8;
}
#blog .contain-text h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#blog .contain-text p {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media only screen and (max-width: 491px) {
  #blog .contain-text {
    max-width: 300px;
  }
}
#blog .contain-card {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 80px;
}
#blog .contain-card .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  padding: 50px 40px;
  gap: 25px;
  border: solid 2px #E9EBF8;
  background: radial-gradient(circle, #0F1655 0%, #050821 50%);
}
#blog .contain-card .card .contain-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border: solid 20px #070B2C;
  border-radius: 50%;
  overflow: hidden;
}
#blog .contain-card .card .contain-img img {
  width: 103%;
  height: 103%;
}
#blog .contain-card .card p {
  color: #E9EBF8;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 434px) {
  #blog .contain-card .card {
    flex: 1;
    padding: 20px;
  }
}
@media only screen and (max-width: 1176px) {
  #blog .contain-card {
    flex-direction: column;
  }
}

@media only screen and (max-width: 1176px) {
  #blog {
    height: 2100px;
  }
}
#form {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 900px;
  position: relative;
}
#form .decoration {
  position: absolute;
}
#form .contain-form {
  position: relative;
  padding: 20px;
  border-radius: 80px;
  border: solid 2px #E9EBF8;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#form .contain-form .glow {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #0F1655 0%, rgba(0, 0, 0, 0) 100%);
}
#form .contain-form form {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 50px 180px;
}
#form .contain-form form .contain-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #E9EBF8;
  gap: 15px;
}
#form .contain-form form .contain-text h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#form .contain-form form .contain-text p {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
#form .contain-form form .contain-input {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  gap: 20px;
}
#form .contain-form form .contain-input .flex-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (max-width: 620px) {
  #form .contain-form form .contain-input .flex-row {
    flex-direction: column;
  }
}
#form .contain-form form .contain-input button {
  min-width: 300px;
  border: none;
}
@media only screen and (max-width: 1200px) {
  #form .contain-form form {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 515px) {
  #form .contain-form img {
    display: none;
  }
}
@media only screen and (max-width: 620px) {
  #form .contain-form {
    border-radius: 40px;
  }
}

@media only screen and (max-width: 620px) {
  #form {
    height: 1200px;
  }
}
#end {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  flex-direction: column;
  text-align: center;
  color: #E9EBF8;
  gap: 40px;
  position: relative;
}
#end .lines-decoration {
  position: absolute;
  z-index: 4;
  opacity: 0.4;
  top: -20px;
}
#end h2 {
  position: relative;
  z-index: 5;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#end p {
  position: relative;
  z-index: 5;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  max-width: 60%;
}

@media only screen and (max-width: 592px) {
  #end {
    height: 700px;
  }
}
@media only screen and (max-width: 467px) {
  #end {
    height: 900px;
  }
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 500px;
}
footer hr {
  width: 100%;
  border-color: #E9EBF8;
  border-width: 1.5px;
  opacity: 0.3;
}
footer .section-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 25px 0px;
}
footer .section-top img {
  width: 100px;
}
footer .section-top .social-media {
  display: flex;
  gap: 15px;
  flex-direction: row;
}
footer .section-top .social-media img {
  width: 50px;
}
footer .section-midle {
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .section-midle hr {
  margin: 0;
  height: 100%;
  width: 0;
}
footer .section-midle .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  text-align: start;
}
footer .section-midle .content h3 {
  color: #E9EBF8;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 137.5%;
  margin-bottom: 20px;
}
footer .section-midle .content ul li a {
  cursor: pointer;
  text-decoration: none;
  color: #E9EBF8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 232.5%; /* 37.2px */
}
footer .section-midle .content p {
  color: #E9EBF8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 176%; /* 28.16px */
  margin-bottom: 20px;
}
@media only screen and (max-width: 957px) {
  footer .section-midle {
    flex-direction: column;
    gap: 20px;
  }
  footer .section-midle hr {
    width: 100%;
  }
  footer .section-midle .content {
    align-items: start;
  }
}
footer .section-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .section-bottom p {
  color: #E9EBF8;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 1149px) {
  footer .section-bottom {
    flex-direction: column;
  }
}

@media only screen and (max-width: 957px) {
  footer {
    height: 900px;
  }
}/*# sourceMappingURL=index.css.map */