:root {
  --font-primary: "Arial", sans-serif;
  --color-bg: #ffffff;
  --color-text: #222222;
  --color-accent: #007bff;
  --color-gray: #F6F6F8;
}

/* reset.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid #56bbe2;
  outline-offset: 2px;
}

.header {
  padding: 1rem 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__cta {
  display: none;
}
.header .nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #56bbe2;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}
.header__top {
  background-color: #F6F6F8;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
}
.header__main .header__logo img {
  height: 35px;
  width: auto;
}
.header__main .header__list {
  display: none;
}
.header__main .header__nav {
  position: fixed;
  max-width: 320px;
  background: #F6F6F8;
  width: 80%;
  height: 100vh;
  top: 0;
  left: -100%;
  z-index: 10;
  padding: 3rem 1rem;
  transition: left 0.9s ease;
}
.header__main .header__nav .nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #333;
}
.header__main .header__nav ul li {
  margin: 1rem 0;
}
.header__main .header__nav ul li a {
  color: #333;
  font-weight: 500;
}
.header__main .header__nav ul li a:hover {
  color: #56bbe2;
}
.header__main .header__nav .nav__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  border-top: #56bbe2 2px solid;
  border-bottom: #56bbe2 2px solid;
  padding: 1rem 0;
}
.header__main .header__nav .nav__bottom .header__contacts {
  display: flex;
  flex-direction: column;
}
.header__main .header__nav .nav__bottom .header__contacts span {
  color: #333;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.header__main .header__nav .nav__bottom .header__contacts span:hover {
  color: #56bbe2;
}
.header__main .header__nav .nav__bottom .header__socials {
  display: flex;
  gap: 1rem;
}
.header__main .header__nav .nav__bottom .header__socials a {
  color: #333;
  font-size: 1.5rem;
}
.header__main .header__nav .nav__bottom .header__socials a:hover {
  color: #56bbe2;
}

.overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  transition: left 0.6s ease;
}

@media (min-width: 768px) {
  .header {
    padding: 0;
  }
  .header .header__top {
    display: block;
  }
  .header .header__top .container .header__contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
  }
  .header .header__top .container .header__contacts a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  .header .header__top .container .header__contacts a:hover {
    color: #56bbe2;
  }
  .header .header__top .container .header__socials {
    display: flex;
    gap: 1rem;
  }
  .header .header__top .container .header__socials a {
    color: #333;
    font-size: 1.25rem;
    transition: all 0.3s ease;
  }
  .header .header__top .container .header__socials a:hover {
    color: #56bbe2;
  }
  .header__main {
    padding: 1rem 0;
  }
  .header__main .header__cta {
    display: block;
    background-color: #56bbe2;
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 200;
    order: 2;
  }
  .header__main .header__cta:hover {
    background-color: #4a9dcf;
  }
  .header__main .nav__toggle {
    order: 3;
  }
  .header__main .header__logo img {
    height: 50px;
    width: auto;
    order: 1;
  }
  .header__main .header__nav {
    left: -100%;
  }
}
@media (min-width: 1024px) {
  .header .header__main .nav__toggle {
    display: none;
  }
  .header .header__main .header__list {
    display: block;
  }
  .header .header__main .header__list ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .header .header__main .header__list ul li a {
    color: #333;
    font-weight: 600;
    font-size: 0.875rem;
  }
  .header .header__main .header__list ul li a:hover {
    color: #56bbe2;
  }
}
@media (min-width: 1280px) {
  .header .header__main .header__list ul {
    gap: 1rem;
  }
  .header .header__main .header__list ul li a {
    font-size: 1rem;
  }
}
.hero {
  padding: 4rem 0;
  background: #0B3B78;
  background: linear-gradient(125deg, rgb(11, 59, 120) 28%, rgb(86, 187, 226) 100%);
  color: #fff;
}
.hero__content .hero__img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 3rem;
}
.hero__content .hero__alert {
  margin-bottom: 1rem;
  display: block;
  padding-left: 25px;
  position: relative;
}
.hero__content .hero__alert::before {
  content: "";
  display: block;
  color: #fff;
  width: 20px;
  height: 3px;
  left: 0;
  top: 45%;
  position: absolute;
  background-color: #56bbe2;
}
.hero__content .hero__alert strong {
  font-weight: 700;
  color: #56bbe2;
}
.hero__content h1 {
  font-size: 3.2rem;
  line-height: 3rem;
  margin-bottom: 1rem;
  width: 300px;
}
.hero__content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.hero__content .hero__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #56bbe2;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.hero__content .hero__cta:hover {
  background-color: #3a8fbf;
}
.hero__content .hero__btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #44b749;
  background-color: #44b749;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.hero__content .hero__btn:hover {
  background-color: #f0f0f0;
  color: #333;
}
.hero__content .hero__btn--secondary {
  background-color: transparent;
  color: #44b749;
  border: 2px solid #44b749;
}
.hero__content .hero__btn--secondary:hover {
  background-color: #fff;
  color: #333;
}
.hero__form {
  border-top: 4px solid #56bbe2;
  color: #0B3B78;
  margin-top: 2rem;
  padding: 2rem;
  font-size: 0.875rem;
  background-color: #fff;
}
.hero__form__title {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.hero__form__text {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  border-bottom: 3px solid #f0f0f0;
  padding-bottom: 0.5rem;
}
.hero__form input {
  width: 100%;
  padding: 0.75rem;
  border: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  background-color: #f0f0f0;
}
.hero__form label {
  font-weight: 500;
}
.hero__form__btn {
  padding: 0.75rem 1.5rem;
  background-color: #56bbe2;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero__form__btn:hover {
  background-color: #3a8fbf;
}

@media (min-width: 768px) {
  .hero .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
  }
  .hero .container .hero__form {
    margin-top: 0;
    max-width: 405px;
  }
}
.about {
  padding: 4rem 1rem;
  color: #666;
  background-color: #F6F6F8;
}
.about__content .about__subtitle {
  font-size: 1rem;
  color: #56bbe2;
  padding-left: 25px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about__content .about__subtitle::before {
  content: "";
  display: block;
  color: #fff;
  width: 20px;
  height: 3px;
  left: 0;
  top: 45%;
  position: absolute;
  background-color: #56bbe2;
}
.about__content .about__title {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
  color: #0B3B78;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.about__content .about__text {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.about__content .about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.about__content .about__list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 25px;
  font-weight: 700;
  color: #0B3B78;
}
.about__content .about__list li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #56bbe2;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about__content .about__btn {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid #56bbe2;
  text-transform: uppercase;
  color: #56bbe2;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  display: block;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.about__content .about__btn:hover {
  background-color: #3a8fbf;
  color: #fff;
}

@media (min-width: 768px) {
  .about .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 2rem;
  }
  .about .about__content {
    max-width: 670px;
  }
  .about .about__content .about__list {
    justify-content: flex-start;
    gap: 2rem;
  }
  .about .about__img {
    width: 270px;
  }
  .about .about__btn {
    max-width: 430px;
  }
}
.processo {
  padding: 3rem 0;
}
.processo .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.processo__subtitle {
  font-size: 1rem;
  color: #56bbe2;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  text-align: center;
}
.processo__subtitle::before {
  content: "";
  display: block;
  color: #fff;
  width: 20px;
  height: 3px;
  left: 0%;
  top: 45%;
  position: absolute;
  background-color: #56bbe2;
}
.processo__subtitle::after {
  content: "";
  display: block;
  color: #fff;
  width: 20px;
  height: 3px;
  right: 0;
  top: 45%;
  position: absolute;
  background-color: #56bbe2;
}
.processo__title {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  color: #0B3B78;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin-bottom: 2rem;
}
.processo .processo_steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.processo__step {
  margin-top: 3rem;
  max-width: 330px;
}
.processo__step__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.processo__step__header .processo__step__img {
  width: 175px;
  height: 175px;
  background-color: #56bbe2;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.processo__step__header .processo__step_shape {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  z-index: 1;
}
.processo__step__header span {
  background-color: #56bbe2;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  margin-top: 2rem;
  z-index: 2;
  border-radius: 50px;
}
.processo__step__main .processo__step__title {
  font-size: 1.3rem;
  color: #0B3B78;
  margin-top: 1rem;
}
.processo__step__main .processo__step__text {
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (min-width: 768px) {
  .processo .processo_steps {
    gap: 0;
  }
  .processo__step {
    width: 25%;
    max-width: 230px;
  }
}
@media (min-width: 1280px) {
  .processo .processo_steps {
    gap: 1rem;
  }
  .processo__step {
    width: 25%;
    max-width: 256px;
  }
}
.faq {
  background-color: #F6F6F8;
  background-image: url("assets/img/bg-faq.png");
  background-position: right;
  background-size: contain;
  background-repeat: repeat-y;
  padding: 3rem 0;
}
.faq .container {
  display: flex;
  flex-direction: column;
}
.faq .container .faq__img {
  order: 2;
  margin-top: 2rem;
}
.faq .container .faq__content {
  order: 1;
}
.faq .container .faq__content .faq__subtitle {
  font-size: 1rem;
  color: #56bbe2;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  text-align: center;
}
.faq .container .faq__content .faq__subtitle::before {
  content: "";
  display: block;
  color: #fff;
  width: 20px;
  height: 3px;
  left: 0%;
  top: 45%;
  position: absolute;
  background-color: #56bbe2;
}
.faq .container .faq__content .faq__title {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  color: #0B3B78;
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}
.faq .container .faq__content .faq__item {
  background-color: #fff;
}
.faq .container .faq__content .faq__item .faq__header {
  display: flex;
  padding: 1rem 0 1rem 1rem;
}
.faq .container .faq__content .faq__item .faq__header .faq__toggle {
  padding: 1rem;
  background-color: #0B3B78;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.faq .container .faq__content .faq__item .faq__header .faq__item__title {
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
  border-bottom: 2px solid #F6F6F8;
  padding: 0 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.faq .container .faq__content .faq__item .faq__header .faq__item__title:hover {
  color: #56bbe2;
}
.faq .container .faq__content .faq__item .faq__answer {
  padding: 0 1rem;
  padding-top: 0;
  font-size: 0.875rem;
  color: #333;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-bottom: 1rem;
}
.faq .container .faq__content .faq__item .faq__answer p {
  padding-bottom: 1rem;
}
.faq .container .faq__content .active .faq__header .faq__toggle {
  padding: 1rem;
  background-color: #56bbe2;
  color: #fff;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .faq .container {
    flex-direction: row;
    gap: 2rem;
  }
  .faq .container .faq__img {
    display: none;
  }
  .faq .container .faq__content {
    order: 2;
  }
}
@media (min-width: 1024px) {
  .faq .container .faq__img {
    display: block;
  }
}
.clientes {
  padding: 3rem 0;
}
.clientes .container .clientes__img__vertical, .clientes .container .clientes__img__horizontal {
  display: none;
}
.clientes .container .clientes__avaliacoes {
  background-color: #0B3B78;
  padding: 2rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
  height: auto;
}
.clientes .container .clientes__avaliacoes .clientes__review {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 90%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}
.clientes .container .clientes__avaliacoes .clientes__review.active {
  transform: translateX(0%);
  opacity: 1;
  z-index: 1;
}
.clientes .container .clientes__avaliacoes .clientes__review.to-left {
  transform: translateX(-100%);
}
.clientes .container .clientes__avaliacoes .clientes__review.to-right {
  transform: translateX(100%);
}
.clientes .container .clientes__avaliacoes .clientes__review .clientes__quote {
  width: 75px;
  margin-bottom: 2rem;
}
.clientes .container .clientes__avaliacoes .clientes__review .clientes__text {
  margin-bottom: 2rem;
  font-style: italic;
}
.clientes .container .clientes__avaliacoes .clientes__review .clientes__stars {
  color: #56bbe2;
}
.clientes .container .clientes__avaliacoes .clientes__review .clientes__info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.clientes .container .clientes__avaliacoes .clientes__review .clientes__info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.clientes .container .clientes__avaliacoes .clientes__review .clientes__info .clientes__name {
  font-weight: bold;
}
.clientes .container .clientes__avaliacoes .clientes__control {
  font-size: 0.4rem;
  text-align: center;
  margin-top: 320px;
}
.clientes .container .clientes__avaliacoes .clientes__control .clientes__mark {
  padding: 0.5rem;
  border-radius: 50%;
  color: #56bbe2;
  display: inline-block;
  border: #0B3B78 1px solid;
}
.clientes .container .clientes__avaliacoes .clientes__control .clientes__mark.active {
  border: #56bbe2 1px solid;
}
.clientes .container .clientes__counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1rem;
}
.clientes .container .clientes__counter .cliente__counter__item {
  text-align: center;
  background-color: #F6F6F8;
  padding: 1rem;
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.clientes .container .clientes__counter .cliente__counter__item:last-child {
  display: none;
}
.clientes .container .clientes__counter .cliente__counter__item h3 {
  font-size: 2rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2px #56bbe2;
  font-weight: 900;
  font-family: sans-serif;
}
.clientes .container .clientes__counter .cliente__counter__item p {
  font-size: 0.75rem;
  color: #0B3B78;
  font-weight: 600;
}

@media (min-width: 768px) {
  .clientes .container {
    display: flex;
    gap: 2rem;
  }
  .clientes .container .clientes__avaliacoes {
    width: 80%;
  }
  .clientes .container .clientes__counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
  }
  .clientes .container .clientes__counter .cliente__counter__item {
    width: 100%;
  }
  .clientes .container .clientes__counter .cliente__counter__item:last-child {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .clientes .container {
    gap: 1rem;
  }
  .clientes .container .clientes__img__vertical {
    display: flex;
    width: 24%;
  }
  .clientes .container .clientes__img__horizontal {
    width: 100%;
  }
  .clientes .container .clientes__avaliacoes {
    width: 60%;
  }
  .clientes .container .clientes__avaliacoes .clientes__review {
    top: 5rem;
  }
  .clientes .container .clientes__avaliacoes .clientes__control {
    position: absolute;
    left: 42%;
    bottom: 8%;
  }
  .clientes .container .clientes__counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
  }
  .clientes .container .clientes__counter .cliente__counter__item {
    width: 150px;
    height: 150px;
  }
}
.footer {
  background-color: #0B3B78;
  color: #fff;
  font-size: 0.875rem;
  padding: 2rem 1rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer__logo {
  width: 120px;
  margin-bottom: 1rem;
}
.footer__description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__social {
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer__social:hover {
  color: #56bbe2;
}
.footer__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 0.5rem;
}
.footer__link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #56bbe2;
}
.footer__contact .footer__text {
  margin-bottom: 0.5rem;
  color: #ccc;
}
.footer__contact .footer__text i {
  margin-right: 0.5rem;
  color: #56bbe2;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: #ccc;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

body .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
body .modal--parcerias.modal__hidden {
  display: none !important;
}
body .modal--parcerias {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
}
body .modal__content {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 620px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
body .modal__content--hidden {
  display: none;
}
body .modal__title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
body .modal__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
body .modal__input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
body .modal__checkbox {
  width: 20px;
  height: 20px;
}
body .modal__button {
  margin-top: 1.5rem;
  padding: 0.75rem;
  width: 100%;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
}/*# sourceMappingURL=main.css.map */