/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version,>1%
*/

@import url("https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
.button {
  padding: 22px 35px;
  border-radius: 800px;
  font: 800 14px/1 "Istok Web", sans-serif;
  letter-spacing: 0.71px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: 250ms;
  -o-transition: 250ms;
  transition: 250ms;
  text-align: center;
}

.button:hover {
  padding-left: 41px;
  padding-right: 41px;
}

.button--outline-blue {
  border: 2px solid #0e6bb0;
  color: #0e6bb0;
  background: none;
}

.button--outline-blue:hover {
  background: #0e6bb0;
  color: #ffffff;
}

.button--outline-light-blue {
  border: 2px solid #6d9cbf;
  color: #6d9cbf;
  background: none;
}

.button--outline-light-blue:hover {
  background: #6d9cbf;
  color: #ffffff;
}

.button--outline-white {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: none;
}

.button--outline-white:hover {
  background: #ffffff;
  color: #0e6bb0;
}

.button--white {
  background: #ffffff;
  color: #6a6a6a;
}

.button--white:hover {
  opacity: 0.8;
}

.button--blue {
  background: #0e6bb0;
  color: #ffffff;
}

.button--blue:hover {
  background: #083c63;
}

.banner-page {
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: 120px 0 96px 0;
}

@media screen and (max-width: 420px) {
  .banner-page {
    height: 500px;
  }
}

.banner-page::before {
  content: "";
  background: #ffffff;
  width: 2px;
  height: 84px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

.banner-page__title {
  color: #ffffff;
  font: 700 64px/87px "Istok Web", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 420px) {
  .banner-page__title {
    font: 700 48px/60px "Istok Web", sans-serif;
  }
}

.navbar {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 40px #0e6bb026;
  box-shadow: 0 3px 40px #0e6bb026;
  z-index: 999;
}

@media screen and (max-width: 1200px) {
  .navbar {
    height: auto;
    padding: 16px 0;
  }
}

.navbar .container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar__logo {
  margin: 0 90px 0 0;
  padding-top: 8px;
  position: relative;
  z-index: 9999999;
}

@media screen and (max-width: 1200px) {
  .navbar__logo {
    padding-top: 0;
  }
}

@media screen and (max-width: 420px) {
  .navbar__logo {
    width: 160px;
  }
}

.navbar__links {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .navbar__links {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #ffffff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 128px 24px 0 24px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
    overflow: hidden;
  }
  .navbar__links.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 99999;
  }

  .dolar-value::after {
    display: none !important;
  }
}

.navbar__links__link {
  padding: 0 0 8px 0;
}

@media screen and (max-width: 1200px) {
  .navbar__links__link {
    margin: 0 0 16px 0;
  }
}

.navbar__links__link.active a::before {
  opacity: 1;
  visibility: visible;
  width: 104%;
}

.navbar__links__link a {
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .navbar__links__link a {
    font-size: 18px;
  }
}

.navbar__links__link a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 104%;
}

.navbar__links__link a::before {
  content: "";
  background: #0e6bb0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  height: 2px;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.navbar__links__idioma {
  height: 100%;
  max-width: 220px;
  background: #0e6bb0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma {
    height: auto;
    padding: 0;
    width: 100%;
  }

  .navbar__links__idioma__atual {
    padding: 20px;
  }

  .dolar-value {
    padding: 10px 20px !important;
    margin-bottom: 0 !important;
  }
}

.navbar__links__idioma::before {
  content: "";
  background: #0e6bb0;
  position: absolute;
  right: 1px;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  height: 100%;
  width: 1000%;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma::before {
    display: none;
  }
}

.navbar__links__idioma__atual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma__atual {
    width: 100%;
  }
}

.navbar__links__idioma__atual.active span::before {
  -webkit-transform: translate(100%, -50%) rotate(180deg);
  -ms-transform: translate(100%, -50%) rotate(180deg);
  transform: translate(100%, -50%) rotate(180deg);
}

.navbar__links__idioma__atual figure {
  margin: 0 8px 0 0;
}

.navbar__links__idioma__atual figure img {
  display: block;
}

.navbar__links__idioma__atual span {
  font-size: 12px;
  color: #ffffff;
  position: relative;
  padding: 0 14px 0 0;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma__atual span {
    display: block;
    width: 100%;
  }
}

.navbar__links__idioma__atual span::before {
  content: "";
  position: absolute;
  right: 0;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  top: 50%;
  width: 8px;
  height: 8px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  background: url("../assets/arrow.svg") center/cover no-repeat;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma__atual span::before {
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar__links__idioma__outros {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  transform: translateY(25%);
  background: #ffffff;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 3px 40px #0e6bb026;
  box-shadow: 0 3px 40px #0e6bb026;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma__outros {
    width: 100%;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    background: #0e6bb0;
  }
}

.navbar__links__idioma__outros.open {
  opacity: 1;
  visibility: visible;
}

.navbar__links__idioma__outros a {
  padding: 5px 38px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  text-align: right;
  color: #0e6bb0;
  font-size: 12px;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma__outros a {
    text-align: left;
    padding: 0 56px 16px 54px;
    color: #ffffff;
  }
}

.navbar__links__idioma__outros a:hover {
  background: #0e6bb0;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .navbar__links__idioma__outros a:hover {
    background: #083c63;
  }
}

.navbar__menu-icon {
  display: none;
  position: relative;
  z-index: 9999999;
}

@media screen and (max-width: 1200px) {
  .navbar__menu-icon {
    display: block;
  }
}

