@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;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;
}

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;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* Clear floats */
.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #0c1013;
}

.hidden {
  overflow: hidden;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  max-width: 100%;
}
@media (min-width: 540px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
  will-change: opacity, transform;
  visibility: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 4;
  /* BURGER 2 */
}
header .header__logo {
  height: 100%;
  max-height: 48px;
}
header .menu__fixed {
  display: none;
}
header .header__burger {
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all 0.5s ease;
}
header .header__burger-strip {
  transition: all 0.5s ease;
}
header .strip div {
  height: 3px;
  border-radius: 2px;
  background: #1255fc;
  margin: 10px;
  transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 40px;
}
header .header__burger--active {
  background: #1255fc;
}
header .header__burger--active .strip div {
  background: #ffffff;
}
header .header__burger--active .header__burger-strip-2 div:first-child {
  transform: translateY(13px) rotate(45deg);
}
header .header__burger--active .header__burger-strip-2 div:nth-child(2) {
  opacity: 0;
}
header .header__burger--active .header__burger-strip-2 div:last-child {
  transform: translateY(-13px) rotate(-45deg);
}

@media (min-width: 992px) {
  header {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  header .header__burger {
    display: none;
  }
}
aside#menu {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  height: 100vh;
  width: 70%;
  box-sizing: border-box;
  background: #ffffff;
  padding: 4rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}
aside#menu.ativo {
  transform: translateX(0);
}
aside#menu .menu__titulo {
  display: block;
  font-size: 1.5rem;
  margin-top: 2rem;
  font-weight: bold;
}
aside#menu .menu__logo {
  max-height: 140px;
  margin-bottom: 2rem;
}
aside#menu .menu__list {
  background-color: #ffffff;
}
aside#menu .menu__list .menu__item {
  border-bottom: 2px solid #f5f6ff;
}
aside#menu .menu__list .menu__item .menu__link {
  padding: 1rem 1px 0.5rem;
  display: block;
  color: #0c1013;
  transition: all 0.5s ease;
}
aside#menu .menu__list .menu__item .menu__link:hover {
  color: #1255fc;
  text-decoration: none;
}
aside#menu .menu__follow {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
aside#menu .menu__follow .menu__follow__link {
  background-color: #1255fc;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.5s ease;
}
aside#menu .menu__follow .menu__follow__link:hover {
  background-color: #000000;
}

.menu__overlay {
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
}
.menu__overlay.ativo {
  display: block;
}

@media (min-width: 992px) {
  header .menu__fixed {
    display: block;
  }
  header .menu__fixed .menu__list {
    display: flex;
  }
  header .menu__fixed .menu__list .menu__item {
    margin-right: 1rem;
    text-transform: uppercase;
    font-weight: 500;
  }
  header .menu__fixed .menu__list .menu__item:last-child {
    margin-right: unset;
  }
  header .menu__fixed .menu__list .menu__link {
    padding: 1rem 0;
    transition: all 0.5s ease;
  }
  header .menu__fixed .menu__list .menu__link:hover {
    text-decoration: none;
    color: #1255fc;
  }
}
.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 0;
  background: url(img/bg-banner.jpg) no-repeat center/cover;
}
.banner .banner__content {
  display: flex;
  padding: 2rem 0;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.banner .banner__content .banner__title {
  font-size: 2rem;
  text-align: center;
  margin: 2rem 0;
  line-height: 2.5rem;
  font-weight: 700;
}
.banner .banner__content .banner__text {
  text-align: center;
}
.banner .banner__content .banner__btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
  padding: 0.75em 1em;
  color: #1255fc;
  border: 0.15em solid #1255fc;
  border-radius: 1.4em;
  transition: 2s;
  width: 95px;
}
.banner .banner__content .banner__btn:before, .banner .banner__content .banner__btn:after {
  content: "";
  position: absolute;
  top: -1.5em;
  z-index: -1;
  width: 200%;
  aspect-ratio: 1;
  border: none;
  border-radius: 40%;
  background-color: rgba(18, 85, 252, 0.25);
  transition: 2.5s;
}
.banner .banner__content .banner__btn:before {
  left: -80%;
  transform: translate3d(0, 5em, 0) rotate(-340deg);
}
.banner .banner__content .banner__btn:after {
  right: -80%;
  transform: translate3d(0, 5em, 0) rotate(390deg);
}
.banner .banner__content .banner__btn:hover, .banner .banner__content .banner__btn:focus {
  color: #ffffff;
  text-decoration: none;
}
.banner .banner__content .banner__btn:hover:before, .banner .banner__content .banner__btn:hover:after, .banner .banner__content .banner__btn:focus:before, .banner .banner__content .banner__btn:focus:after {
  transform: none;
  background-color: rgba(18, 85, 252, 0.75);
}
.banner .banner__img {
  display: flex;
  justify-content: center;
}
.banner .banner__img img {
  width: 100%;
  max-width: 320px;
  height: auto;
}
@media (max-width: 768px) {
  .banner .banner__content, .banner .banner__img {
    flex: 1 1 100%;
  }
}

