/* MIXINS RESPONSIVO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-margin-top: 120px;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Inter", sans-serif;
}

ol, ul {
  list-style: none;
}

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

section {
  margin: 154px 0 0 0;
}

main::before {
  content: "";
  display: block;
  height: 100px;
}

input, textarea, select {
  outline: 0;
  border: 2px solid rgba(33, 37, 41, 0.3);
  padding: 0 12px;
  height: 48px;
  border-radius: 8px;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(0, 0, 132, 0.6);
}

select {
  border-width: 1.5px;
}

textarea {
  height: 200px;
  resize: none;
}

/* MIXINS RESPONSIVO */
@keyframes gradient-slide {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 100px;
  background: #fff;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  z-index: 99999;
}
header nav {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1640px) {
  header nav {
    width: 90vw;
  }
}
header nav #logo {
  filter: brightness(1.3);
}
header nav #logo img {
  width: 180px;
}
@media only screen and (max-width: 1440px) {
  header nav #logo img {
    width: 140px;
  }
}
@media only screen and (max-width: 1300px) {
  header nav #logo img {
    width: 130px;
  }
}
header nav #navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: "Inter", sans-serif;
  color: #212529;
  margin: 1.5rem 0 0 0;
}
@media (max-width: 992px) {
  header nav #navbar {
    display: none;
  }
}
header nav #navbar a {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  color: #23272b;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header nav #navbar a:after {
  content: "";
  display: flex;
  width: 0%;
  height: 4px;
  background: #080AF4;
  transition: width 0.1s ease;
  margin: 1.5rem 0 0 0;
}
header nav #navbar .buttons {
  display: flex;
  gap: 1rem;
}
header nav #navbar .buttons .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  margin: 0 0 1.5rem 0;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  line-height: 1;
  font-weight: 500 !important;
}
header nav #navbar .buttons .btn:hover {
  transform: scale(1.02);
}
header nav #navbar .buttons .btn::after {
  display: none;
}
header nav #navbar .buttons #catalogo {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  color: #000084;
  border-color: #000084;
  margin: 0 0 auto 2rem;
}
header nav #navbar .buttons #catalogo:hover {
  transform: scale(1.02);
}
header nav #navbar .buttons #catalogo:hover {
  background: #fff;
  color: #000084;
  border-color: #000084;
}
header nav #social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 992px) {
  header nav #social {
    display: none;
  }
}
header nav #social i::before {
  font-size: 20px;
  color: #fff;
}
header nav #social .bi-youtube::before {
  font-size: 27px;
}
header nav #hamburger-btn {
  display: none;
}
@media (max-width: 992px) {
  header nav #hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }
  header nav #hamburger-btn span {
    height: 3px;
    background: #000084;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  header nav #hamburger-btn.open span {
    background: #fff;
  }
  header nav #hamburger-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 9px);
  }
  header nav #hamburger-btn.open span:nth-child(2) {
    opacity: 0;
  }
  header nav #hamburger-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
header nav #mobile-menu {
  display: none;
}
@media (max-width: 992px) {
  header nav #mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    background: rgba(33, 37, 41, 0.95);
    padding: 6rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  header nav #mobile-menu.open {
    transform: translateX(0);
  }
  header nav #mobile-menu a {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
  }
  header nav #mobile-menu .buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

body.no-scroll {
  overflow: hidden;
}

.home-carousel {
  position: relative;
  width: 100%;
  max-width: 98%;
  height: 800px;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 20px;
}
@media only screen and (max-width: 1890px) {
  .home-carousel {
    height: 700px;
  }
}
@media only screen and (max-width: 1640px) {
  .home-carousel {
    height: 600px;
  }
}
@media only screen and (max-width: 1440px) {
  .home-carousel {
    height: 550px;
  }
}
@media only screen and (max-width: 1300px) {
  .home-carousel {
    height: 500px;
  }
}
@media only screen and (max-width: 1100px) {
  .home-carousel {
    height: 420px;
  }
}
@media only screen and (max-width: 992px) {
  .home-carousel {
    height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .home-carousel {
    height: 900px;
  }
}
@media only screen and (max-width: 576px) {
  .home-carousel {
    height: 600px;
  }
}
.home-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  pointer-events: none;
  z-index: 0;
}
.home-carousel-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.home-carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.home-carousel .home-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 10px;
  transition: background 0.3s;
}
.home-carousel .home-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}
.home-carousel .home-arrow.home-left {
  left: 15px;
}
.home-carousel .home-arrow.home-right {
  right: 15px;
}

