@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700;800&family=Poppins:wght@400;500;700&display=swap');
.soft-transition {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin: 0;
  outline: 0;
  padding: 0;
}
a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  text-decoration: none;
}
br {
  clear: both;
}
input,
textarea,
select {
  outline: none;
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  color: #585858;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}
strong,
b {
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.container-fluid {
  padding: 0;
}
.btn-blue {
  background-color: #3C8ADD;
  border: none;
  border-radius: 27px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 1.125rem 2.95rem;
  text-align: center;
  min-width: unset;
  display: inline-block;
}
.btn-blue:hover {
  background-color: #2270c4;
  color: #ffffff;
}
.btn-white {
  background-color: #FFFFFF;
  border: none;
  border-radius: 27px;
  color: #08668E;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 1.125rem 2.95rem;
  text-align: center;
  min-width: unset;
  display: inline-block;
}
.btn-white:hover {
  background-color: #e6e6e6;
  color: #0b89be;
}
.statistic-items {
  margin-top: 20px;
  display: flex;
}
.statistic-items:last-of-type {
  margin: 50px auto 60px;
  width: 65%;
}
.statistic-items .item {
  height: 90px;
  position: relative;
  width: 100%;
}
.statistic-items .item img {
  max-height: 60px;
}
.statistic-items .item .number {
  color: #1B5087;
  font-size: 30px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.06em;
  position: relative;
  left: -20px;
  bottom: -10px;
}
.statistic-items .item .text {
  color: #3C8ADD;
  font-weight: 600;
  line-height: 24px;
  left: 35px;
  bottom: 0;
  position: absolute;
  margin-bottom: 0;
  width: 100px;
  height: 40px;
}
.dropdown-filter .dropdown-toggle {
  border-radius: 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 23px;
  padding: 10px 29px;
}
.dropdown-filter .dropdown-toggle:after {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dropdown-filter .dropdown-toggle[aria-expanded="true"]:after {
  transform: rotateX(180deg);
}
.dropdown-filter .dropdown-menu {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 23px;
  border: none;
  width: 100%;
  top: 10px !important;
  border-radius: 20px;
  box-shadow: 0px 14px 44px #c7c7c760;
}
.list-products {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 30px;
  margin-bottom: 90px;
}
.list-products .card {
  border: none;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 14px 44px rgba(0,0,0,0.06);
}
.list-products .card-img-top {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px 10px 0px 0px;
  height: 270px;
}
.list-products .card-body {
  padding: 20px 20px 30px;
}
.list-products .card-body .card-title {
  color: #08668E;
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 20px;
}
.list-products .card-body .card-text {
  color: #AAAAAA;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}
.list-products .card-footer {
  background-color: #3C8ADD;
  border: 3px solid #FFFFFF00;
  border-radius: 0px 0px 10px 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  padding: 21px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.list-products .card-footer:hover {
  background-color: #FFFFFF00;
  border-color: #3C8ADD;
  color: #3C8ADD;
}
#top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
#top .menu-desktop {
  background-color: #FFFFFF00;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#top .menu-desktop .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}
#top .menu-desktop .logo {
  height: 60px;
}
#top .menu-desktop .links {
  display: flex;
  align-items: center;
}
#top .menu-desktop .menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 0;
}
#top .menu-desktop .menu .item {
  margin-right: 30px;
}
#top .menu-desktop .menu .item:last-child {
  margin-right: 0;
}
#top .menu-desktop .menu .link {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  position: relative;
}
#top .menu-desktop .menu .link:hover {
  color: #3C8ADD;
}
#top .menu-desktop .menu .link.active {
  color: #FFFFFF;
}
#top .menu-desktop .menu .link.active:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  bottom: -15px;
  background: #2B82DD;
  width: 100%;
}
#top .menu-desktop .social-medias {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
#top .menu-desktop .social-medias .item {
  margin-right: 20px;
}
#top .menu-desktop .social-medias .item:last-child {
  margin-right: 0;
}
#top .menu-desktop .social-medias .link svg {
  height: 16px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#top .menu-desktop .social-medias .link svg.stroke {
  stroke: #3C8ADD;
}
#top .menu-desktop .social-medias .link svg.fill {
  fill: #3C8ADD;
}
#top .menu-desktop .social-medias .link:hover svg.stroke {
  stroke: #67a4e5;
}
#top .menu-desktop .social-medias .link:hover svg.fill {
  fill: #67a4e5;
}
#top #menu-mobile {
  display: none;
}
#banner {
  height: 100vh;
  overflow-x: hidden;
  position: relative;
}
#banner .swiper-slide {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}
#banner .container {
  height: 100%;
  position: relative;
}
#banner .block-text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding-bottom: 190px;
  width: 40%;
}
#banner .block-text .title {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: bold;
  line-height: 65px;
  margin-bottom: 15px;
}
#banner .block-text .text {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 30px;
}
#banner .block-text .btn-banner {
  background-color: #1B5087;
  border: none;
  border-radius: 27px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 1.165rem 1.85rem;
  text-align: center;
  min-width: unset;
  display: inline-block;
}
#banner .block-text .btn-banner:hover {
  background-color: #13375d;
  color: #ffffff;
}
#about-home #contacts {
  position: absolute;
  bottom: -70px;
  width: 100%;
  z-index: 1;
}
#about-home #contacts .container {
  display: flex;
  justify-content: space-between;
}
#about-home #contacts .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  width: 100%;
}
#about-home #contacts .item:nth-child(1) {
  background-color: #1B5087;
}
#about-home #contacts .item:nth-child(2) {
  background-color: #286CB4;
}
#about-home #contacts .item:nth-child(3) {
  background-color: #3C8ADD;
}
#about-home #contacts .item .link {
  color: #FFFFFF;
  font-weight: 600;
  position: relative;
}
#about-home #contacts .item svg {
  margin-right: 10px;
  min-height: 23px;
  width: 27px;
}
#about-home #contacts .item svg.stroke {
  stroke: #FFFFFF;
}
#about-home #contacts .item svg.fill {
  fill: #FFFFFF;
}
#about-home #content {
  padding-bottom: 80px;
  padding-top: 140px;
}
#about-home #content .container {
  display: flex;
  justify-content: space-between;
}
#about-home #content .about-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  margin-top: 84px;
  max-height: 585px;
  position: relative;
  width: 40%;
}
#about-home #content .about-image:before {
  content: "";
  background: #F2F2F2;
  left: -84px;
  height: 95%;
  top: -84px;
  position: absolute;
  width: 100%;
  z-index: -1;
}
#about-home #content .about-texts {
  padding-left: 5rem;
}
#about-home #content .partition-title {
  margin-bottom: 20px;
}
#about-home #content .partition-title .title {
  color: #3C8ADD;
  font-size: 15px;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 0;
  text-transform: uppercase;
}
#about-home #content .partition-title .subtitle {
  color: #222222;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 0;
}
#about-home #content .about-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 27px;
  margin-bottom: 40px;
}
#steps {
  background-color: #F9F9F9;
  padding-bottom: 150px;
  padding-top: 85px;
}
#steps .container {
  display: flex;
  justify-content: space-between;
}
#steps .item {
  position: relative;
  text-align: center;
  width: 20%;
}
#steps .item:not(:last-child):after {
  content: "";
  background-image: url(../img/site/icons/arrow-next-step.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 40px;
  position: absolute;
  right: -45px;
  top: 35%;
}
#steps .step-img {
  height: 115px;
  margin-bottom: 50px;
}
#steps .title {
  color: #000000;
  font-size: 23px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
}
#segments-home {
  background: #3C8ADD;
  box-shadow: -10px -10px 210px rgba(0,0,0,0.05);
  padding-bottom: 70px;
  padding-top: 40px;
}
#segments-home .container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#segments-home .segments-texts {
  padding-right: 5rem;
  width: 45%;
}
#segments-home .partition-title {
  margin-bottom: 20px;
}
#segments-home .partition-title .title {
  color: #3C8ADD;
  font-size: 15px;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 0;
  text-transform: uppercase;
}
#segments-home .partition-title .subtitle {
  color: #222222;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 0;
}
#segments-home .partition-title .title {
  color: #FFFFFF;
}
#segments-home .segments-text {
  color: #000000;
  font-size: 14px;
  line-height: 27px;
  margin-bottom: 50px;
}
#segments-home .segments-advantages {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 40px;
  margin-bottom: 55px;
}
#segments-home .segments-advantages .item {
  color: #F8F8F8;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 27px;
  display: inline-flex;
}
#segments-home .segments-advantages .item i {
  font-size: 20px;
  margin-right: 15px;
  margin-top: 5px;
}
#segments-home .segments-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  flex: none;
  right: -140px;
  position: absolute;
  top: -100px;
  width: 65%;
  height: 520px;
}
#products-home {
  background-color: #FAFAFA;
  padding-bottom: 70px;
  padding-top: 80px;
  text-align: center;
}
#products-home .partition-title {
  margin-bottom: 30px;
  text-align: left;
}
#products-home .partition-title .title {
  color: #3C8ADD;
  font-size: 15px;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 0;
  text-transform: uppercase;
}
#products-home .partition-title .subtitle {
  color: #222222;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 0;
}
#contact {
  background-color: #FFFFFF;
  box-shadow: -14px -9px 19px -2px rgba(0,0,0,0.04);
  position: relative;
}
#contact #area-de-contato {
  position: absolute;
  top: -135px;
}
#contact #map {
  filter: grayscale(1);
  height: 510px;
}
#contact .container {
  padding: 0;
  position: relative;
}
#contact .form-column {
  float: right;
  height: 510px;
  padding-left: 100px;
  padding-right: 40px;
  padding-top: 35px;
}
#contact .partition-title {
  margin-bottom: 30px;
}
#contact .partition-title .title {
  color: #3C8ADD;
  font-size: 15px;
  font-weight: 800;
  line-height: 44px;
  margin-bottom: 0;
  text-transform: uppercase;
}
#contact .partition-title .subtitle {
  color: #222222;
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 0;
}
#contact .input-area {
  float: left;
  margin-bottom: 35px;
  width: 50%;
}
#contact .input-area:nth-child(odd) {
  padding-right: 10px;
}
#contact .input-area:nth-child(even) {
  padding-left: 10px;
}
#contact .input-area:last-of-type {
  margin-bottom: 35px;
  padding: 0;
  width: 100%;
}
#contact .input-area label {
  color: #747474;
  font-family: ;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 0;
  text-transform: uppercase;
}
#contact .input-area input[type="text"],
#contact .input-area input[type="email"] {
  background-color: #FFFFFF00;
  border: 0;
  border-bottom: 1px solid #E8E8E8;
  border-radius: 0;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  padding: 3px 0;
  width: 100%;
}
#contact .btn-send {
  background-color: #3C8ADD;
  border: none;
  border-radius: 27px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 0.85em 3.15rem;
  text-align: center;
  min-width: unset;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#contact .btn-send:hover {
  background-color: #2270c4;
  color: #ffffff;
}
#bottom {
  box-shadow: 0px -9px 19px -2px rgba(0,0,0,0.04);
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
}
#bottom .content {
  background-color: #FFFFFF;
  padding-bottom: 30px;
  padding-top: 40px;
}
#bottom .content .menu-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
#bottom .content .logo {
  height: 50px;
}
#bottom .content .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#bottom .content .link {
  color: #222222;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  margin-right: 12px;
}
#bottom .content .link:last-child {
  margin-right: 0;
}
#bottom .content .link.active {
  color: #3C8ADD;
  font-weight: bold;
}
#bottom .content .link:hover {
  color: #3C8ADD;
}
#bottom .content .infos-contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#bottom .content .infos-contact .addresses {
  list-style: none;
  margin-bottom: 0;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 2fr;
}
#bottom .content .infos-contact .addresses li {
  align-items: center;
  display: flex;
  margin-right: 30px;
}
#bottom .content .infos-contact .addresses li:last-child {
  margin-right: 0;
}
#bottom .content .infos-contact .addresses li svg {
  margin-right: 13px;
  min-height: 23px;
  width: 27px;
}
#bottom .content .infos-contact .addresses li svg.fill {
  fill: #3C8ADD;
}
#bottom .content .infos-contact .addresses li svg.stroke {
  stroke: #3C8ADD;
}
#bottom .content .infos-contact .addresses li .item {
  color: #222222;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
}
#bottom .content .infos-contact .addresses li .item:hover {
  text-decoration: underline;
}
#bottom .content .social-medias {
  flex: none;
  margin-left: 50px;
}
#bottom .content .social-medias .item {
  display: inline-block;
  margin-right: 25px;
}
#bottom .content .social-medias .item:last-child {
  margin-right: 0;
}
#bottom .content .social-medias .item svg {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#bottom .content .social-medias .item svg.stroke {
  stroke: #3C8ADD;
}
#bottom .content .social-medias .item svg.fill {
  fill: #3C8ADD;
}
#bottom .content .social-medias .item svg:hover.stroke {
  stroke: #2270c4;
}
#bottom .content .social-medias .item svg:hover.fill {
  fill: #2270c4;
}
#bottom .copyright {
  background-color: #F4F4F4;
  padding-bottom: 20px;
  padding-top: 20px;
}
#bottom .copyright .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#bottom .copyright .container .text {
  color: #2C2C2C;
  font-size: 13px;
  line-height: 30px;
  margin-bottom: 0;
  text-transform: capitalize;
}
#bottom .copyright .container img {
  height: 16px;
}