@media (min-width: 992px) {
  .banner {
    text-align: center;
    padding: 4rem 0;
  }
  .banner .container {
    display: flex;
    align-items: center;
  }
  .banner .banner__img {
    width: 40%;
  }
  .banner .banner__img img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: unset;
  }
  .banner .banner__content {
    width: 60%;
    justify-content: center;
  }
}
.help .help__title {
  font-size: 1.75rem;
  text-align: center;
  margin: 2rem 0;
  line-height: 2rem;
  font-weight: 700;
}
.help .help__text {
  text-align: center;
}
.help .help__cards {
  border-radius: 10px;
}
.help .help__cards .help__cards__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  background-color: #f5f6ff;
  margin-bottom: 2rem;
  border-radius: 5px;
}
.help .help__cards .help__cards__item .help__cards__img {
  height: 130px;
  margin-bottom: 1rem;
}
.help .help__cards .help__cards__item .help__cards__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.help .help__cards .help__cards__item .help__cards__text {
  font-size: 0.875rem;
}

@media (min-width: 540px) {
  .help .help__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .help .help__cards .help__cards__item {
    width: 35%;
  }
  .help .help__cards .help__cards__item:nth-child(3) {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .help .help__cards {
    justify-content: space-around;
  }
  .help .help__cards .help__cards__item {
    width: 48%;
    box-sizing: border-box;
    max-width: 360px;
  }
}
@media (min-width: 992px) {
  .help {
    padding: 4rem 0;
  }
  .help .help__title, .help .help__text {
    margin-bottom: 3rem;
  }
  .help .help__cards .help__cards__item {
    width: 32%;
    box-sizing: border-box;
    max-width: 360px;
  }
  .help .help__cards .help__cards__item:nth-child(3) {
    width: 32%;
  }
}
.cta {
  background: url(img/pic_paralax_2.jpg) no-repeat;
  min-height: 350px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 2rem 0;
}
.cta .cta__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}
.cta .cta__btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
  padding: 0.75em 1em;
  color: #ffffff;
  border: 0.15em solid #ffffff;
  border-radius: 1.4em;
  transition: 2s;
}
.cta .cta__btn:before, .cta .cta__btn:after {
  content: "";
  position: absolute;
  top: -1.5em;
  z-index: -1;
  width: 200%;
  aspect-ratio: 1;
  border: none;
  border-radius: 40%;
  background-color: rgba(255, 255, 255, 0.25);
  transition: 2.5s;
}
.cta .cta__btn:before {
  left: -80%;
  transform: translate3d(0, 5em, 0) rotate(-340deg);
}
.cta .cta__btn:after {
  right: -80%;
  transform: translate3d(0, 5em, 0) rotate(390deg);
}
.cta .cta__btn:hover, .cta .cta__btn:focus {
  color: #1255fc;
  text-decoration: none;
}
.cta .cta__btn:hover:before, .cta .cta__btn:hover:after, .cta .cta__btn:focus:before, .cta .cta__btn:focus:after {
  transform: none;
  background-color: rgba(255, 255, 255, 0.75);
}

.plataformas {
  text-align: center;
  padding: 2rem 0;
}
.plataformas .plataformas__title {
  font-size: 1.75rem;
  font-weight: 700;
}
.plataformas .plataformas__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.plataformas .plataformas__logos .plataformas__logos__img {
  width: 40%;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 2rem 0;
  border: 3px solid #f5f6ff;
  border-radius: 5px;
  padding: 5px;
}

@media (min-width: 768px) {
  .plataformas .plataformas__logos .plataformas__logos__img {
    width: 23%;
    box-sizing: border-box;
    max-width: 165px;
  }
}
@media (min-width: 992px) {
  .plataformas {
    padding: 4rem 0;
  }
}
.aboutus {
  background: url(img/bg.jpg);
  text-align: center;
  padding: 2rem 0;
}
.aboutus .aboutus__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.aboutus .aboutus__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.aboutus .aboutus__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aboutus .aboutus__list .aboutus__item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.aboutus .aboutus__list .aboutus__item i {
  margin-right: 0.5rem;
  color: #1255fc;
}
.aboutus .aboutus__counter {
  margin-top: 4rem;
}
.aboutus .aboutus__counter .aboutus__counter__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f6ff;
  margin-bottom: 3rem;
  padding: 0 0 2rem;
  border-radius: 5px;
}
.aboutus .aboutus__counter .aboutus__counter__item .aboutus__counter__icon {
  background: #1255fc;
  padding: 1rem;
  border-radius: 30px;
  border-radius: 43px;
  height: 50px;
  width: 50px;
  -o-object-fit: none;
     object-fit: none;
  transform: translateY(-2rem);
}
.aboutus .aboutus__counter .aboutus__counter__item .aboutus__counter__number {
  font-size: 2rem;
  font-weight: 900;
  color: #0c1013;
}
.aboutus .aboutus__counter .aboutus__counter__item .aboutus__counter__title {
  font-size: 0.875rem;
  color: #9f9faa;
  text-align: center;
}