.equipe .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .equipe .container {
    width: 95vw;
  }
}
.equipe .container h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #000084;
  text-align: center;
}
@media only screen and (max-width: 576px) {
  .equipe .container h2 {
    font-size: 36px;
  }
}
.equipe .container .carousel-equipe-container {
  position: relative;
  width: 100%;
  margin: 4rem 0 0 0;
}
.equipe .container .carousel-equipe-container .carousel-equipe-arrow {
  position: absolute;
  top: -10%;
  transform: translateY(-50%);
  color: #000084;
  font-size: 32px;
  padding: 10px;
  border: none;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
  background: transparent;
}
.equipe .container .carousel-equipe-container .carousel-equipe-arrow.carousel-equipe-arrow-left {
  right: 4%;
}
.equipe .container .carousel-equipe-container .carousel-equipe-arrow.carousel-equipe-arrow-right {
  right: 0;
}
.equipe .container .carousel-equipe-container .carousel-equipe-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper {
  overflow: hidden;
  width: 100%;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items {
  margin: 2rem 0 0 0;
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  gap: 20px;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item:hover .profile-pic::before {
  background: rgba(0, 0, 132, 0.4);
  border-radius: 20px;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item:hover .profile-pic::after {
  border: 10px solid #000084;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item:hover .profile-pic img {
  border-radius: 20px;
}
@media only screen and (max-width: 1300px) {
  .equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item {
    flex: 0 0 33%;
    max-width: 33%;
  }
}
@media only screen and (max-width: 992px) {
  .equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 576px) {
  .equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .profile-pic {
  width: 150px;
  height: 150px;
  position: relative;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .profile-pic::before, .equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .profile-pic::after {
  content: "";
  position: absolute;
  transition: all ease 0.4s;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .profile-pic::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0px solid transparent;
  border-radius: 80px;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .profile-pic::after {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 10px;
  border: 0px solid transparent;
  opacity: 0.6;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .profile-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
  transition: all ease 0.4s;
  border: 0px solid rgba(0, 0, 132, 0.6);
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .text-wrapper {
  text-align: center;
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 1.5rem;
  margin: 1rem 0 0.2rem 0;
}
@media only screen and (max-width: 576px) {
  .equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .text-wrapper h3 {
    font-size: 36px;
  }
}
.equipe .container .carousel-equipe-container .carousel-equipe-wrapper .carousel-equipe-items .item .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-size: 1rem;
  color: rgba(33, 37, 41, 0.6);
}
@media (max-width: 1024px) {
  .equipe .container .carousel-equipe-container .item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .equipe .container .carousel-equipe-container .item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.accordion {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 180px 0;
}
.accordion .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .accordion .container {
    width: 95vw;
  }
}
.accordion .accordion-item {
  border-top: 1px solid rgba(33, 37, 41, 0.15);
}
.accordion .accordion-item:first-child {
  border-top: none;
}
.accordion .accordion-item:first-child .accordion-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.accordion .accordion-item .accordion-header {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  width: 100%;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  color: #252525;
  background: transparent;
  border-bottom: 4px solid #000084;
  padding: 0;
}
@media only screen and (max-width: 576px) {
  .accordion .accordion-item .accordion-header {
    font-size: 36px;
  }
}
.accordion .accordion-item .accordion-header .arrow {
  transition: transform 0.3s ease;
  color: #000084;
  font-size: 64px;
}
.accordion .accordion-item .accordion-header.active .arrow {
  transform: rotate(180deg);
}
.accordion .accordion-item .accordion-body {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion .accordion-item .accordion-body.open {
  padding: 1rem;
}
.accordion .accordion-item .accordion-body img {
  width: 100%;
  margin: 2rem 0;
}
.accordion .accordion-item .accordion-body ul {
  margin: 2rem 0 0 1.4rem;
  list-style: disc;
}
.accordion .accordion-item .accordion-body ul li {
  margin: 0.5rem 0 0 0;
}

.catalogo .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem;
  border-radius: 20px;
}
@media only screen and (max-width: 1300px) {
  .catalogo .container {
    width: 95vw;
  }
}
.catalogo .container .content {
  width: 49%;
}
@media only screen and (max-width: 992px) {
  .catalogo .container .content {
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .catalogo .container .content {
    width: 100%;
  }
}
.catalogo .container .content h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .catalogo .container .content h2 {
    font-size: 36px;
  }
}
.catalogo .container .content p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  margin: 1rem 0 1.5rem 0;
}
.catalogo .container .content .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.catalogo .container .content .btn:hover {
  transform: scale(1.02);
}
.catalogo .container .content .btn:hover {
  background: #fff;
  color: #000084;
  border-color: #000084;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 41, 0.75);
  z-index: 99999999;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .content-wrapper {
  display: flex;
  width: 1140px;
  min-height: 500px;
  background: url("../assets/images/popup-prop.png"), #000084;
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .popup .content-wrapper {
    width: 540px;
  }
}
@media only screen and (max-width: 576px) {
  .popup .content-wrapper {
    width: 90%;
  }
}
.popup .img-wrapper {
  width: 587px;
}
@media only screen and (max-width: 992px) {
  .popup .img-wrapper {
    display: none;
  }
}
.popup .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup .popup-content {
  padding: 3rem 2.5rem;
  max-width: 560px;
  position: relative;
  box-shadow: 0 8px 24px rgba(33, 37, 41, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .popup .popup-content {
    width: 100%;
  }
}
.popup .popup-content .popup-close {
  position: absolute;
  top: 2%;
  right: 3%;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #fff;
}
.popup .popup-content h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media only screen and (max-width: 576px) {
  .popup .popup-content h2 {
    font-size: 36px;
  }
}
.popup .popup-content p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}
.popup .popup-content .form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 0 0;
}
.popup .popup-content .form .campos {
  display: flex;
  gap: 1rem;
}
.popup .popup-content .form .campos .form-group, .popup .popup-content .form .campos input {
  width: 100%;
}
.popup .popup-content .form .form-group {
  display: flex;
  flex-direction: column;
}
.popup .popup-content .form .form-group label {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #000084;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
}
.popup .popup-content .form .form-group input, .popup .popup-content .form .form-group textarea {
  border: 1px solid rgba(33, 37, 41, 0.4);
  padding: 1rem 0.8rem;
  border-radius: 5px;
  font-size: 1rem;
}
.popup .popup-content .form .form-group textarea {
  height: 120px;
  resize: none;
}
.popup .popup-content .form .form-group .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  background: #42C0F5;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 20px;
  border-color: transparent;
}
.popup .popup-content .form .form-group .btn:hover {
  transform: scale(1.02);
}
.popup .popup-content .form .form-group .btn:hover {
  background: #fff;
  color: #000084;
  border-color: #000084;
}
.popup .popup-content .form .form-group .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.popup .popup-content .form .form-group #spam {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  font-size: 14px;
  display: flex;
  margin-top: 12px;
}

.popup.oculto {
  opacity: 0;
  pointer-events: none;
}

.testimonials {
  background: #fff;
  padding: 8rem 0;
}
@media only screen and (max-width: 375px) {
  .testimonials {
    padding: 6rem 0;
  }
}
.testimonials .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 3rem;
}
@media only screen and (max-width: 1300px) {
  .testimonials .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 1640px) {
  .testimonials .container {
    gap: 2rem;
  }
}
@media only screen and (max-width: 1300px) {
  .testimonials .container {
    flex-direction: column;
    align-items: center;
  }
}
.testimonials .container .text-wrapper {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 1300px) {
  .testimonials .container .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.testimonials .container .text-wrapper .title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  text-transform: none;
  color: #000084;
  font-size: 2.5rem;
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper .title {
    font-size: 2.25rem;
  }
}
.testimonials .container .text-wrapper .text {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #000084;
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper .text {
    font-size: 1.1rem;
  }
}
.testimonials .carrossel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.testimonials .carrossel .carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testimonials .carrossel .carousel-container .carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonials .carrossel .carousel-container .carousel-item {
  flex: 0 0 50%; /* 2 slides */
  padding: 0 2rem 0 0;
  font-size: 1.5rem;
  border-radius: 4px;
  text-align: center;
}
@media only screen and (max-width: 1440px) {
  .testimonials .carrossel .carousel-container .carousel-item {
    padding: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials .carrossel .carousel-container .carousel-item {
    flex: 0 0 100%; /* 1 slide */
  }
}
@media only screen and (max-width: 375px) {
  .testimonials .carrossel .carousel-container .carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.testimonials .carrossel .carousel-container .carousel-item .title {
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
  color: #000084;
}
.testimonials .carrossel .carousel-container .carousel-item .company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(33, 37, 41, 0.8);
  margin: 0.2rem 0 0 0;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 375px) {
  .testimonials .carrossel .carousel-container .carousel-item .company {
    flex-direction: column;
    gap: 0;
    margin: 1rem 0 0 0;
  }
}
.testimonials .carrossel .carousel-container .carousel-item .company span {
  font-size: 0.9rem;
}
.testimonials .carrossel .carousel-container .carousel-item .company img {
  width: 80px;
}
.testimonials .carrossel .carousel-container .carousel-item .text {
  margin: 0.6rem 0 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
}
.testimonials .carrossel .carousel-container .carousel-item .profile {
  margin: 1.5rem 0 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #212529;
  flex-direction: column;
}
.testimonials .carrossel .carousel-container .carousel-item .profile img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .carrossel .carousel-container .carousel-item .profile .text-wrapper {
  gap: 0.5rem;
}
.testimonials .carrossel .carousel-container .carousel-item .profile .text-wrapper p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 0.5;
  margin: 0.6rem 0 0 0;
  color: #000084;
  font-family: "Inter", sans-serif;
}
.testimonials .carrossel .carousel-container .carousel-item .profile .text-wrapper span {
  font-size: 0.9rem;
}
.testimonials .carrossel .carousel-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: #212529;
  padding: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  background: transparent;
}
.testimonials .carrossel .controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.testimonials .carrossel .controls button {
  border: none;
  cursor: pointer;
}
.testimonials .carrossel .controls button img {
  width: 32px;
}
.testimonials .carrossel .controls .prev, .testimonials .carrossel .controls .next {
  background: transparent;
}
.testimonials .carrossel .controls .prev {
  transform: rotate(180deg);
}
.testimonials .carrossel .controls .next {
  margin: 0.4rem 0 0 0;
}

.depoimentos2 .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 1300px) {
  .depoimentos2 .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 992px) {
  .depoimentos2 .container {
    flex-direction: column-reverse;
  }
}
.depoimentos2 .container .img-wrapper {
  position: relative;
  width: 65%;
}
@media only screen and (max-width: 992px) {
  .depoimentos2 .container .img-wrapper {
    width: 80%;
    margin: auto;
  }
}
@media only screen and (max-width: 576px) {
  .depoimentos2 .container .img-wrapper {
    width: 100%;
  }
}
.depoimentos2 .container .img-wrapper img {
  width: 100%;
}
.depoimentos2 .container .text-wrapper {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .depoimentos2 .container .text-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .depoimentos2 .container .text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.depoimentos2 .container .text-wrapper #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #252525;
}
@media only screen and (max-width: 576px) {
  .depoimentos2 .container .text-wrapper #title {
    font-size: 36px;
  }
}
.depoimentos2 .container .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #797979;
  font-weight: 500;
  font-size: 24px;
  margin: 1.5rem 0 0 0;
}
@media only screen and (max-width: 576px) {
  .depoimentos2 .container .text-wrapper p {
    font-size: 22px;
  }
}
.depoimentos2 .container .text-wrapper .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  margin: 4rem 0 0 0;
  font-size: 22px;
}
.depoimentos2 .container .text-wrapper .btn:hover {
  transform: scale(1.02);
}
@media only screen and (max-width: 768px) {
  .depoimentos2 .container .text-wrapper .btn {
    margin: 3rem 0 0 0;
  }
}