.navbar__menu-icon__bar {
  height: 3px;
  width: 40px;
  background: #0e6bb0;
  display: block;
  margin: 8px 0;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.navbar__menu-icon__bar:nth-child(2) {
  width: 24px;
  margin-left: auto;
}

.navbar__menu-icon.active .navbar__menu-icon__bar:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  -ms-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.navbar__menu-icon.active .navbar__menu-icon__bar:nth-child(2) {
  width: 0;
}

.navbar__menu-icon.active .navbar__menu-icon__bar:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.footer {
  background: #3b3b3b;
  position: relative;
  z-index: 0;
}

.footer .container {
  border-top: 1px solid #464646;
  padding: 90px 0 152px 0;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .footer .container {
    padding: 80px 24px;
  }
}

.footer .container::before {
  content: "";
  background: #0e6bb0;
  position: absolute;
  top: -1px;
  left: 0;
  width: 260px;
  height: 7px;
}

@media screen and (max-width: 1200px) {
  .footer .container::before {
    width: 100%;
  }
}

.footer__logo {
  width: 215px;
  display: block;
}

.footer__cols {
  margin: 86px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .footer__cols {
    margin: 40px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__cols p,
.footer__cols a,
.footer__cols i {
  color: #b7b7b7;
}

.footer__cols__col1 {
  max-width: 400px;
  width: 100%;
}

.footer__cols__col1 p {
  font-size: 16px;
  line-height: 24px;
}

.footer__cols__col1 p:not(:last-child) {
  margin: 0 0 30px 0;
}

@media screen and (max-width: 1200px) {
  .footer__cols__col1 p:not(:last-child) {
    margin: 0 0 16px 0;
  }
}

.footer__cols__col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0 128px;
}

@media screen and (max-width: 1200px) {
  .footer__cols__col2 {
    margin: 40px 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-grid-columns: inherit;
    grid-template-columns: inherit;
    gap: inherit;
  }
}

@media screen and (max-width: 420px) {
  .footer__cols__col2 {
    margin: 40px 0 16px 0;
  }
}

@media screen and (max-width: 1200px) {
  .footer__cols__col2 li {
    margin: 0 32px 0 0;
  }
}

@media screen and (max-width: 420px) {
  .footer__cols__col2 li {
    margin: 0 32px 24px 0;
  }
}

.footer__cols__col2 li a {
  text-transform: uppercase;
  margin: 0 0 20px 0;
  display: block;
  font-size: 14px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

@media screen and (max-width: 1200px) {
  .footer__cols__col2 li a {
    margin: 0;
  }
}

.footer__cols__col2 li a:hover {
  opacity: 0.6;
}

.footer__cols__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__cols__media a {
  display: block;
  margin: 0 0 0 50px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

@media screen and (max-width: 1200px) {
  .footer__cols__media a {
    margin: 0 32px 0 0;
  }
}

.footer__cols__media a:hover {
  opacity: 0.6;
}

.footer__cols__media a i,
.footer__cols__media p i {
  font-size: 23px;
}

.banner {
  margin-top: 114px;
  height: 80vh;
  min-height: 750px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .banner {
    margin: 89px 0 0 0;
  }
}

@media screen and (max-width: 420px) {
  .banner {
    margin: 72px 0 0 0;
  }
}

.banner::before {
  content: "";
  background: #0e6bb0;
  height: calc(100%);
  width: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .banner::before {
    width: 63%;
  }
}

@media screen and (min-width: 1700px) {
  .banner::before {
    width: 63%;
  }
}

@media screen and (max-width: 420px) {
  .banner::before {
    width: 100%;
  }
}

.banner::after {
  content: "";
  background: #e3e8eb;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  z-index: 1;
}

.banner .container {
  position: relative;
  z-index: 9;
  height: 100%;
}

.banner__nav {
  position: absolute;
  bottom: 104px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 630px;
}

@media screen and (max-width: 1200px) {
  .banner__nav {
    display: none;
  }
}

.banner__nav li a {
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  position: relative;
}

.banner__nav li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 102%;
}

.banner__nav li a::before {
  content: "";
  background: #ffffff;
  width: 0;
  opacity: 0;
  visibility: hidden;
  height: 2px;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.banner__content {
  display: none;
  -webkit-animation: 1.5s fade forwards;
  animation: 1.5s fade forwards;
}

.banner__content.active {
  display: block;
}

.banner__content__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 1200px) {
  .banner__content__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media screen and (max-width: 790px) {
  .banner__content__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .banner__content__product__title {
    width: 100% !important;
    text-align: center;
    margin-top: 60px !important;
  }

  .banner__content__product__image {
    margin: 0 auto !important;
    width: 95% !important;
    max-width: 95% !important;
  }

  .banner::before {
    width: 100% !important;
  }

  .banner__preview {
    display: none !important;
  }

  .whatsapp-floating {
    right: 10px !important;
    bottom: 10px !important;
  }
}

.banner__bullets {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #0e6bb0;
  padding: 20px 0;
  position: relative;
  z-index: 99;

  height: 80vh;
  width: 40px;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
}

@media screen and (max-width: 790px) {
  .banner__bullets {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    display: flex;
    width: 100%;
    height: auto;
    top: unset;
    bottom: 10px;
  }

  .banner {
    min-height: auto;
    height: 130vw;
  }

  .banner .container {
    height: 103% !important;
  }
}

.banner__bullet {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  margin: 10px;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  cursor: pointer;
}

.banner__bullet.active {
  background: #083c63 !important;
}

.banner__content__product__title {
  color: #ffffff;
  font: 700 50px/73px "Istok Web", sans-serif;
  text-transform: uppercase;
  width: 35%;
  margin: 225px 0 0 0;
}

@media screen and (max-width: 1200px) {
  .banner__content__product__title {
    font: 700 30px/53px "Istok Web", sans-serif;
    margin: 160px 0 0 0;
  }
}

@media screen and (max-width: 420px) {
  .banner__content__product__title {
    margin: 140px 0 0 0;
    font: 700 26px/34px "Istok Web", sans-serif;
    text-align: center;
  }
}

.banner__content__product__image {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.banner__content__product__image img {
  width: auto;
  height: 100vh;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 1700px) {
  .banner__content__product__image {
    /* width: 530px; */
  }
}

@media screen and (max-width: 1390px) {
  .banner__content__product__image {
    /* width: 800px; */
    /* height: 600px; */
    margin-right: 6%;
  }
}

@media screen and (max-width: 780px) {
  .banner__content__product__image {
    /* width: 800px; */
    /* height: 600px; */
    margin-right: 6%;
  }

  .banner__content__product__image img {
    height: auto;
    width: 100%;
    max-width: 310px;
    max-height: 310px;
    object-fit: contain;
  }
}

@media screen and (max-width: 420px) {
  .banner__content__product__image {
    /* width: 600px; */
    /* height: 400px; */
  }
}

.banner__preview {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 99;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-animation: 1s fadePreview forwards;
  animation: 1s fadePreview forwards;
  display: none !important;
}

.banner__preview.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner__preview figure {
  width: 152px;
}

@media screen and (max-width: 420px) {
  .banner__preview figure {
    width: 104px;
  }
}

.banner__preview h5 {
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 20px 0 0;
  max-width: 100px;
}

@media screen and (max-width: 420px) {
  .banner__preview h5 {
    display: none;
  }
}

.banner__preview h5::after {
  content: "";
  background: #0e6bb0;
  width: 24px;
  height: 2px;
  position: relative;
  display: block;
  margin: 5px 0 0 0;
}

.banner__scroll {
  position: absolute;
  right: 64px;
  bottom: 64px;
  z-index: 99;
  width: 35px;
}

@media screen and (max-width: 420px) {
  .banner__scroll {
    right: 10px;
    bottom: 10px;
  }
}

.sobre {
  padding: 200px 0 260px 0;
}

@media screen and (max-width: 420px) {
  .sobre {
    padding: 96px 0;
  }
}

.sobre__title h1,
.sobre__title h1 span {
  font: 700 93px/110px "Istok Web", sans-serif;
  text-transform: uppercase;
  max-width: 790px;
  width: 100%;
  letter-spacing: -4.74px;
}

@media screen and (max-width: 420px) {
  .sobre__title h1,
  .sobre__title h1 span {
    font: 700 38px/44px "Istok Web", sans-serif;
    letter-spacing: -1px;
  }
}

.sobre__title h1 {
  margin: 0 0 72px 0;
}

@media screen and (max-width: 420px) {
  .sobre__title h1 {
    margin: 0 0 40px 0;
  }
}

.sobre__title h1 span {
  color: #083c63;
}

.sobre__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sobre__content > div {
  max-width: 532px;
  width: 100%;
}

.sobre__content > div p {
  margin: 0 0 40px 0;
  position: relative;
}

.sobre__content > div p::before {
  content: "";
  background: #0e6bb0;
  position: absolute;
  left: -28px;
  top: 8px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  width: 112px;
  height: 2px;
}

.produtos {
  padding: 168px 0;
  background: #083c63;
}

@media screen and (max-width: 420px) {
  .produtos {
    padding: 96px 0 128px 0;
  }
}

.produtos .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .produtos .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.produtos__title {
  color: #ffffff;
  font: 700 51px/62px "Istok Web", sans-serif;
  margin: 0 160px 0 0;
  text-transform: uppercase;
  max-width: 300px;
}

@media screen and (max-width: 1200px) {
  .produtos__title {
    max-width: 100%;
    margin: 0 0 48px 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .produtos__title {
    font-size: 36px;
    line-height: 46px;
  }
}

.produtos__carrossel {
  width: 90%;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

@media screen and (max-width: 420px) {
  .produtos__carrossel {
    width: 100%;
  }
}

.produtos__carrossel .swiper-container .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.produtos__carrossel .swiper-container .swiper-wrapper .swiper-slide a {
  width: 265px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 32px 0;
}

.produtos__carrossel .swiper-container .swiper-wrapper .swiper-slide .button {
  width: 100%;
  height: 76px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.produtos__carrossel .swiper-pagination {
  bottom: -40px;
  left: 50%;
  right: inherit;
}

@media screen and (max-width: 420px) {
  .produtos__carrossel .swiper-pagination {
    width: 100%;
  }
}

.produtos__carrossel .swiper-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 7px;
  border: 1px solid #0e6bb0;
  background: none;
  border-radius: 0;
  opacity: 1;
  margin: 0 12px;
}

.produtos__carrossel .swiper-pagination .swiper-pagination-bullet-active {
  background: #0e6bb0 !important;
}

.exportacao {
  padding: 200px 0;
}

@media screen and (max-width: 1200px) {
  .exportacao {
    padding: 88px 0;
  }
}

.exportacao__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.exportacao__header h6 {
  color: #0e6bb0;
  font: 500 13px/17px "Istok Web", sans-serif;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 420px) {
  .exportacao__header h6 {
    margin: 0 0 12px 0;
  }
}

.exportacao__header h2 {
  font: 700 51px/62px "Istok Web", sans-serif;
  margin: 0 0 104px 0;
  text-transform: uppercase;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 420px) {
  .exportacao__header h2 {
    font: 700 36px/44px "Istok Web", sans-serif;
    margin: 0 0 64px 0;
  }
}

.exportacao__mapa {
  position: relative;
  margin: 0 0 80px 0;
}

.exportacao__mapa__pin {
  position: absolute;
  -webkit-animation: 400ms fade forwards;
  animation: 400ms fade forwards;
  display: none;
}

.exportacao__mapa__pin.active {
  display: block;
}

@media screen and (max-width: 420px) {
  .exportacao__mapa__pin.active {
    display: none;
  }
}

.exportacao__mapa__pin--1 {
  top: 88px;
  left: 227px;
}

.exportacao__mapa__pin--2 {
  top: 120px;
  left: 187px;
}

.exportacao__mapa__pin--3 {
  top: 177px;
  left: 226px;
}

.exportacao__mapa__pin--4 {
  top: 167px;
  left: 278px;
}

.exportacao__mapa__pin--5 {
  top: 207px;
  left: 281px;
}

.exportacao__mapa__pin--6 {
  top: 265px;
  left: 330px;
}

.exportacao__mapa__pin--7 {
  top: 285px;
  left: 415px;
}

.exportacao__mapa__pin--8 {
  top: 278px;
  left: 367px;
}

.exportacao__mapa__pin--9 {
  top: 300px;
  left: 351px;
}

.exportacao__mapa__pin--10 {
  top: 327px;
  left: 366px;
}

.exportacao__mapa__pin--11 {
  top: 357px;
  left: 340px;
}

.exportacao__mapa__pin--12 {
  top: 84px;
  left: 51%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.exportacao__mapa__pin--13 {
  top: 150px;
  left: 46%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.exportacao__mapa__pin--14 {
  top: 145px;
  left: 53%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.exportacao__mapa__pin--15 {
  top: 194px;
  left: 60%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.exportacao__mapa__pin--16 {
  top: 112px;
  right: 380px;
}

.exportacao__mapa .button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  -webkit-transition: 250ms;
  -o-transition: 250ms;
  transition: 250ms;
}

.exportacao__mapa .button:hover {
  background: #083c63;
}

@media screen and (max-width: 420px) {
  .exportacao__mapa .button {
    width: 100%;
  }
}

.exportacao__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-filter: saturate(0);
  filter: saturate(0);
  opacity: 0.5;
}

.exportacao__logos figure {
  max-width: 240px;
  margin: 0 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .exportacao__logos figure {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    margin: 0 40px;
  }
}

@media screen and (max-width: 420px) {
  .exportacao__logos figure {
    margin: 0 24px 24px 24px;
    width: 100px;
  }
}

.noticias {
  background: #3b3b3b;
  padding: 104px 0 136px 0;
}

.noticias .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 1440px) {
  .noticias .container {
    max-width: 1380px;
  }
}

@media screen and (max-width: 1200px) {
  .noticias .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.noticias__title {
  margin: 0 80px 0 0;
  width: 400px;
}

@media screen and (max-width: 1200px) {
  .noticias__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 48px 0;
  }
}

@media screen and (max-width: 420px) {
  .noticias__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.noticias__title h2 {
  color: #ffffff;
  color: #6a6a6a;
  font: 700 51px/88px "Istok Web", sans-serif;
  letter-spacing: -2.6px;
  margin: 0 0 40px 0;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .noticias__title h2 {
    margin: 0;
  }
}

.noticias__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .noticias__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 420px) {
  .noticias__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.noticias__container__noticia {
  overflow: hidden;
  position: relative;
  max-width: 336px;
}

@media screen and (max-width: 1200px) {
  .noticias__container__noticia {
    max-width: 50%;
  }
}

@media screen and (max-width: 420px) {
  .noticias__container__noticia {
    max-width: 100%;
  }
}

.noticias__container__noticia::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  width: 100%;
  height: 400px;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  z-index: 9;
}

@media screen and (max-width: 1200px) {
  .noticias__container__noticia::before {
    display: none;
  }
}

.noticias__container__noticia:hover::before {
  -webkit-transform: translateY(-52%);
  -ms-transform: translateY(-52%);
  transform: translateY(-52%);
  background: rgba(0, 0, 0, 0.3);
}

.noticias__container__noticia:hover figure img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.noticias__container__noticia:hover .button {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.noticias__container__noticia figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  height: 380px;
}

@media screen and (max-width: 1200px) {
  .noticias__container__noticia figure {
    height: auto;
  }
}

.noticias__container__noticia figure img {
  height: auto;
  width: 100%;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.noticias__container__noticia__texto {
  background: #454545;
  padding: 32px 32px 0 32px;
  height: 220px;
}

@media screen and (max-width: 1200px) {
  .noticias__container__noticia__texto {
    height: auto;
    padding: 32px;
  }
}

@media screen and (max-width: 420px) {
  .noticias__container__noticia__texto {
    padding: 32px 24px;
  }
}

.noticias__container__noticia__texto h4 {
  color: #ffffff;
  font: 400 14px/22px "Montserrat", sans-serif;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  position: relative;
  z-index: 99;
}

.noticias__container__noticia__texto .button {
  -webkit-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1200px) {
  .noticias__container__noticia__texto .button {
    opacity: 1;
    visibility: visible;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }
}

.p-institucional {
  position: relative;
}

.p-institucional::before {
  content: "";
  position: absolute;
  left: 0;
  top: -400px;
  height: 100vh;
  width: 30px;
  background: #083c63;
}

@media screen and (max-width: 420px) {
  .p-institucional::before {
    display: none;
  }
}

.p-institucional .intro {
  margin: 220px 0 0 0;
}

@media screen and (max-width: 1200px) {
  .p-institucional .intro {
    margin: 160px 0 0 0;
  }
}

.p-institucional .intro .container {
  position: relative;
}

.p-institucional .intro__texto {
  max-width: 630px;
  width: 100%;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .p-institucional .intro__texto {
    max-width: 710px;
  }
}

@media screen and (max-width: 1200px) {
  .p-institucional .intro__texto {
    max-width: 100%;
  }
}

.p-institucional .intro__texto h6 {
  color: #0e6bb0;
  font: 500 13px/17px "Istok Web", sans-serif;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 420px) {
  .p-institucional .intro__texto h6 {
    margin: 0 0 12px 0;
  }
}

.p-institucional .intro__texto h1 {
  font: 700 56px/68px "Istok Web", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 420px) {
  .p-institucional .intro__texto h1 {
    font: 700 36px/40px "Istok Web", sans-serif;
  }
}

.p-institucional .intro__texto h1::after {
  content: "";
  background: #0e6bb0;
  width: 2px;
  height: 112px;
  position: relative;
  margin: 64px auto 0 auto;
  display: block;
}

@media screen and (max-width: 1200px) {
  .p-institucional .intro__texto h1::after {
    margin: 32px auto 240px auto;
  }
}

.p-institucional .intro__image {
  z-index: -1;
  position: fixed;
  right: 0;
  top: 125px;
  width: 780px;
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .p-institucional .intro__image {
    -webkit-transform: translateX(16%);
    -ms-transform: translateX(16%);
    transform: translateX(16%);
  }
}

@media screen and (max-width: 1200px) {
  .p-institucional .intro__image {
    position: absolute;
    bottom: 0;
    top: inherit;
    right: inherit;
    left: 58%;
    -webkit-transform: translate(-50%, 96%);
    -ms-transform: translate(-50%, 96%);
    transform: translate(-50%, 96%);
    width: 100%;
  }
}

.p-institucional .sobre-nos {
  position: relative;
}

.p-institucional .sobre-nos .container {
  padding: 120px 96px;
  background: #0e6bb0;
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .p-institucional .sobre-nos .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 96px 24px;
  }
}

.p-institucional .sobre-nos .container::before {
  content: "";
  background: #0e6bb0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  height: 100%;
  width: 1000%;
}

.p-institucional .sobre-nos .container p {
  color: #ffffff;
  max-width: 464px;
  width: 100%;
  font-size: 14px;
  margin: 0 0 0 72px;
}

@media screen and (max-width: 1200px) {
  .p-institucional .sobre-nos .container p {
    margin: 0 0 24px 0;
    max-width: 100%;
  }
}

.p-institucional .sobre-nos__title {
  font: 700 50px/60px "Istok Web", sans-serif;
  color: #083c63;
  text-transform: uppercase;
  margin: 0 80px 0 0;
}

@media screen and (max-width: 1200px) {
  .p-institucional .sobre-nos__title {
    margin: 0 0 32px 0;
    font: 700 40px/50px "Istok Web", sans-serif;
  }
}

.p-institucional .sobre-nos__scroll {
  position: absolute;
  right: 48px;
  top: 128px;
  width: 32px;
  z-index: 9;
  opacity: 0.4;
}

@media screen and (max-width: 1200px) {
  .p-institucional .sobre-nos__scroll {
    top: 32px;
    right: 24px;
  }
}

.p-institucional .infos-empresa .container {
  background: #f0f0f0;
  padding: 120px 96px;
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

@media screen and (max-width: 1200px) {
  .p-institucional .infos-empresa .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 96px 24px;
  }
}

.p-institucional .infos-empresa .container::before {
  content: "";
  background: #f0f0f0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  height: 100%;
  width: 1000%;
}

.p-institucional .infos-empresa__info h3 {
  font: 700 32px/1 "Istok Web", sans-serif;
  display: inline-block;
  text-transform: uppercase;
}

.p-institucional .infos-empresa__info h3::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #0e6bb0;
  margin: 12px 0 28px 0;
}

.p-institucional .infos-empresa__info {
  width: 45%;
  margin: 30px auto;
}

@media screen and (max-width: 1200px) {
  .p-institucional .infos-empresa__info:nth-child(2) {
    margin: 40px 0;
  }
}

@media screen and (max-width: 420px) {
  .p-institucional .infos-empresa__info {
    width: 70%;
    margin: 30px auto !important;
  }
}

.p-institucional .historia {
  background: #083c63;
  padding: 120px 0;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .p-institucional .historia {
    padding: 96px 0;
  }
}

.p-institucional .historia::before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 80%;
  width: 2px;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .p-institucional .historia::before {
    left: 72px;
    height: 93%;
  }
}

@media screen and (max-width: 420px) {
  .p-institucional .historia::before {
    left: 72px;
    height: 93.5%;
  }
}

.p-institucional .historia__title {
  color: #ffffff;
  text-align: center;
  font: 700 54px/86px "Istok Web", sans-serif;
  text-transform: uppercase;
  letter-spacing: -2.75px;
  margin: 0 0 160px 0;
}

@media screen and (max-width: 1200px) {
  .p-institucional .historia__title {
    font: 700 40px/50px "Istok Web", sans-serif;
    margin: 0 0 64px 0;
  }
}

.p-institucional .historia__timeline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-institucional .historia__timeline__item:nth-child(odd) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
  .p-institucional .historia__timeline__item:nth-child(odd) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.p-institucional
  .historia__timeline__item:nth-child(odd)
  .historia__timeline__item__ano {
  left: -64px;
  right: inherit;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

@media screen and (max-width: 1200px) {
  .p-institucional
    .historia__timeline__item:nth-child(odd)
    .historia__timeline__item__ano {
    left: 0;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }
}

.p-institucional .historia__timeline__item:not(:last-child) {
  margin: 0 0 50px 0;
}

.p-institucional .historia__timeline__item > div {
  position: relative;
  width: 40.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .p-institucional .historia__timeline__item > div {
    width: 100%;
    padding: 0 0 0 120px;
  }
}

.p-institucional .historia__timeline__item__ano {
  position: absolute;
  top: 45%;
  right: -64px;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 800px;
  padding: 14px 36px;
  background: #083c63;
  z-index: 9;
}

@media screen and (max-width: 1200px) {
  .p-institucional .historia__timeline__item__ano {
    top: 96px;
    right: inherit;
    left: 0;
    padding: 8px 28px;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }
}

@media screen and (max-width: 420px) {
  .p-institucional .historia__timeline__item__ano {
    top: 0;
  }
}

.p-institucional .historia__timeline__item__text {
  font-size: 13px;
  line-height: 21px;
  margin: 26px 0 0 0;
  color: #ffffff;
  padding: 0 32px;
}

@media screen and (max-width: 1200px) {
  .p-institucional .historia__timeline__item__text {
    margin: 16px 0 0 0;
    padding: 0;
  }
}

.p-blog .banner-page {
  background-image: url("../assets/blog/header.png");
}

.p-blog .noticias {
  background: #ffffff;
}

@media screen and (max-width: 1200px) {
  .p-blog .noticias {
    padding: 0;
  }
}

.p-blog .noticias .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 128px 88px;
}

@media screen and (max-width: 1200px) {
  .p-blog .noticias .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: inherit;
    grid-template-columns: inherit;
    gap: inherit;
  }
}

.p-blog .noticias__noticia {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .p-blog .noticias__noticia:not(:last-child) {
    margin: 0 0 40px 0;
  }
}

.p-blog .noticias__noticia:hover .noticias__noticia__leia-mais span {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.p-blog .noticias__noticia:hover .noticias__noticia__title {
  color: #083c63;
}

.p-blog .noticias__noticia__data {
  position: absolute;
  top: 0;
  right: 0;
  background: #083c63;
  color: #ffffff;
  padding: 24px 10px;
  font: 700 16px/1 "Istok Web", sans-serif;
}

.p-blog .noticias__noticia__title {
  margin: 16px 0 0 0;
  color: #0e6bb0;
  font: 700 32px/40px "Istok Web", sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.84px;
  display: block;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

.p-blog .noticias__noticia__title::after {
  content: "";
  background: #0e6bb0;
  width: 128px;
  height: 1px;
  display: block;
  margin: 8px 0 24px 0;
}

.p-blog .noticias__noticia__leia-mais {
  margin: 56px 0 0 0;
  border-bottom: 1px solid #eeeeee;
}

.p-blog .noticias__noticia__leia-mais span {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(16px);
  -ms-transform: translateY(16px);
  transform: translateY(16px);
  text-transform: uppercase;
  color: #0e6bb0;
  text-align: center;
  display: block;
  font: 700 14px/1 "Istok Web", sans-serif;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

@media screen and (max-width: 1200px) {
  .p-blog .noticias__noticia__leia-mais span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }
}

.p-blog .noticias__noticia__leia-mais span::after {
  content: "";
  background: #0e6bb0;
  width: 112px;
  height: 4px;
  display: block;
  margin: 8px auto 0 auto;
}

.p-servicos .banner-page {
  background-image: url("../assets/servicos/header.png");
  margin: 0;
  margin-top: 120px;
}

.p-servicos__servico {
  padding: 80px 0;
}

@media screen and (max-width: 1200px) {
  .p-servicos__servico {
    padding: 80px 0;
  }
}

.p-servicos__servico:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}

.p-servicos__servico .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .p-servicos__servico .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-servicos__servico__texto {
  max-width: 535px;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .p-servicos__servico__texto {
    max-width: 100%;
    margin: 0 0 48px 0;
  }
}

.p-servicos__servico__texto h2 {
  font: 700 32px/1 "Istok Web", sans-serif;
  display: inline-block;
  text-transform: uppercase;
}

.p-servicos__servico__texto h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  background: #0e6bb0;
  margin: 12px 0 48px 0;
}

.p-servicos__servico__texto p {
  margin: 0 0 32px 0;
  font-size: 15px;
}

.p-servicos__servico__carrossel {
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .p-servicos__servico__carrossel {
    max-width: 100%;
  }
}

.p-servicos__servico__carrossel .swiper-slide figure {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-servicos__servico__carrossel .swiper-slide figure img {
  height: 100%;
  width: auto;
}

@media screen and (max-width: 1200px) {
  .p-servicos__servico__carrossel .swiper-slide figure img {
    width: 100%;
    height: auto;
  }
}

.p-servicos__servico__carrossel .swiper-pagination {
  bottom: -46px;
  right: 0;
}

@media screen and (max-width: 420px) {
  .p-servicos__servico__carrossel .swiper-pagination {
    width: 100%;
    bottom: -36px;
    right: inherit;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-servicos__servico__carrossel .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  background: #d8d8d8;
  border-radius: 0;
  opacity: 1;
  margin: 0 0 0 16px;
}

.p-servicos__servico__carrossel
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background: #0e6bb0 !important;
}

.p-contato .banner-page {
  background-image: url("../assets/contato/contato.png");
  margin: 0;
  margin-top: 120px;
  height: 400px;
}

.p-contato .banner-page .banner-page__title {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.p-contato .banner-page::before {
  height: 170px;
}

@media screen and (max-width: 420px) {
  .p-contato .banner-page::before {
    height: 96px;
  }
}

.p-contato__content {
  margin-bottom: -8px;
  position: relative;
}

@media screen and (max-width: 420px) {
  .p-contato__content {
    margin-bottom: 0;
  }
}

.p-contato__content__form {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -15%);
  -ms-transform: translate(-50%, -15%);
  transform: translate(-50%, -15%);
  background: #ffffff;
  -webkit-box-shadow: 0 15px 30px #00000029;
  box-shadow: 0 15px 30px #00000029;
  max-width: 1000px;
  width: 100%;
  z-index: 5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .p-contato__content__form {
    position: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    left: inherit;
  }
}

.p-contato__content__form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 32px;
}

@media screen and (max-width: 420px) {
  .p-contato__content__form__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-contato__content__form__flex > div {
  width: 100%;
}

.p-contato__content__form form {
  padding: 96px 50px 64px 50px;
}

@media screen and (max-width: 1200px) {
  .p-contato__content__form form {
    padding: 72px 24px;
  }
}

.p-contato__content__form fieldset {
  position: relative;
}

.p-contato__content__form fieldset.textarea {
  height: 100%;
}

@media screen and (max-width: 420px) {
  .p-contato__content__form fieldset.textarea {
    margin: 24px 0 0 0;
    height: 240px;
  }
}

.p-contato__content__form fieldset:not(:last-child) {
  margin: 0 0 48px 0;
}

@media screen and (max-width: 420px) {
  .p-contato__content__form fieldset:not(:last-child) {
    margin: 0 0 24px 0;
  }
}

.p-contato__content__form fieldset label {
  font: 400 14px/24px "Montserrat", sans-serif;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #6a6a6a;
}

.p-contato__content__form fieldset label[for="mensagem"] {
  top: 20px;
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
}

.p-contato__content__form fieldset input,
.p-contato__content__form fieldset textarea {
  outline: 1px solid #c6c6c6;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  color: #6a6a6a;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  font-size: 15px;
}

.p-contato__content__form fieldset input:focus,
.p-contato__content__form fieldset textarea:focus {
  outline: 1px solid #0e6bb0;
}

.p-contato__content__form fieldset input:focus ~ label,
.p-contato__content__form fieldset input:valid ~ label,
.p-contato__content__form fieldset textarea:focus ~ label,
.p-contato__content__form fieldset textarea:valid ~ label {
  top: -8px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.p-contato__content__form fieldset textarea {
  height: 100%;
}

.p-contato__content__form button {
  cursor: pointer;
  margin: 56px auto 0 auto;
  display: block;
}

.p-contato__content__form__footer {
  background: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 48px;
}

@media screen and (max-width: 1200px) {
  .p-contato__content__form__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 24px 20px 24px;
  }
}

.p-contato__content__form__footer > div {
  width: 100%;
}

.p-contato__content__form__footer p {
  color: #083c63;
  font-size: 14px;
}

@media screen and (max-width: 1200px) {
  .p-contato__content__form__footer p {
    margin: 0 0 20px 0;
  }
}

.p-contato__content__mapa {
  height: 1100px;
  overflow-y: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .p-contato__content__mapa {
    height: 300px;
    overflow: inherit;
  }
  .p-contato__content__mapa iframe {
    height: 100%;
  }
}

.footer.contato {
  z-index: 9;
  position: relative;
}

.p-produtos .banner-page {
  background-image: url("../assets/blog/header.png");
  margin: 0;
  margin-top: 120px;
}

.p-produtos__categorias {
  background: #f2f2f2;
  padding: 24px 0;
}

.p-produtos__categorias.active {
  position: fixed;
  left: 0;
  top: 114px;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .p-produtos__categorias.active {
    top: 88px;
  }
}

@media screen and (max-width: 420px) {
  .p-produtos__categorias.active {
    top: 80px;
  }
}

.p-produtos__categorias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-produtos__categorias .p-produtos__slider-btn {
  opacity: 0.8;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  background: none;
}

.p-produtos__categorias .p-produtos__slider-btn:hover {
  opacity: 1;
  cursor: pointer;
}

.p-produtos__categorias .p-produtos__slider-btn.p-produtos__slider-btn--next {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-right: 10px;
  margin-left: 10px;
}

.p-produtos__categorias .p-produtos__slider-btn.p-produtos__slider-btn--prev {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 10px;
  margin-right: 10px;
}

.p-produtos__categorias .container {
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 90%;
  scroll-behavior: smooth;
}

.p-produtos__categorias .container > div {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-produtos__categorias__link {
  color: #0e6bb0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  margin: 5px 4px;
  width: auto;
  padding: 15px 12px;
}

.p-produtos__categorias__link:hover,
.p-produtos__categorias__link.active {
  width: auto;
  padding-left: 12px;
  padding-right: 12px;
  background: #0e6bb0;
  color: white;
}

.p-produtos__secao {
  padding: 80px 0;
  border-bottom: 1px solid #f7f7f7;
}

@media screen and (max-width: 1200px) {
  .p-produtos__secao {
    padding: 80px 0;
  }
}

.p-produtos__secao header {
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .p-produtos__secao header {
    padding: 0 24px;
  }
}

.p-produtos__secao header h2 {
  font: 700 36px/1.2 "Istok Web", sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

@media screen and (max-width: 1200px) {
  .p-produtos__secao header h2 {
    font-size: 28px;
  }
}

.p-produtos__secao header h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 128px;
  background: #0e6bb0;
  margin: 18px auto 30px auto;
}

.p-produtos__secao .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3%;
  max-width: 1440px;
}

@media screen and (max-width: 1200px) {
  .p-produtos__secao .container {
    gap: 0;
  }
}

.p-produtos__secao__produto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30%;
}

@media screen and (max-width: 1200px) {
  .p-produtos__secao__produto {
    width: 49%;
    margin: 0 0 40px 0;
  }
}

.p-produtos__categorias__link--mobile {
  display: none;
}

@media screen and (max-width: 420px) {
  .p-produtos__secao__produto {
    width: 100%;
  }

  .p-produtos__categorias__link--mobile {
    display: block;
  }

  .p-produtos__categorias .container {
    max-height: 48px;
    -webkit-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    transition: all 800ms ease;
    padding: 0 !important;
    max-width: 95%;
    overflow: scroll;
  }

  .p-produtos__categorias__link:hover {
    padding: 10px 0;
    width: 100%;
  }

  .p-produtos__categorias .container.open {
    max-height: 800px;
  }

  .p-produtos__categorias__link {
    width: auto;
    padding: 10px;
  }

  .p-produtos__categorias .p-produtos__slider-btn {
    display: none !important;
  }
}

.p-produtos__secao__produto figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 320px;
  margin: 0 0 10px 0;
  overflow: hidden;
}

@media screen and (max-width: 420px) {
  .p-produtos__secao__produto figure {
    height: auto;
  }
}

.p-produtos__secao__produto figure img {
  width: 90%;
  height: auto;
}

.p-produtos__secao__produto .button {
  font-size: 13px;
  text-align: center;
  min-height: 75px;
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: center;
}

.p-produto__infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
}

@media screen and (max-width: 420px) {
  .p-produto__infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}

.p-produto__infos__image {
  height: calc(100% - 70px);
  width: 70%;
  padding: 120px 0 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-produto__infos__image .bullets {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.p-produto__infos__image .bullet {
  background: #6a6a6a;
  width: 10px;
  height: 10px;
  transition: all 200ms ease;
  margin: 0 10px;
  border-radius: 50%;
  position: relative;
  z-index: 999;
}

.p-produto__infos__image .bullet.active {
  background: #083c63 !important;
}

.p-produto__infos__image .bullet:hover {
  background: grey;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__image {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .p-produto__infos__image {
    padding: 96px 0 0 0;
  }
}

.p-produto__infos__image figure {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__image figure {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p-produto__infos__image figure {
  position: relative;
}

.p-produto__infos__image figure img {
  max-width: 80%;
  width: auto;
  height: auto;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease;
  transform: scale(0.9);
}

.p-produto__infos__image figure img.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  transform: scale(1);
}

.p-produto__infos__texto {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: #f8f8f8;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}

.p-produto__infos__texto > div {
  padding: 160px 0;
}

@media screen and (max-width: 420px) {
  .p-produto__infos__texto > div {
    padding: 96px 0;
  }
}

.p-produto__infos__texto::-webkit-scrollbar {
  display: none;
}

.p-produto__infos__texto section {
  padding: 0 80px;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto section {
    padding: 0 40px;
  }
}

@media screen and (max-width: 420px) {
  .p-produto__infos__texto section {
    padding: 0 24px;
  }
}

.p-produto__infos__texto section > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-produto__infos__texto__btns {
  position: fixed;
  bottom: -104px;
  z-index: 1;
  left: 730px;
}

.p-produto__infos__texto__btns a {
  margin: 0 38px 0 0;
}

.p-produto__infos__texto__btns .button--blue {
  -webkit-box-shadow: 0 0 28px #0e6bb08e;
  box-shadow: 0 0 28px #0e6bb08e;
}

.p-produto__infos__texto__btns .button--outline-blue {
  background: #ffffff;
}

.p-produto__infos__texto__btns .button--outline-blue:hover {
  color: #0e6bb0;
}

.p-produto__infos__texto__header {
  padding: 0 80px;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__header {
    padding: 0 40px;
  }
}

@media screen and (max-width: 420px) {
  .p-produto__infos__texto__header {
    padding: 0 24px;
  }
}

.p-produto__infos__texto__header__title {
  margin: 150px 0 0 0;
  font: 700 48px/1.1 "Istok Web", sans-serif;
  letter-spacing: -2.6px;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__header__title {
    font-size: 36px;
  }
}

@media screen and (max-width: 420px) {
  .p-produto__infos__texto__header__title {
    margin: 64px 0 0 0;
  }
}

.p-produto__infos__texto__header .button {
  border: 2px solid #61a3d3;
  color: #61a3d3;
}

.p-produto__infos__texto__header .button:hover {
  background: #61a3d3;
  color: #ffffff;
}

.p-produto__infos__texto__carac {
  background: #083c63;
  margin: 56px 0 104px 0;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__carac {
    margin: 64px 0;
  }
}

@media screen and (max-width: 420px) {
  .p-produto__infos__texto__carac {
    margin: 32px 0;
  }
}

.p-produto__infos__texto__carac .p-produto__infos__title {
  color: #ffffff;
}

.p-produto__infos__texto__carac .p-produto__infos__title::after {
  background: #ffffff;
  width: 120%;
}

.p-produto__infos__texto__carac > div {
  padding: 120px 0 54px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__carac > div {
    padding: 50px 0 20px 0;
  }
}

.p-produto__infos__texto__carac > div > div {
  width: 40%;
  margin: 0 24px 64px 0;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__carac > div > div {
    width: 100%;
    margin: 0 0 40px 0;
  }
}

.p-produto__infos__texto__carac span {
  margin: 40px 0 0 0;
  display: block;
  color: #ffffff;
  font: 400 16px/24px "Montserrat", sans-serif;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__carac span {
    margin: 24px 0 0 0;
  }
}

.p-produto__infos__texto__aplicacoes > div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-produto__infos__texto__aplicacoes__container {
  padding: 32px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-produto__infos__texto__aplicacoes__container > div {
  width: 112px;
  margin: 0 0 40px 128px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__aplicacoes__container > div {
    width: 32%;
    margin: 0 24px 24px 24px;
  }
}

.p-produto__infos__texto__aplicacoes__container > div span {
  display: block;
  font: 400 15px/24px "Montserrat", sans-serif;
  text-align: center;
}

.p-produto__infos__texto__descricao {
  margin: 112px 0;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__descricao {
    margin: 64px 0;
  }
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__descricao > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-produto__infos__texto__descricao p {
  padding: 28px 0 0 0;
}

.p-produto__infos__texto__tabela {
  margin: 0 0 112px 0;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__tabela {
    margin: 0 0 64px 0;
  }
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__tabela > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-produto__infos__texto__tabela .table {
  width: 100%;
  padding: 28px 0 0 0;
}

.p-produto__infos__texto__tabela .table table {
  width: 100%;
}

.p-produto__infos__texto__tabela .table table thead th {
  padding: 15px;
  background: #0e6bb0;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__tabela .table table thead th {
    padding: 12px 6px;
  }
}

.p-produto__infos__texto__tabela .table table thead th span {
  color: #ffffff;
  font: 300 14px/24px "Montserrat", sans-serif;
  display: block;
}

.p-produto__infos__texto__tabela .table table tbody tr:nth-child(odd) td {
  background: #dbdbdb;
}

.p-produto__infos__texto__tabela .table table tbody tr:nth-child(even) td {
  background: #ededed;
}

.p-produto__infos__texto__tabela .table table tbody tr td {
  padding: 16px;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__tabela .table table tbody tr td {
    padding: 12px 6px;
  }
}

.p-produto__infos__texto__tabela .table table tbody tr td span {
  text-align: center;
  display: block;
  font: 300 15px/24px "Montserrat", sans-serif;
  color: #6a6a6a;
}

@media screen and (max-width: 1200px) {
  .p-produto__infos__texto__video > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-produto__infos__texto__video a {
  padding: 28px 0;
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  height: 480px;
  width: 100%;
}

.p-produto__infos__texto__video a img {
  width: auto;
  height: 100%;
}

.p-produto__infos__texto__video a .play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-produto__infos__title {
  color: #0e6bb0;
  font: 400 13px/17px "Istok Web", sans-serif;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 40px 0 0;
}

.p-produto__infos__title::after {
  content: "";
  display: block;
  height: 2px;
  background: #0e6bb0;
  width: 104px;
  margin: 10px 0 0 0;
}

.p-produto .conheca-tambem {
  padding: 180px 0;
  position: relative;
  z-index: 99;
  background: #ffffff;
}

@media screen and (max-width: 1200px) {
  .p-produto .conheca-tambem {
    padding: 80px 0;
  }
}

.p-produto .conheca-tambem header {
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .p-produto .conheca-tambem header {
    padding: 0 24px;
  }
}

.p-produto .conheca-tambem header h2 {
  font: 700 24px/1.2 "Istok Web", sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

@media screen and (max-width: 1200px) {
  .p-produto .conheca-tambem header h2 {
    font-size: 28px;
  }
}

.p-produto .conheca-tambem header h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 128px;
  background: #0e6bb0;
  margin: 14px auto 86px auto;
}

.p-produto .conheca-tambem .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 96px 0;
}

@media screen and (max-width: 1200px) {
  .p-produto .conheca-tambem .container {
    gap: 0;
  }
}

.p-produto .conheca-tambem__produto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 320px;
  margin: 30px;
}

@media screen and (max-width: 1200px) {
  .p-produto .conheca-tambem__produto {
    width: 49%;
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 420px) {
  .p-produto .conheca-tambem__produto {
    width: 100%;
  }
}

.p-produto .conheca-tambem__produto figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 320px;
  margin: 0 0 32px 0;
  overflow: hidden;
}

@media screen and (max-width: 420px) {
  .p-produto .conheca-tambem__produto figure {
    height: auto;
  }
}

.p-produto .conheca-tambem__produto figure img {
  width: 90%;
  height: auto;
}

.p-produto .conheca-tambem__produto .button {
  font-size: 13px;
  text-align: center;
}

.p-blog-artigo .banner-page {
  background-image: url("../assets/blog/artigo.png");
}

.p-blog-artigo .banner-page::before {
  display: none;
}

.p-blog-artigo__artigo {
  border-bottom: 1px solid #f2f2f2;
  padding: 0 0 168px 0;
}

@media screen and (max-width: 1200px) {
  .p-blog-artigo__artigo {
    padding: 0 0 80px 0;
  }
}

.p-blog-artigo__artigo .container {
  max-width: 810px;
  width: 100%;
}

.p-blog-artigo__artigo__tag {
  color: #0e6bb0;
  font: 400 13px/17px "Istok Web", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 18px 0;
}

.p-blog-artigo__artigo__title {
  font: 700 67px/79px "Istok Web", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .p-blog-artigo__artigo__title {
    font: 700 32px/42px "Istok Web", sans-serif;
  }
}

.p-blog-artigo__artigo__title::after {
  content: "";
  background: #0e6bb0;
  width: 2px;
  height: 128px;
  margin: 40px auto;
  display: block;
}

.p-blog-artigo__artigo__paragraph:not(:last-child) {
  margin: 0 0 40px 0;
}

.p-blog-artigo .leia-tambem {
  padding: 168px 0 200px 0;
}

@media screen and (max-width: 1200px) {
  .p-blog-artigo .leia-tambem {
    padding: 80px 0;
  }
}

.p-blog-artigo .leia-tambem header {
  text-align: center;
}

.p-blog-artigo .leia-tambem header h2 {
  font: 700 36px/1.2 "Istok Web", sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: -1.8px;
}

@media screen and (max-width: 1200px) {
  .p-blog-artigo .leia-tambem header h2 {
    font-size: 28px;
  }
}

.p-blog-artigo .leia-tambem header h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 96px;
  background: #0e6bb0;
  margin: 12px auto 120px auto;
}

@media screen and (max-width: 1200px) {
  .p-blog-artigo .leia-tambem header h2::after {
    margin: 12px auto 64px auto;
  }
}

.p-blog-artigo .leia-tambem .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 128px 88px;
}

@media screen and (max-width: 1200px) {
  .p-blog-artigo .leia-tambem .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: inherit;
    grid-template-columns: inherit;
    gap: inherit;
  }
}

@media screen and (max-width: 1200px) {
  .p-blog-artigo .leia-tambem .noticias__noticia:not(:last-child) {
    margin: 0 0 40px 0;
  }
}

/* RESETS */
* {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Istok Web", sans-serif;
  color: #6a6a6a;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.o-hidden,
body.o-hidden {
  overflow: hidden;
}

img {
  width: 100%;
}

p {
  font: 400 16px/24px "Montserrat", sans-serif;
}

strong {
  font-weight: 700;
}

::-moz-selection {
  background: #0e6bb0;
  color: #ffffff;
}

::selection {
  background: #0e6bb0;
  color: #ffffff;
}

/* RESETS */
/* GLOBAIS */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 24px;
  }
}

@-webkit-keyframes fade {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes fadePreview {
  from {
    -webkit-transform: translate(64%, -50%);
    transform: translate(64%, -50%);
    opacity: 0;
    visibility: hidden;
  }
  to {
    -webkit-transform: translate(25%, -50%);
    transform: translate(25%, -50%);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadePreview {
  from {
    -webkit-transform: translate(64%, -50%);
    transform: translate(64%, -50%);
    opacity: 0;
    visibility: hidden;
  }
  to {
    -webkit-transform: translate(25%, -50%);
    transform: translate(25%, -50%);
    opacity: 1;
    visibility: visible;
  }
}

.bottom-scroll {
  position: absolute;
  bottom: 64px;
  right: 96px;
}

@media screen and (max-width: 1200px) {
  .bottom-scroll {
    bottom: 24px;
    right: 24px;
  }
}

.whatsapp-floating {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}

.whatsapp-floating .fab {
  color: white !important;
  font-size: 24px;
}

.whatsapp-floating span {
  color: white;
  font-size: 14px;
  background: #25d366;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 30px;
  display: none;
}

.dolar-value {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: white;
  margin-bottom: 24px;
  position: relative;
}

.dolar-value::after {
  content: "";
  width: 1000%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  position: fixed;
  z-index: 9;
  right: 112px;
  bottom: 24px;
}

#whats {
  background-color: #35c369;
  border-radius: 50%;
  box-shadow: 0 5px 20px -5px rgb(0 0 0 / 50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

#whats i {
  color: #fff;
  font-size: 34px;
  left: -1px;
  position: relative;
}

.btn-whatsapp.active #whats,
.btn-whatsapp:hover #whats {
  transform: translateY(-10px);
}

.box-whatsapp {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #81818186;
}

.box-whatsapp.active{
  display: flex !important;
}


.box-whatsapp .box-opcoes {
  width: 35%;
  position: relative;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px -5px rgb(0 0 0 / 50%);
}

.box-whatsapp .box-opcoes .close_form_whats{
  width: 32px;
  height: 32px;
  
  position: absolute;
  top: -12px;
  right: -14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #083c63;
  border-radius: 50px;
}

.box-whatsapp .box-opcoes .close_form_whats i{
  font-size: 18px;
  color: #ffffff;
}

.box-whatsapp .box-opcoes .form_whats {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box-whatsapp .box-opcoes input {
  display: block;
  width: 75%;
  background: #ffffff;
  border-radius: 4px;
  color: #919191;
  border: 1px solid #919191;
  padding: 8px 12px;
  margin: 8px 0;
  transition: 0.2s;
}

.box-whatsapp .box-opcoes button {
  display: block;
  width: 75%;
  background: #0e6bb0;
  border-radius: 4px;
  color: #ffffff;
  padding: 8px 12px;
  transition: 0.2s;
  cursor: pointer;
}
.box-whatsapp .box-opcoes button:hover {
  background: #1c7fca;
}

.box-whatsapp .box-opcoes a:last-child {
  margin-top: 12px;
}

.box-whatsapp .box-opcoes a:hover {
  background: #00ce5b;
  color: #fff;
}