@media (min-width: 540px) {
  .aboutus .aboutus__counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .aboutus .aboutus__counter .aboutus__counter__item {
    width: 49%;
  }
}
@media (min-width: 992px) {
  .aboutus {
    display: flex;
    text-align: left;
  }
  .aboutus .aboutus__flex {
    align-items: center;
    display: flex;
  }
  .aboutus .aboutus__list {
    align-items: start;
  }
}
.form {
  text-align: center;
  padding: 2rem 0;
}
.form .form__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form .form__socials {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.form .form__socials .form__socials__link {
  background-color: #1255fc;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.5s ease;
  margin-right: 0.5rem;
}
.form .form__socials .form__socials__link:hover {
  background-color: #000000;
}
.form .form__socials .form__socials__link:hover:hover {
  text-decoration: none;
}
.form .form__socials .form__socials__link:nth-last-child(1) {
  margin-right: 0;
}
.form form {
  background: url(img/send.png);
  text-align: left;
  border-radius: 5px;
  padding: 2rem;
}
.form form .form__label {
  display: block;
  color: #9f9faa;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form form .form__input {
  border: 1px solid #ffffff;
  background: #ffffff;
  outline: none;
  padding: 0.5rem;
  width: 96%;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  transition: all 0.5s ease;
}
.form form .form__input::-moz-placeholder {
  color: #9f9faa;
}
.form form .form__input::placeholder {
  color: #9f9faa;
}
.form form .form__input:active, .form form .form__input:focus, .form form .form__input:hover {
  border-color: #1255fc;
}
.form form .form__btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
  padding: 0.75em 1em;
  color: #1255fc;
  border: 0.15em solid #1255fc;
  border-radius: 1.4em;
  transition: 2s;
  background: #ffffff;
}
.form form .form__btn:before, .form form .form__btn:after {
  content: "";
  position: absolute;
  top: -1.5em;
  z-index: -1;
  width: 200%;
  aspect-ratio: 1;
  border: none;
  border-radius: 40%;
  background-color: rgba(18, 85, 252, 0.25);
  transition: 2.5s;
}
.form form .form__btn:before {
  left: -80%;
  transform: translate3d(0, 5em, 0) rotate(-340deg);
}
.form form .form__btn:after {
  right: -80%;
  transform: translate3d(0, 5em, 0) rotate(390deg);
}
.form form .form__btn:hover, .form form .form__btn:focus {
  color: #ffffff;
  text-decoration: none;
}
.form form .form__btn:hover:before, .form form .form__btn:hover:after, .form form .form__btn:focus:before, .form form .form__btn:focus:after {
  transform: none;
  background-color: rgba(18, 85, 252, 0.75);
}
.form form .form__btn:hover {
  text-decoration: none;
}
.form form .form__btn i {
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .form {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .form .form__flex {
    display: flex;
    align-items: center;
  }
}
footer {
  background: url(img/footer-bg.jpg);
  color: #ffffff;
  padding: 2rem 0;
  text-align: center;
}
footer .footer__logo {
  width: 100%;
  max-width: 225px;
  margin-bottom: 1rem;
}
footer .footer__text {
  font-size: 0.875rem;
}
footer .footer__contacts {
  display: flex;
  flex-direction: column;
}
footer .footer__contacts a {
  text-decoration: none;
}
footer .footer__contacts .footer__tel {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
footer .footer__contacts .footer__tel:hover {
  color: #1255fc;
}
footer .footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
footer .footer__socials {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1rem;
}
footer .footer__socials .footer__socials__link {
  background-color: #1255fc;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.5s ease;
}
footer .footer__socials .footer__socials__link:hover {
  background-color: #000000;
  text-decoration: none;
}

@media (min-width: 768px) {
  footer .container {
    display: flex;
    justify-content: space-around;
  }
  footer .container .footer__company {
    width: 40%;
  }
}/*# sourceMappingURL=main.css.map */