.parceiros {
  margin-left: auto;
  margin-right: auto;
  padding: 154px 0;
  background: #000084;
  width: 98%;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .parceiros {
    width: 96%;
  }
}
@media only screen and (max-width: 576px) {
  .parceiros {
    border-radius: 20px;
    padding: 64px 0;
  }
}
.parceiros .props #prop-ball1, .parceiros .props #prop-ball2, .parceiros .props #prop-ball3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: #76A7FF;
  filter: blur(140px);
  animation: floatX 5s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 99;
}
.parceiros .props #prop-ball1 {
  top: -40%;
  left: -5%;
  animation: floatBall1 12s ease-in-out infinite alternate;
}
.parceiros .props #prop-ball2 {
  bottom: -40%;
  left: -5%;
  animation: floatBall2 24s ease-in-out infinite alternate;
}
.parceiros .props #prop-ball3 {
  top: -20%;
  right: -4%;
  animation: floatBall3 12s ease-in-out infinite alternate;
}
@keyframes floatBall1 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(200%, -20%);
  }
}
@keyframes floatBall2 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(200%, 30%);
  }
}
@keyframes floatBall3 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(0%, 100%);
  }
}
.parceiros .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .parceiros .container {
    width: 95vw;
  }
}
.parceiros .container h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .parceiros .container h2 {
    font-size: 36px;
  }
}
.parceiros .container .itens {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.parceiros .container .itens .item {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 300px;
  max-width: calc((100% - 3rem) / 4);
  height: 150px;
}
@media only screen and (max-width: 992px) {
  .parceiros .container .itens .item {
    max-width: calc((100% - 3rem) / 3);
  }
}
@media only screen and (max-width: 768px) {
  .parceiros .container .itens .item {
    max-width: calc((100% - 3rem) / 2);
  }
}
@media only screen and (max-width: 576px) {
  .parceiros .container .itens .item {
    max-width: calc((100% - 3rem) / 1);
  }
}
.parceiros .container .itens .item img {
  max-width: 180px;
  width: 100%;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

footer {
  color: #fff;
  position: relative;
  background: #000084;
  background-size: cover;
}
footer .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  footer .container {
    width: 95vw;
  }
}
footer .whatsapp {
  position: fixed;
  right: 2%;
  bottom: 3%;
  filter: drop-shadow(2px 2px 16px rgba(33, 37, 41, 0.6));
  transition: all 0.2s ease-in-out;
  z-index: 9999;
}
footer .whatsapp:hover {
  transform: scale(1.1);
}
footer .whatsapp img {
  width: 54px;
}
footer .whatsapp.animate {
  animation: shake 0.5s ease-in-out;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}
footer .site-map {
  padding: 6rem 0;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  footer .site-map {
    flex-direction: column;
  }
}
@media only screen and (max-width: 576px) {
  footer .site-map {
    gap: 3rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
footer .site-map .info-tron {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  width: 310px;
}
footer .site-map .info-tron img {
  width: 140px;
  margin: 0 0 0.2rem 0;
}
footer .site-map .info-tron p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  font-weight: 200;
  font-size: 18px;
}
footer .site-map .info-tron b {
  font-weight: 700;
}
footer .site-map .pages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .site-map .pages h5 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 20px;
  margin: 0 0 0.2rem 0;
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 576px) {
  footer .site-map .pages h5 {
    font-size: 36px;
  }
}
footer .site-map .pages a {
  font-size: 18px;
  font-weight: 300;
  color: #42bff5;
}
footer .site-map .footer-produtos {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
footer .site-map .footer-produtos h5 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 20px;
  margin: 0 0 0.2rem 0;
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 576px) {
  footer .site-map .footer-produtos h5 {
    font-size: 36px;
  }
}
footer .site-map .footer-produtos .lista-produtos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .site-map .footer-produtos .lista-produtos a {
  font-size: 18px;
  text-transform: lowercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40ch;
  font-weight: 300;
  color: #42bff5;
}
footer .site-map .footer-produtos .lista-produtos a::first-letter {
  text-transform: uppercase;
}
footer .site-map .footer-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
footer .site-map .footer-cta h5 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 20px;
  margin: 0 0 0.2rem 0;
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 576px) {
  footer .site-map .footer-cta h5 {
    font-size: 36px;
  }
}
footer .site-map .footer-cta .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  justify-content: center;
}
footer .site-map .footer-cta .btn:hover {
  transform: scale(1.02);
}
@media only screen and (max-width: 768px) {
  footer .site-map .footer-cta .btn {
    width: 200px;
  }
}
footer #copy {
  background: #fff;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer #copy img {
  width: 40px;
  filter: brightness(0);
}

.social-info {
  padding-bottom: 4rem;
}
.social-info .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .social-info .container {
    flex-direction: column;
    gap: 2rem;
  }
}
.social-info .selos .img-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding: 0rem 2rem;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1411764706);
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .social-info .selos .img-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.social-info .selos .img-wrapper img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
.social-info .selos .img-wrapper img:nth-child(1) {
  width: 90px;
  height: 90px;
}
.social-info .selos .img-wrapper img:nth-child(5) {
  width: 120px;
}
.social-info .social img {
  width: 24px;
  margin-top: 12px;
  margin-right: 12px;
}
.social-info .social h5, .social-info .selos h5 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 20px;
  margin: 0 0 0.2rem 0;
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 576px) {
  .social-info .social h5, .social-info .selos h5 {
    font-size: 36px;
  }
}

.copy-tron {
  padding: 4rem 0;
  border-top: 1px solid rgba(66, 191, 245, 0.4);
  text-align: center;
}
.copy-tron p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #42bff5;
  font-size: 16px;
}

.page-home #navbar #home {
  font-weight: 700;
  color: #000080;
}
.page-home #navbar #home::after {
  width: 100%;
  margin: 1.5rem 0 0 0;
}
.page-home .produtos-destaque .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-home .produtos-destaque .container {
    width: 95vw;
  }
}
.page-home .produtos-destaque #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 3rem 0;
  color: #252525;
  font-weight: 400;
}
@media only screen and (max-width: 576px) {
  .page-home .produtos-destaque #title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 992px) {
  .page-home .produtos-destaque #title {
    text-align: center;
  }
}
.page-home .produtos-destaque #title span {
  color: #42c0f5;
  font-weight: 600;
}
.page-home .produtos-destaque .destaque-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.page-home .produtos-destaque .destaque-carousel {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 2rem;
}
.page-home .produtos-destaque .destaque-carousel-item {
  flex: 0 0 calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .page-home .produtos-destaque .destaque-carousel-item {
    flex: 0 0 calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .page-home .produtos-destaque .destaque-carousel-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-home .produtos-destaque .destaque-carousel-item:hover .img-wrapper img {
  transform: scale(1.1);
}
.page-home .produtos-destaque .destaque-carousel-item .img-wrapper {
  width: 400px;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 1440px) {
  .page-home .produtos-destaque .destaque-carousel-item .img-wrapper {
    height: 450px;
  }
}
@media only screen and (max-width: 1300px) {
  .page-home .produtos-destaque .destaque-carousel-item .img-wrapper {
    height: 400px;
  }
}
@media only screen and (max-width: 992px) {
  .page-home .produtos-destaque .destaque-carousel-item .img-wrapper {
    height: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .page-home .produtos-destaque .destaque-carousel-item .img-wrapper {
    margin: auto;
  }
}
.page-home .produtos-destaque .destaque-carousel-item .img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease-in-out;
}
@media only screen and (max-width: 1440px) {
  .page-home .produtos-destaque .destaque-carousel-item .img-wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page-home .produtos-destaque .destaque-carousel-item .destaque-carousel-text {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 1.1rem;
  margin: 1rem 0 0 0;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (max-width: 576px) {
  .page-home .produtos-destaque .destaque-carousel-item .destaque-carousel-text {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .page-home .produtos-destaque .destaque-carousel-item .destaque-carousel-text {
    width: 60%;
    margin: 1rem auto 0 auto;
  }
}
.page-home .produtos-destaque .destaque-carousel-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  background: transparent;
  color: #000084;
  border: none;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
.page-home .produtos-destaque .destaque-carousel-arrow img {
  width: 50px;
}
.page-home .produtos-destaque .destaque-left {
  left: 0rem;
  transform: rotate(180deg);
}
.page-home .produtos-destaque .destaque-right {
  right: 0rem;
}
.page-home .produtos-destaque .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  width: max-content;
  margin: 3rem auto 0 auto;
}
.page-home .produtos-destaque .btn:hover {
  transform: scale(1.02);
}
.page-home .produtos-destaque .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-home .produtos-destaque .container {
    width: 95vw;
  }
}
.page-home .produtos-destaque .container #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 3rem 0;
  color: #252525;
  font-weight: 400;
}
@media only screen and (max-width: 576px) {
  .page-home .produtos-destaque .container #title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .page-home .produtos-destaque .container #title {
    text-align: center;
  }
}
.page-home .produtos-destaque .container #title span {
  color: #42c0f5;
  font-weight: 600;
}
.page-home .produtos-destaque .container .items {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media only screen and (max-width: 1300px) {
  .page-home .produtos-destaque .container .items {
    flex-wrap: wrap;
  }
}
.page-home .produtos-destaque .container .items .item {
  background: #F2F6FA;
  box-shadow: 0px 2px 20px 5px rgba(33, 37, 41, 0.2);
  border-radius: 35px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 296px;
  min-width: 296px;
}
@media only screen and (max-width: 576px) {
  .page-home .produtos-destaque .container .items .item {
    margin: auto;
  }
}
.page-home .produtos-destaque .container .items .item a {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.page-home .produtos-destaque .container .items .item a .img-wrapper {
  height: 193px;
  text-align: center;
}
.page-home .produtos-destaque .container .items .item a .img-wrapper img {
  width: auto;
  height: 100%;
}
.page-home .produtos-destaque .container .items .item a .text-wrapper {
  margin: 2rem 0 0 0;
  flex: 1;
}
.page-home .produtos-destaque .container .items .item a .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 24px;
  color: #333;
  line-height: 1.2;
  margin: 0 0 0.1rem 0;
}
@media only screen and (max-width: 576px) {
  .page-home .produtos-destaque .container .items .item a .text-wrapper h3 {
    font-size: 36px;
  }
}
.page-home .produtos-destaque .container .items .item a .text-wrapper .categoria {
  color: #00BFFF;
  font-weight: 300;
  font-size: 17px;
}
.page-home .produtos-destaque .container .items .item a .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #595959;
  font-size: 17px;
  line-height: 1.4;
  margin: 1rem 0 0 0;
  font-weight: 300;
}
.page-home .produtos-destaque .container .items .item a .text-wrapper p strong {
  color: #000;
}
.page-home .produtos-destaque .container .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  width: 100%;
  justify-content: center;
  margin: 1rem auto 0 auto;
  font-size: 17px;
  padding: 1rem 2rem;
}
.page-home .produtos-destaque .container .btn:hover {
  transform: scale(1.02);
}
.page-home .mercados {
  background: #000084;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media only screen and (max-width: 992px) {
  .page-home .mercados {
    width: 96%;
  }
}
.page-home .mercados .props #prop-ball1, .page-home .mercados .props #prop-ball2, .page-home .mercados .props #prop-ball3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: #76A7FF;
  filter: blur(140px);
  animation: floatX 5s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 99;
  pointer-events: none;
}
.page-home .mercados .props #prop-ball1 {
  top: -40%;
  left: -5%;
  animation: floatBall1 12s ease-in-out infinite alternate;
}
.page-home .mercados .props #prop-ball2 {
  bottom: -40%;
  left: -5%;
  animation: floatBall2 24s ease-in-out infinite alternate;
}
.page-home .mercados .props #prop-ball3 {
  top: -20%;
  right: -4%;
  animation: floatBall3 12s ease-in-out infinite alternate;
}
@keyframes floatBall1 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(200%, -20%);
  }
}
@keyframes floatBall2 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(200%, 30%);
  }
}
@keyframes floatBall3 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(0%, 100%);
  }
}
.page-home .mercados .container {
  width: 95vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  .page-home .mercados .container {
    width: 90vw;
  }
}
.page-home .mercados #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 4rem 0;
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .page-home .mercados #title {
    font-size: 36px;
  }
}
.page-home .mercados .items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-home .mercados .items a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-home .mercados .items a .item {
  border-radius: 12px;
  border: 3px solid rgba(255, 255, 255, 0.2509803922);
  height: 150px;
  width: 230px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all ease 0.2s;
}
.page-home .mercados .items a .item:hover {
  border-color: #76A7FF;
}
.page-home .mercados .items a .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 50%;
  height: 3px;
  background: #00BFFF;
  transition: width 0.2s ease;
}
.page-home .mercados .items a .item img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2px;
}
.page-home .mercados .items a .item .content h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
  margin: 1.5rem 0 0 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .page-home .mercados .items a .item .content h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 576px) {
  .page-home .mercados .items a .item .content h3 {
    font-size: 16px;
  }
}
.page-home .mercados .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-color: #00BFFF;
  color: #00BFFF;
  margin: 4rem auto auto;
  text-transform: none;
  font-size: 20px;
}
.page-home .mercados .btn:hover {
  transform: scale(1.02);
}
.page-home .mercados .btn:hover {
  background: #fff;
  color: #000084;
  border-color: #000084;
}
.page-home .mercados .btn:hover {
  background: #00BFFF;
  color: #000084;
  border-color: transparent;
}
.page-home .sobre .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-home .sobre .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 1300px) {
  .page-home .sobre .container {
    flex-direction: column;
  }
}
.page-home .sobre .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-home .sobre .container .content #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #252525;
}
@media only screen and (max-width: 576px) {
  .page-home .sobre .container .content #title {
    font-size: 36px;
  }
}
.page-home .sobre .container .content p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #797979;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 1.5rem 0 0 0;
}
.page-home .sobre .container .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin: 2rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .page-home .sobre .container .grid-container {
    display: flex;
    flex-direction: column;
  }
  .page-home .sobre .container .grid-container .card--tall {
    grid-row: span 1;
  }
  .page-home .sobre .container .grid-container .metric-box {
    grid-column: span 1;
  }
}
.page-home .sobre .container .grid-container .card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.page-home .sobre .container .grid-container .card:nth-child(2), .page-home .sobre .container .grid-container .card:nth-child(3) {
  width: 417px;
  height: 348px;
}
@media only screen and (max-width: 1300px) {
  .page-home .sobre .container .grid-container .card:nth-child(2), .page-home .sobre .container .grid-container .card:nth-child(3) {
    width: auto;
    height: auto;
  }
}
@media only screen and (max-width: 992px) {
  .page-home .sobre .container .grid-container .card:nth-child(2), .page-home .sobre .container .grid-container .card:nth-child(3) {
    height: 340px;
  }
}
.page-home .sobre .container .grid-container .card:hover img {
  transform: scale(1.1) !important;
}
.page-home .sobre .container .grid-container .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: all ease 0.3s;
}
.page-home .sobre .container .grid-container .card .tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #fff;
  color: #000084;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 60%;
  font-size: 14px;
}
.page-home .sobre .container .grid-container .card .tag::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background-color: #000084;
  border-radius: 2px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-home .sobre .container .grid-container .card .tag::before {
    width: 16px;
    height: 16px;
  }
}
.page-home .sobre .container .grid-container .card--tall {
  grid-row: span 2;
  width: 416px;
  height: 566px;
}
@media only screen and (max-width: 1300px) {
  .page-home .sobre .container .grid-container .card--tall {
    width: auto;
    height: auto;
  }
}
@media only screen and (max-width: 992px) {
  .page-home .sobre .container .grid-container .card--tall {
    height: 340px;
  }
}
.page-home .sobre .container .grid-container .metric-box {
  grid-column: 2/span 2;
  background-color: #000084;
  color: #fff;
  text-align: center;
  padding: 2rem 6rem;
  border-radius: 12px;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 202px;
}
@media only screen and (max-width: 1300px) {
  .page-home .sobre .container .grid-container .metric-box {
    height: auto;
  }
}
@media only screen and (max-width: 992px) {
  .page-home .sobre .container .grid-container .metric-box {
    padding: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .page-home .sobre .container .grid-container .metric-box {
    font-size: 1.6rem;
  }
}
.page-home .sobre .container iframe {
  width: 100%;
  height: 600px;
  margin-top: 1rem;
  border-radius: 15px;
}
@media only screen and (max-width: 992px) {
  .page-home .sobre .container iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 576px) {
  .page-home .sobre .container iframe {
    height: 300px;
  }
}
.page-home .mapa .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1300px) {
  .page-home .mapa .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 992px) {
  .page-home .mapa .container {
    flex-direction: column;
  }
}
.page-home .mapa .container .text-wrapper {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .page-home .mapa .container .text-wrapper {
    width: 100%;
  }
}
.page-home .mapa .container .text-wrapper #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #252525;
}
@media only screen and (max-width: 576px) {
  .page-home .mapa .container .text-wrapper #title {
    font-size: 36px;
  }
}
.page-home .mapa .container .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #797979;
  font-weight: 500;
  font-size: 20px;
  margin: 24px 0 0 0;
}
.page-home .mapa .container .mapa-wrapper {
  width: 65%;
  position: relative;
  background: #42bff5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .page-home .mapa .container .mapa-wrapper {
    width: 100%;
  }
}
.page-home .mapa .container .mapa-wrapper #mapa {
  width: 100%;
}
.page-home .mapa .container .mapa-wrapper #brasil, .page-home .mapa .container .mapa-wrapper #italia {
  position: absolute;
  width: 3.5%;
  height: 4%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.2s;
  border-radius: 3px;
}
.page-home .mapa .container .mapa-wrapper #brasil:hover, .page-home .mapa .container .mapa-wrapper #italia:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 8px 0px rgba(33, 37, 41, 0.6);
}
.page-home .mapa .container .mapa-wrapper #brasil {
  top: 69%;
  left: 32%;
}
.page-home .mapa .container .mapa-wrapper #italia {
  top: 41%;
  left: 49.4%;
}
.page-home .novidades .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-home .novidades .container {
    width: 95vw;
  }
}
.page-home .novidades #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
}
@media only screen and (max-width: 576px) {
  .page-home .novidades #title {
    font-size: 36px;
  }
}
.page-home .novidades .novidades-lista .novidade-item:hover img {
  transform: scale(1.1);
}
.page-home .novidades .novidades-lista .novidade-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (max-width: 992px) {
  .page-home .novidades .novidades-lista .novidade-item a {
    flex-direction: column;
    gap: 1rem;
  }
}
.page-home .novidades .novidades-lista .novidade-item .text-wrapper {
  width: 45%;
}
@media only screen and (max-width: 992px) {
  .page-home .novidades .novidades-lista .novidade-item .text-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-home .novidades .novidades-lista .novidade-item .text-wrapper {
    text-align: center;
  }
}
.page-home .novidades .novidades-lista .novidade-item .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #000084;
}
@media only screen and (max-width: 576px) {
  .page-home .novidades .novidades-lista .novidade-item .text-wrapper h3 {
    font-size: 36px;
  }
}
.page-home .novidades .novidades-lista .novidade-item .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #797979;
  font-weight: 500;
  font-size: 20px;
  margin: 1.5rem 0 0 0;
}
.page-home .novidades .novidades-lista .novidade-item .img-wrapper {
  width: 786px;
  height: 465px;
  overflow: hidden;
  border-radius: 25px;
}
@media only screen and (max-width: 992px) {
  .page-home .novidades .novidades-lista .novidade-item .img-wrapper {
    width: 100%;
  }
}
.page-home .novidades .novidades-lista .novidade-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.page-home .parallax {
  padding: 0;
  width: 100%;
  height: 50vh;
  background: url("../assets/images/tron-parallax.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media only screen and (max-width: 576px) {
  .page-home .parallax {
    background-attachment: initial;
  }
}

.page-sobre #menu #navbar #sobre {
  font-weight: 700;
  color: #000080;
}
.page-sobre #menu #navbar #sobre::after {
  width: 100%;
  margin: 1.5rem 0 0 0;
}
.page-sobre main .sobre .sobre-nos {
  margin: 6rem 0;
}
.page-sobre main .sobre .sobre-nos .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-sobre main .sobre .sobre-nos .container {
    width: 95vw;
  }
}
.page-sobre main .sobre .sobre-nos .text-wrapper h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #252525;
  margin-bottom: 28px;
}
@media only screen and (max-width: 576px) {
  .page-sobre main .sobre .sobre-nos .text-wrapper h2 {
    font-size: 36px;
  }
}
.page-sobre main .sobre .sobre-nos .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-size: 20px;
  color: #797979;
}
.page-sobre main .sobre .sobre-nos .itens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 36px;
}
@media only screen and (max-width: 1300px) {
  .page-sobre main .sobre .sobre-nos .itens {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .page-sobre main .sobre .sobre-nos .itens {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.page-sobre main .sobre .sobre-nos .itens .item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 416px;
  height: 455px;
}
.page-sobre main .sobre .sobre-nos .itens .item:hover img {
  transform: scale(1.1) !important;
}
@media only screen and (max-width: 1300px) {
  .page-sobre main .sobre .sobre-nos .itens .item {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-sobre main .sobre .sobre-nos .itens .item {
    width: 80%;
  }
}
.page-sobre main .sobre .sobre-nos .itens .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: all ease 0.3s;
}
.page-sobre main .sobre .sobre-nos .itens .item .tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #fff;
  color: #000084;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 60%;
  font-size: 14px;
}
.page-sobre main .sobre .sobre-nos .itens .item .tag::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background-color: #000084;
  border-radius: 2px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .page-sobre main .sobre .sobre-nos .itens .item .tag::before {
    width: 16px;
    height: 16px;
  }
}
.page-sobre main .sobre .video-wrapper {
  margin: 180px 0;
}
.page-sobre main .sobre .video-wrapper .container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 1640px) {
  .page-sobre main .sobre .video-wrapper .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1300px) {
  .page-sobre main .sobre .video-wrapper .container {
    flex-wrap: wrap;
  }
}
.page-sobre main .sobre .video-wrapper .text-wrapper {
  width: 30%;
}
@media only screen and (max-width: 1300px) {
  .page-sobre main .sobre .video-wrapper .text-wrapper {
    width: 100%;
  }
}
.page-sobre main .sobre .video-wrapper .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #252525;
  margin-bottom: 28px;
}
@media only screen and (max-width: 576px) {
  .page-sobre main .sobre .video-wrapper .text-wrapper h3 {
    font-size: 36px;
  }
}
.page-sobre main .sobre .video-wrapper .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-size: 20px;
  color: #797979;
}
.page-sobre main .sobre .video-wrapper #video {
  width: 70%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 1300px) {
  .page-sobre main .sobre .video-wrapper #video {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .page-sobre main .sobre .video-wrapper #video {
    height: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .page-sobre main .sobre .video-wrapper #video {
    border-radius: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .page-sobre main .sobre .video-wrapper #video {
    height: 280px;
  }
}
.page-sobre main .sobre .video-wrapper .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  margin-top: 4rem;
}
.page-sobre main .sobre .video-wrapper .btn:hover {
  transform: scale(1.02);
}
@media only screen and (max-width: 1300px) {
  .page-sobre main .sobre .video-wrapper .btn {
    margin-top: 2rem;
  }
}
.page-sobre main .sobre .mercados {
  background: #000084;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media only screen and (max-width: 992px) {
  .page-sobre main .sobre .mercados {
    width: 96%;
  }
}
.page-sobre main .sobre .mercados .props #prop-ball1, .page-sobre main .sobre .mercados .props #prop-ball2, .page-sobre main .sobre .mercados .props #prop-ball3 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: #76A7FF;
  filter: blur(140px);
  animation: floatX 5s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 99;
  pointer-events: none;
}
.page-sobre main .sobre .mercados .props #prop-ball1 {
  top: -40%;
  left: -5%;
  animation: floatBall1 12s ease-in-out infinite alternate;
}
.page-sobre main .sobre .mercados .props #prop-ball2 {
  bottom: -40%;
  left: -5%;
  animation: floatBall2 24s ease-in-out infinite alternate;
}
.page-sobre main .sobre .mercados .props #prop-ball3 {
  top: -20%;
  right: -4%;
  animation: floatBall3 12s ease-in-out infinite alternate;
}
@keyframes floatBall1 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(200%, -20%);
  }
}
@keyframes floatBall2 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(200%, 30%);
  }
}
@keyframes floatBall3 {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(0%, 100%);
  }
}
.page-sobre main .sobre .mercados .container {
  width: 95vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  .page-sobre main .sobre .mercados .container {
    width: 90vw;
  }
}
.page-sobre main .sobre .mercados #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 576px) {
  .page-sobre main .sobre .mercados #title {
    font-size: 36px;
  }
}
.page-sobre main .sobre .mercados .text1 {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #E6E6E6;
  font-size: 20px;
  font-weight: 500;
  margin: 1rem 0 1.5rem 0;
  text-align: center;
}
.page-sobre main .sobre .mercados .text2 {
  margin: 2rem 0 0 0;
}
.page-sobre main .sobre .mercados .text2 span, .page-sobre main .sobre .mercados .text2 p, .page-sobre main .sobre .mercados .text2 div {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-sobre main .sobre .mercados .items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-sobre main .sobre .mercados .items .item {
  border-radius: 12px;
  border: 3px solid rgba(255, 255, 255, 0.2509803922);
  height: 150px;
  width: 230px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all ease 0.2s;
  position: relative;
  cursor: pointer;
}
.page-sobre main .sobre .mercados .items .item:hover {
  border-color: #76A7FF;
}
.page-sobre main .sobre .mercados .items .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 50%;
  height: 3px;
  background: #00BFFF;
  transition: width 0.2s ease;
}
.page-sobre main .sobre .mercados .items .item img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2px;
}
.page-sobre main .sobre .mercados .items .item .content h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
  margin: 1.5rem 0 0 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .page-sobre main .sobre .mercados .items .item .content h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 576px) {
  .page-sobre main .sobre .mercados .items .item .content h3 {
    font-size: 16px;
  }
}
.page-sobre main .sobre .mercados .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-color: #00BFFF;
  color: #00BFFF;
  margin: 4rem auto auto;
  text-transform: none;
  font-size: 20px;
}
.page-sobre main .sobre .mercados .btn:hover {
  transform: scale(1.02);
}
.page-sobre main .sobre .mercados .btn:hover {
  background: #fff;
  color: #000084;
  border-color: #000084;
}
.page-sobre main .sobre .mercados .btn:hover {
  background: #00BFFF;
  color: #000084;
  border-color: transparent;
}

.page-produtos #menu #navbar #produtos {
  color: #000084;
  font-weight: 700;
}
.page-produtos #menu #navbar #produtos::after {
  width: 100%;
}
.page-produtos .container {
  width: auto;
  margin: 0 auto;
  transition: 0.2s;
  padding: 6rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (max-width: 992px) {
  .page-produtos .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 992px) {
  .page-produtos .container {
    flex-direction: column;
  }
}
.page-produtos .container .filtros {
  width: 340px;
  min-width: 340px;
  margin-top: 0.5rem;
  padding: 0 0 0 2rem;
}
@media only screen and (max-width: 992px) {
  .page-produtos .container .filtros {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .page-produtos .container .filtros {
    flex-direction: column;
    gap: 1rem;
  }
}
.page-produtos .container .filtros .por-texto {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .page-produtos .container .filtros .por-texto {
    margin-bottom: 0;
    width: 100%;
  }
}
.page-produtos .container .filtros .por-texto img {
  position: absolute;
  left: 10px;
  top: 12px;
}
.page-produtos .container .filtros .por-texto input {
  width: 100%;
  padding-left: 36px;
}
.page-produtos .container .filtros .por-segmento {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .page-produtos .container .filtros .por-segmento {
    width: 100%;
  }
}
.page-produtos .container .filtros .por-segmento label {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.7);
  margin-bottom: 0.8rem;
}
.page-produtos .container .equipamentos {
  width: 1500px;
}
@media only screen and (max-width: 992px) {
  .page-produtos .container .equipamentos {
    width: 100%;
  }
}
.page-produtos .container .equipamentos #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 3.2rem;
  color: #212529;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (max-width: 576px) {
  .page-produtos .container .equipamentos #title {
    font-size: 36px;
  }
}
.page-produtos .container .equipamentos #title span {
  color: #42c0f5;
  font-weight: 700;
}
.page-produtos .container .equipamentos .items {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.page-produtos .container .equipamentos .items .item {
  background: #F2F6FA;
  box-shadow: 0px 2px 20px 5px rgba(33, 37, 41, 0.2);
  border-radius: 35px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 317px;
  min-width: 317px;
  max-width: 317px;
}
@media only screen and (max-width: 576px) {
  .page-produtos .container .equipamentos .items .item {
    margin: auto;
  }
}
@media only screen and (max-width: 375px) {
  .page-produtos .container .equipamentos .items .item {
    width: 95%;
    min-width: 95%;
    max-width: 95%;
  }
}
.page-produtos .container .equipamentos .items .item a {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.page-produtos .container .equipamentos .items .item a .img-wrapper {
  height: 193px;
  text-align: center;
}
.page-produtos .container .equipamentos .items .item a .img-wrapper img {
  width: auto;
  height: 100%;
}
.page-produtos .container .equipamentos .items .item a .text-wrapper {
  margin: 2rem 0 0 0;
  flex: 1;
}
.page-produtos .container .equipamentos .items .item a .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 24px;
  color: #333;
  line-height: 1.2;
  margin: 0 0 0.1rem 0;
}
@media only screen and (max-width: 576px) {
  .page-produtos .container .equipamentos .items .item a .text-wrapper h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .page-produtos .container .equipamentos .items .item a .text-wrapper h3 {
    font-size: 10vw;
  }
}
.page-produtos .container .equipamentos .items .item a .text-wrapper span {
  color: #00BFFF;
  font-weight: 300;
  font-size: 17px;
}
.page-produtos .container .equipamentos .items .item a .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #595959;
  font-size: 17px;
  line-height: 1.4;
  margin: 1rem 0 0 0;
  font-weight: 300;
}
.page-produtos .container .equipamentos .items .item a .text-wrapper p strong {
  color: #000;
}
.page-produtos .container .equipamentos .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  width: 100%;
  justify-content: center;
  margin: 1rem auto 0 auto;
  font-size: 17px;
  padding: 1rem 2rem;
}
.page-produtos .container .equipamentos .btn:hover {
  transform: scale(1.02);
}

.page-mercados #menu {
  background: #000084;
}
.page-mercados #menu #navbar #mercados::after {
  width: 100%;
}
.page-mercados main.mercados .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-mercados main.mercados .container {
    width: 95vw;
  }
}
.page-mercados main.mercados .header {
  padding: 2rem 0;
  background: #c1c1ff;
}
.page-mercados main.mercados .header h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 2rem;
}
@media only screen and (max-width: 576px) {
  .page-mercados main.mercados .header h2 {
    font-size: 36px;
  }
}
.page-mercados main.mercados .filtros {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-mercados main.mercados .filtros .filtro {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}
.page-mercados main.mercados .filtros .filtro:hover {
  transform: scale(1.02);
}
.page-mercados main.mercados .filtros .ativo {
  background: #000084;
  color: #fff;
}
.page-mercados main.mercados #mercados-lista {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .page-mercados main.mercados #mercados-lista {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .page-mercados main.mercados #mercados-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .page-mercados main.mercados #mercados-lista {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-mercados main.mercados #mercados-lista .mercado-item {
  width: 240px;
  margin: 0 auto 0 auto;
  text-align: center;
}
.page-mercados main.mercados #mercados-lista .mercado-item:hover img {
  transform: scale(1.1);
}
.page-mercados main.mercados #mercados-lista .mercado-item .img-wrapper {
  width: 240px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}
.page-mercados main.mercados #mercados-lista .mercado-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease-in-out;
}
.page-mercados main.mercados #mercados-lista .mercado-item h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 1rem;
  margin: 0.6rem 0 0 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .page-mercados main.mercados #mercados-lista .mercado-item h3 {
    font-size: 36px;
  }
}

.single-produto #menu #navbar #produtos {
  color: #000084;
  font-weight: 700;
}
.single-produto #menu #navbar #produtos::after {
  width: 100%;
}
.single-produto main.produto .header .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .single-produto main.produto .header .container {
    width: 95vw;
  }
}
.single-produto main.produto .header .container a {
  display: flex;
  align-items: center;
  justify-content: right;
}
.single-produto main.produto .produto-detalhe .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
  padding: 2rem 0 6rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 1300px) {
  .single-produto main.produto .produto-detalhe .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 992px) {
  .single-produto main.produto .produto-detalhe .container {
    display: flex;
    flex-direction: column;
  }
}
.single-produto main.produto .produto-detalhe .product-gallery {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 992px) {
  .single-produto main.produto .produto-detalhe .product-gallery {
    order: 2;
  }
}
@media only screen and (max-width: 375px) {
  .single-produto main.produto .produto-detalhe .product-gallery {
    flex-direction: column-reverse;
  }
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-thumbs {
  height: auto;
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-thumbs .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid #BFBFBF;
  border-radius: 5px;
  width: 60px;
  height: 64px !important;
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #000080;
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-top {
  width: 304px;
  height: -moz-max-content;
  height: max-content;
  border-radius: 4px;
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-top .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-top .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 4px;
}
.single-produto main.produto .produto-detalhe .product-gallery .gallery-item {
  width: 100%;
}
.single-produto main.produto .produto-detalhe .product-gallery .swiper-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 375px) {
  .single-produto main.produto .produto-detalhe .product-gallery .swiper-wrapper {
    flex-direction: row;
    gap: 1rem;
  }
}
.single-produto main.produto .produto-detalhe .product-gallery .swiper {
  margin: 0;
}
.single-produto main.produto .produto-detalhe .product-gallery .swiper-button-disabled {
  opacity: 0 !important;
}
.single-produto main.produto .produto-detalhe .product-gallery .swiper-button-next, .single-produto main.produto .produto-detalhe .product-gallery .swiper-button-prev {
  color: #000084 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  display: none;
}
.single-produto main.produto .produto-detalhe .product-gallery .swiper-button-prev {
  height: 100% !important;
  top: 3% !important;
  width: 10% !important;
  left: 0 !important;
}
.single-produto main.produto .produto-detalhe .product-gallery .swiper-button-next {
  height: 100% !important;
  top: 3% !important;
  width: 10% !important;
  right: 0 !important;
}
.single-produto main.produto .produto-detalhe .product-gallery .lg-image {
  border-radius: 4px;
}
@media only screen and (max-width: 992px) {
  .single-produto main.produto .produto-detalhe .info {
    order: 1;
  }
}
.single-produto main.produto .produto-detalhe .info .mercado {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 14px !important;
  color: #fff;
  background: #000080;
  width: -moz-max-content;
  width: max-content;
  padding: 4px 18px;
  border-radius: 4px;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .produto-detalhe .info .mercado {
    font-size: 36px;
  }
}
.single-produto main.produto .produto-detalhe .info .title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 46px;
  color: #333;
  margin-top: 8px;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .produto-detalhe .info .title {
    font-size: 36px;
  }
}
.single-produto main.produto .produto-detalhe .info .categoria {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 34px !important;
  font-weight: 300;
  color: #42c0f5;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .produto-detalhe .info .categoria {
    font-size: 36px;
  }
}
.single-produto main.produto .produto-detalhe .info .descricao {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  margin-top: 8px;
  font-size: 17px;
  color: #595959;
}
.single-produto main.produto .produto-detalhe .info .descricao strong, .single-produto main.produto .produto-detalhe .info .descricao b {
  color: #42c0f5;
}
.single-produto main.produto .produto-detalhe .info .thumb {
  width: 50px;
  height: 50px;
  border: 2px solid #000084;
  padding: 4px;
  border-radius: 4px;
  margin: 38px 0;
}
.single-produto main.produto .produto-detalhe .info .thumb img {
  width: 100%;
  height: 100%;
}
.single-produto main.produto .produto-detalhe .info .utilidades h4 {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-size: 17px;
  font-weight: 500;
}
.single-produto main.produto .produto-detalhe .info .utilidades p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-size: 17px;
  font-weight: 500;
  margin-top: 16px;
}
.single-produto main.produto .produto-detalhe .info .btn-caracteristicas {
  display: flex;
  margin-top: 38px;
  color: #42c0f5;
  font-size: 16px;
  font-weight: 500;
}
.single-produto main.produto .produto-detalhe .info .downloads {
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.single-produto main.produto .produto-detalhe .info .downloads img {
  width: 32px;
}
.single-produto main.produto .produto-detalhe .info .downloads .btn {
  font-family: "Inter", sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(33, 37, 41, 0.2);
  width: -moz-max-content;
  width: max-content;
  color: #42c0f5;
  font-weight: 500;
  transition: all ease 0.2s;
  position: relative;
}
.single-produto main.produto .produto-detalhe .vantagens {
  background: #F9F9F9;
  border: 1px solid #E0E0E0;
  border-radius: 7px;
  padding: 16px 24px;
}
@media only screen and (max-width: 992px) {
  .single-produto main.produto .produto-detalhe .vantagens {
    order: 3;
  }
}
.single-produto main.produto .produto-detalhe .vantagens h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 38px;
  color: #42c0f5;
  margin-bottom: 16px;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .produto-detalhe .vantagens h3 {
    font-size: 36px;
  }
}
.single-produto main.produto .produto-detalhe .vantagens ul {
  margin-left: 1rem;
}
.single-produto main.produto .produto-detalhe .vantagens li, .single-produto main.produto .produto-detalhe .vantagens p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-size: 15px;
  list-style: disc;
  color: #595959;
}
.single-produto main.produto .produto-detalhe .vantagens .button-wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.single-produto main.produto .produto-detalhe .vantagens .button-wrapper .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  width: 100%;
  justify-content: center;
  font-size: 18px;
  text-align: center;
}
.single-produto main.produto .produto-detalhe .vantagens .button-wrapper .btn:hover {
  transform: scale(1.02);
}
.single-produto main.produto .produto-detalhe .vantagens .button-wrapper .btn:nth-child(1) {
  background: #3483FA;
  color: #fff;
}
.single-produto main.produto .produto-detalhe .vantagens .button-wrapper .btn:nth-child(2) {
  background: #E3EDFB;
  color: #3483FA;
}
.single-produto main.produto .chamada {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 38px;
  color: #474747;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 32px;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .chamada {
    font-size: 36px;
  }
}
.single-produto main.produto .chamada strong {
  color: #42c0f5;
  font-weight: 700;
}
.single-produto main.produto #caracteristicas {
  padding-bottom: 4rem;
}
.single-produto main.produto #caracteristicas .container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .single-produto main.produto #caracteristicas .container {
    width: 90vw;
  }
}
.single-produto main.produto #caracteristicas h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 44px;
  color: #42c0f5;
  font-weight: 700;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto #caracteristicas h3 {
    font-size: 36px;
  }
}
.single-produto main.produto #caracteristicas ul {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1rem;
}
@media only screen and (max-width: 992px) {
  .single-produto main.produto #caracteristicas ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.single-produto main.produto #caracteristicas ul li {
  border-radius: 2px;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #575757;
}
.single-produto main.produto #caracteristicas ul li:nth-child(4n+1), .single-produto main.produto #caracteristicas ul li:nth-child(4n+2) {
  background: #EBEBEB;
}
@media only screen and (max-width: 992px) {
  .single-produto main.produto #caracteristicas ul li:nth-child(4n+1), .single-produto main.produto #caracteristicas ul li:nth-child(4n+2) {
    background: #fff;
  }
}
.single-produto main.produto .produtos-relacionados {
  padding-bottom: 4rem;
}
.single-produto main.produto .produtos-relacionados .container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .single-produto main.produto .produtos-relacionados .container {
    width: 90vw;
  }
}
.single-produto main.produto .produtos-relacionados .title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 32px;
  color: #474747;
  font-weight: 400;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .produtos-relacionados .title {
    font-size: 36px;
  }
}
.single-produto main.produto .produtos-relacionados .itens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 992px) {
  .single-produto main.produto .produtos-relacionados .itens {
    display: flex;
    flex-wrap: wrap;
  }
}
.single-produto main.produto .produtos-relacionados .itens .item {
  background: #F2F6FA;
  box-shadow: 0px 2px 20px 5px rgba(33, 37, 41, 0.2);
  border-radius: 35px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .produtos-relacionados .itens .item {
    margin: auto;
  }
}
.single-produto main.produto .produtos-relacionados .itens .item a {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.single-produto main.produto .produtos-relacionados .itens .item a .img-wrapper {
  height: 193px;
  text-align: center;
}
.single-produto main.produto .produtos-relacionados .itens .item a .img-wrapper img {
  width: auto;
  height: 100%;
}
.single-produto main.produto .produtos-relacionados .itens .item a .text-wrapper {
  margin: 2rem 0 0 0;
  flex: 1;
}
.single-produto main.produto .produtos-relacionados .itens .item a .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 22px;
  color: #333;
  line-height: 1.2;
}
@media only screen and (max-width: 576px) {
  .single-produto main.produto .produtos-relacionados .itens .item a .text-wrapper h3 {
    font-size: 36px;
  }
}
.single-produto main.produto .produtos-relacionados .itens .item a .text-wrapper .categoria {
  color: #00BFFF;
  font-weight: 300;
  font-size: 18px;
}
.single-produto main.produto .produtos-relacionados .itens .item a .text-wrapper .descricao {
  margin-top: 1rem;
  color: #595959;
  font-weight: 300;
  line-height: 1.4;
}
.single-produto main.produto .produtos-relacionados .itens .item a .text-wrapper .descricao strong {
  font-weight: 500;
}
.single-produto main.produto .produtos-relacionados .itens .item a .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0;
  font-size: 16px;
}
.single-produto main.produto .produtos-relacionados .itens .item a .btn:hover {
  transform: scale(1.02);
}

.page-novidades #menu #navbar #novidades {
  font-weight: 700;
  color: #000080;
}
.page-novidades #menu #navbar #novidades::after {
  width: 100%;
  margin: 1.5rem 0 0 0;
}
.page-novidades main.novidades .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-novidades main.novidades .container {
    width: 95vw;
  }
}
.page-novidades main.novidades .header {
  padding: 2rem 0;
}
.page-novidades main.novidades .header h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 42px;
  color: #212529;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.4;
}
@media only screen and (max-width: 576px) {
  .page-novidades main.novidades .header h2 {
    font-size: 36px;
  }
}
.page-novidades main.novidades .header h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #42c0f5;
}
.page-novidades main.novidades .content {
  margin: 2rem 0 6rem 0;
}
.page-novidades main.novidades .content .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-novidades main.novidades .content .container {
    width: 95vw;
  }
}
.page-novidades main.novidades .content #title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
}
@media only screen and (max-width: 576px) {
  .page-novidades main.novidades .content #title {
    font-size: 36px;
  }
}
.page-novidades main.novidades .content .novidades-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-novidades main.novidades .content .novidades-lista .novidade-item {
  width: 100%;
}
.page-novidades main.novidades .content .novidades-lista .novidade-item:nth-child(even) a {
  flex-direction: row;
}
.page-novidades main.novidades .content .novidades-lista .novidade-item:hover img {
  transform: scale(1.1);
}
.page-novidades main.novidades .content .novidades-lista .novidade-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 992px) {
  .page-novidades main.novidades .content .novidades-lista .novidade-item a {
    flex-direction: column-reverse !important;
  }
}
.page-novidades main.novidades .content .novidades-lista .novidade-item .text-wrapper {
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .page-novidades main.novidades .content .novidades-lista .novidade-item .text-wrapper {
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .page-novidades main.novidades .content .novidades-lista .novidade-item .text-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page-novidades main.novidades .content .novidades-lista .novidade-item .text-wrapper {
    text-align: center;
  }
}
.page-novidades main.novidades .content .novidades-lista .novidade-item .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #000084;
  font-size: 38px;
}
@media only screen and (max-width: 576px) {
  .page-novidades main.novidades .content .novidades-lista .novidade-item .text-wrapper h3 {
    font-size: 36px;
  }
}
.page-novidades main.novidades .content .novidades-lista .novidade-item .text-wrapper p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #797979;
  font-weight: 500;
  font-size: 20px;
  margin: 12px 0 0 0;
}
.page-novidades main.novidades .content .novidades-lista .novidade-item .img-wrapper {
  width: 50%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 992px) {
  .page-novidades main.novidades .content .novidades-lista .novidade-item .img-wrapper {
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .page-novidades main.novidades .content .novidades-lista .novidade-item .img-wrapper {
    width: 100%;
  }
}
.page-novidades main.novidades .content .novidades-lista .novidade-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
}

.single-novidade #menu #navbar #novidades {
  color: #000084;
  font-weight: 700;
}
.single-novidade #menu #navbar #novidades::after {
  width: 100%;
}
.single-novidade main.novidade .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .single-novidade main.novidade .container {
    width: 95vw;
  }
}
.single-novidade main.novidade .novidade-detalhe {
  padding: 2rem 0;
}
.single-novidade main.novidade .novidade-detalhe h1 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: 32px;
  width: 70%;
  line-height: 1.2;
}
@media only screen and (max-width: 576px) {
  .single-novidade main.novidade .novidade-detalhe h1 {
    font-size: 36px;
  }
}
.single-novidade main.novidade .novidade-detalhe .caminho {
  margin: 0.5rem 0 1.5rem 0;
}
.single-novidade main.novidade .novidade-detalhe .caminho a {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.single-novidade main.novidade .novidade-detalhe .content {
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 992px) {
  .single-novidade main.novidade .novidade-detalhe .content {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .single-novidade main.novidade .novidade-detalhe .content {
    flex-direction: column;
  }
}
.single-novidade main.novidade .novidade-detalhe .content .wrapper {
  display: flex;
  flex-direction: column;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .single-novidade main.novidade .novidade-detalhe .content .wrapper {
    width: 100%;
  }
}
.single-novidade main.novidade .novidade-detalhe .content .wrapper .img-wrapper {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(33, 37, 41, 0.15);
}
.single-novidade main.novidade .novidade-detalhe .content .wrapper .img-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-novidade main.novidade .novidade-detalhe .content .wrapper .descricao p {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #000084;
  padding: 0 0 1rem 0;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
.single-novidade main.novidade .novidade-detalhe .content .aside {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .single-novidade main.novidade .novidade-detalhe .content .aside {
    width: 100%;
  }
}
.single-novidade main.novidade .novidade-detalhe .content .aside .novidades-relacionadas h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 1.4rem;
}
@media only screen and (max-width: 576px) {
  .single-novidade main.novidade .novidade-detalhe .content .aside .novidades-relacionadas h2 {
    font-size: 36px;
  }
}
.single-novidade main.novidade .novidade-detalhe .content .aside .novidades-relacionadas h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  margin: 0.5rem 0 0 0;
}
@media only screen and (max-width: 576px) {
  .single-novidade main.novidade .novidade-detalhe .content .aside .novidades-relacionadas h3 {
    font-size: 36px;
  }
}
.single-novidade main.novidade .novidade-detalhe .content .aside .social-wrapper {
  margin: 2rem 0 0 0;
}
.single-novidade main.novidade .novidade-detalhe .content .aside .social-wrapper p {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0 0 0.8rem 0;
}
@media only screen and (max-width: 576px) {
  .single-novidade main.novidade .novidade-detalhe .content .aside .social-wrapper p {
    font-size: 36px;
  }
}
.single-novidade main.novidade .novidade-detalhe .content .aside .social-wrapper .social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.single-novidade main.novidade .novidade-detalhe .content .aside .social-wrapper .social img {
  width: 34px;
  border-radius: 10px;
}
@media only screen and (max-width: 1300px) {
  .single-novidade main.novidade .novidade-detalhe .content .aside .social-wrapper .social img {
    width: 32px;
  }
}

.page-clientes #menu #navbar #clientes {
  font-weight: 700;
  color: #000080;
}
.page-clientes #menu #navbar #clientes::after {
  width: 100%;
  margin: 1.5rem 0 0 0;
}
.page-clientes main.clientes .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-clientes main.clientes .container {
    width: 95vw;
  }
}
.page-clientes main.clientes .header {
  padding: 2rem 0;
}
.page-clientes main.clientes .header h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 42px;
  color: #212529;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.4;
}
@media only screen and (max-width: 576px) {
  .page-clientes main.clientes .header h2 {
    font-size: 36px;
  }
}
.page-clientes main.clientes .header h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #42c0f5;
}
.page-clientes main.clientes .itens {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 8rem;
}
.page-clientes main.clientes .itens .item {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 300px;
  max-width: calc((100% - 3rem) / 4);
  height: 200px;
}
@media only screen and (max-width: 992px) {
  .page-clientes main.clientes .itens .item {
    max-width: calc((100% - 3rem) / 3);
  }
}
@media only screen and (max-width: 768px) {
  .page-clientes main.clientes .itens .item {
    max-width: calc((100% - 3rem) / 2);
  }
}
@media only screen and (max-width: 576px) {
  .page-clientes main.clientes .itens .item {
    max-width: calc((100% - 3rem) / 1);
  }
}
.page-clientes main.clientes .itens .item img {
  max-width: 250px;
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.page-contato main.contato .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-contato main.contato .container {
    width: 95vw;
  }
}
.page-contato main.contato .header {
  padding: 2rem 0;
}
.page-contato main.contato .header .container {
  width: 1470px;
}
.page-contato main.contato .header h2 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 42px;
  color: #212529;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.4;
}
@media only screen and (max-width: 576px) {
  .page-contato main.contato .header h2 {
    font-size: 36px;
  }
}
.page-contato main.contato .header h2::after {
  content: "";
  display: block;
  width: 145px;
  height: 4px;
  background: #42c0f5;
}
.page-contato main.contato .cards .container {
  width: 1396px;
  margin: 0 auto;
  transition: 0.2s;
  width: 1470px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6rem 2rem;
}
@media only screen and (max-width: 1640px) {
  .page-contato main.contato .cards .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 576px) {
  .page-contato main.contato .cards .container {
    justify-content: center;
  }
}
.page-contato main.contato .cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
  min-width: 220px;
}
.page-contato main.contato .cards .card .img-wrapper {
  width: 200px;
  height: 200px;
}
.page-contato main.contato .cards .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-contato main.contato .cards .card .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  color: #000;
  font-weight: 600;
  font-size: 26px;
  margin-top: 24px;
  margin-bottom: 8px;
  white-space: nowrap;
}
@media only screen and (max-width: 576px) {
  .page-contato main.contato .cards .card .text-wrapper h3 {
    font-size: 36px;
  }
}
.page-contato main.contato .cards .card .text-wrapper span {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-size: 18px;
  text-transform: uppercase;
  color: #42c0f5;
  white-space: nowrap;
}
.page-contato main.contato .cards .card .info-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-contato main.contato .cards .card .info-wrapper a {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  font-size: 20px;
}
.page-contato main.contato .cards .card .info-wrapper .email {
  border-bottom: 1px solid #000;
  line-height: 1.2;
}
.page-contato main.contato .cards .card .btn {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 500;
  transition: all ease 0.2s;
  border-radius: 10px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  background: linear-gradient(270deg, #000080, #030336, #000080);
  background-size: 300% 100%;
  background-position: 0% center;
  border: 1px solid #fff;
  animation: gradient-slide 10s ease-in-out infinite;
  margin-top: 32px;
}
.page-contato main.contato .cards .card .btn:hover {
  transform: scale(1.02);
}
.page-contato main.contato .representantes .container {
  width: 1285px;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1300px) {
  .page-contato main.contato .representantes .container {
    width: 95vw;
  }
}
.page-contato main.contato .representantes h2#title {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 42px;
  color: #212529;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.4;
}
@media only screen and (max-width: 576px) {
  .page-contato main.contato .representantes h2#title {
    font-size: 36px;
  }
}
.page-contato main.contato .representantes h2#title::after {
  content: "";
  display: block;
  width: 145px;
  height: 4px;
  background: #42c0f5;
}
.page-contato main.contato .representantes .itens {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2rem;
}
@media only screen and (max-width: 992px) {
  .page-contato main.contato .representantes .itens {
    display: flex;
    flex-wrap: wrap;
  }
}
.page-contato main.contato .representantes .itens .item .text-wrapper h3 {
  font-family: "Inter", sans-serif;
  color: #000084;
  font-size: 48px;
  line-height: 1.1;
  font-size: 34px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
@media only screen and (max-width: 576px) {
  .page-contato main.contato .representantes .itens .item .text-wrapper h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .page-contato main.contato .representantes .itens .item .text-wrapper h3 {
    font-size: 28px;
  }
}
.page-contato main.contato .representantes .itens .item .text-wrapper span {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  color: #42c0f5;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .page-contato main.contato .representantes .itens .item .text-wrapper span {
    font-size: 24px;
  }
}
.page-contato main.contato .representantes .itens .item .info-wrapper {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-contato main.contato .representantes .itens .item .info-wrapper a {
  font-family: "Inter", sans-serif;
  color: #212529;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  font-size: 22px;
}
.page-contato main.contato .mapa {
  margin: 4rem 0 0 0;
}
.page-contato main.contato .mapa iframe {
  width: 100%;
  height: 600px;
  border: none;
}/*# sourceMappingURL=main.css.map */