@charset "UTF-8";
/* Animações de Fade-In */
@keyframes fadeInLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    /* Começa menor */
    opacity: 0;
  }
  to {
    transform: scale(1);
    /* Termina no tamanho normal */
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flipIn {
  0% {
    transform: rotate3d(-1, 1, 0, -80deg);
    opacity: 0;
  }
  100% {
    transform: rotate3d(1, 1, 0, 0deg);
    opacity: 1;
  }
}
@keyframes loopScale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* Aplicando as animações nas classes de animação */
.fadeInLeft.show-animate {
  animation: fadeInLeft 1s ease-out forwards;
}

.fadeInRight.show-animate {
  animation: fadeInRight 1s ease-out forwards;
}

.fadeInTop.show-animate {
  animation: fadeInTop 1s ease-out forwards;
}

.fadeInBottom.show-animate {
  animation: fadeInBottom 1s ease-out forwards;
}

.zoomIn.show-animate {
  animation: zoomIn 1s ease-out forwards;
}

/* Ajustes gerais para tornar os elementos invisíveis até a animação */
.fade-left,
.fade-right,
.fade-top,
.fade-bottom,
.zoomIn {
  opacity: 0;
}

/* Classe que ativa a animação */
.show-animate {
  opacity: 1;
}

.bg-green {
  background: linear-gradient(30deg, #4696f1, #4886cd);
}

.bg-cinza {
  background: #f5f5f5;
}

.bg-dark1 {
  background: #0a0a0a;
}

.bg-dark2 {
  background: #000000;
}

.bg-about {
  background: linear-gradient(165deg, #0c0c0c 0%, #080808 35%, #0a0a0a 70%, #060606 100%);
  position: relative;
}
.bg-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 50%, rgba(22, 22, 28, 0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden !important;
  background: #0a0a0a;
}

body.hidden-scrolling {
  overflow: hidden;
}

section {
  overflow-x: hidden;
}

.section-padding {
  padding: 75px 0;
}

.sticky-div {
  position: sticky;
  top: 130px;
  z-index: 4;
}

.overflow-unset {
  overflow: unset !important;
}

.moreText {
  display: none;
}

.go-top-btn {
  background: #43b6dc;
  height: 55px;
  width: 55px;
  right: 15px;
  bottom: 10px;
  position: fixed;
  z-index: 10;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.4s;
  display: none;
  cursor: pointer;
}
.go-top-btn i {
  display: block;
  line-height: 52px;
  color: #fff;
}

.sticky-div {
  position: sticky !important;
  top: 130px;
  z-index: 4;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #43b6dc #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 11px;
}

*::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #43b6dc;
  border-radius: 10px;
  border: 3px solid #ffffff;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #0a0a0a;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 1rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  color: #171717;
}

a {
  color: #171717;
  text-decoration: none;
  transition: 0.4s ease;
}

p {
  color: #171717;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 22px;
}

.section-title h1,
.section-title h2 {
  font-size: 3em;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.section-title span {
  text-transform: uppercase;
  font-size: 0.9em;
  display: block;
}

.int-typography h2,
.int-typography h3,
.int-typography h4 {
  margin-bottom: 10px;
}
.int-typography ul {
  margin-bottom: 10px;
}
.int-typography ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 5px;
  font-size: 1em;
}

.divider {
  background: #43b6dc;
  -webkit-mask-image: url(../img/logo/divider.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../img/logo/divider.svg);
  mask-position: center center;
  mask-size: contain;
  mask-repeat: no-repeat;
  width: 55px;
  height: 25px;
}

.title-area2 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
}
.title-area2.white h2,
.title-area2.white h3,
.title-area2.white .title {
  color: #fff;
}
.title-area2.white p {
  color: #fff;
}
.title-area2.white span,
.title-area2.white .subtitle {
  color: #43b6dc;
}
.title-area2.white span .subtitle-tagline,
.title-area2.white .subtitle .subtitle-tagline {
  border: 1px solid #ccc;
}
.title-area2.white span .subtitle-tagline::after,
.title-area2.white .subtitle .subtitle-tagline::after {
  background: #fff;
}
.title-area2 span,
.title-area2 .subtitle {
  position: relative;
  display: block;
  max-width: fit-content;
  text-transform: uppercase;
  color: #43b6dc;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2em;
  padding: 8px 15px;
  padding-left: 20px;
  margin-bottom: 10px;
  border-radius: 2px;
}
.title-area2 span::before,
.title-area2 .subtitle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #43b6dc;
  animation: pulse-shadow 2s infinite;
  opacity: 1;
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 182, 220, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(67, 182, 220, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(67, 182, 220, 0);
  }
}
.title-area2 h2,
.title-area2 h3,
.title-area2 .title {
  color: #171717;
  font-size: 2.6rem;
  line-height: 2.8rem;
  font-weight: 800;
  text-transform: capitalize;
  margin-top: -0.25em;
}
.title-area2 h2 b,
.title-area2 h3 b,
.title-area2 .title b {
  font-weight: 900;
  color: #43b6dc;
}
.title-area2 h2 b.tam2,
.title-area2 h3 b.tam2,
.title-area2 .title b.tam2 {
  font-size: 1.8rem;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 2.4rem;
    line-height: 2.6rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .title-area2 h2,
  .title-area2 h3,
  .title-area2 .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.title-area2 p {
  font-size: 1rem;
  margin-top: 20px;
  color: #171717;
}
.title-area2 .shape {
  height: 30px;
  width: 200px;
  position: relative;
  margin-top: 10px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-area2 .shape {
    width: 200px;
  }
}
.title-area2 .shape::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  background-image: url(../img/banners/divider-shape2.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.title-area2.text-center {
  text-align: center;
}
.title-area2.text-center span,
.title-area2.text-center .subtitle {
  left: 50%;
  transform: translateX(-50%);
}
.title-area2.text-center .shape {
  margin: 0 auto;
}
.title-area2.dark h2,
.title-area2.dark h3,
.title-area2.dark .title {
  color: #fff;
}

header .top_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  height: 40px;
  overflow: hidden;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .top_menu {
    padding: 5px 60px;
  }
}
header .top_menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .top_menu {
    display: none;
  }
}
header .top_menu .container-fluid {
  position: relative;
  z-index: 2;
}
header .top_menu .container-fluid .row {
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .top_menu .container-fluid .row {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .top_menu .container-fluid .col-md-10 {
    display: none;
  }
}
header .top_menu .header-social {
  display: flex;
  gap: 6px;
  align-items: center;
}
header .top_menu .header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
header .top_menu .header-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.5s ease;
}
header .top_menu .header-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
header .top_menu .header-social a:hover::before {
  left: 100%;
}
header .top_menu .header-social a i {
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: #fff;
}
header .top_menu .contact-menu {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .top_menu .contact-menu {
    display: none;
  }
}
header .top_menu .contact-menu .dn_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(67, 182, 220, 0.2);
  position: relative;
  overflow: hidden;
}
header .top_menu .contact-menu .dn_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  transition: width 0.3s ease;
}
header .top_menu .contact-menu .dn_btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
header .top_menu .contact-menu .dn_btn:hover::before {
  width: 100%;
}
header .top_menu .contact-menu .dn_btn i {
  font-size: 14px;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .top_menu .contact-menu .dn_btn {
    font-size: 11px;
    gap: 4px;
    padding: 3px 8px;
  }
}
header .header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .header-area.sticky .header-main {
  margin-top: 6px;
}
@media (max-width: 991px) {
  header .header-area.sticky .header-main {
    margin-top: 0;
  }
}
header .header-area.sticky {
  box-shadow: rgba(67, 182, 220, 0.1) 0px 2px 10px 0px;
  border-radius: 0;
  animation: remove-top 0.8s ease-in-out;
}
@keyframes remove-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
header .header-area.sticky .nav-branding {
  color: #000;
}
header .header-area.sticky .nav-menu .menu li a {
  color: #fff;
}
header .header-area.sticky .top_menu {
  display: none;
}
header .header-area .header-main {
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
  height: 90px;
  align-items: center;
  border-radius: 9999px;
  opacity: 1;
  background: #43b6dc;
  backdrop-filter: blur(15px);
  max-width: calc(100% - 48px);
  margin: 6px 24px 0;
  box-sizing: border-box;
  overflow: visible;
}
@media (min-width: 992px) {
  header .header-area .header-main {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: -2px;
  }
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  header .header-area .header-main {
    padding: 0px 20px;
    margin: 6px 20px 0;
    max-width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main {
    padding: 0px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main {
    padding: 0 20px;
    margin: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    background: #43b6dc;
  }
}
header .header-area .header-main .logo {
  padding: 0 15px;
  width: 220px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .logo {
    width: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .header-area .header-main .logo {
    width: 190px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main .logo {
    width: 200px;
  }
}
header .header-area .header-main .logo img {
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}
header .header-area .header-main .nav-menu {
  padding: 0 15px;
  overflow: visible;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu {
    display: flex;
    align-items: center;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item {
    margin-left: 10px;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item:first-child {
  margin-left: 0;
}
header .header-area .header-main .nav-menu .menu .menu-item > a {
  display: inline-block;
  padding: 10px 0;
  font-size: 16px;
  letter-spacing: 0.1rem;
  color: #fff;
  font-weight: 600;
  transition: transform 0.25s ease, color 0.25s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a .dropdown-icon {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.65em;
    vertical-align: middle;
    opacity: 0.9;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus {
    display: none;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu .menu .menu-item > a .dropdown-icon {
    display: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus {
    display: inline-block;
    height: 10px;
    width: 10px;
    position: relative;
    margin-left: 3px;
    pointer-events: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    background: #fff;
    height: 2px;
    width: 100%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
}
header .header-area .header-main .nav-menu .menu .menu-item > a::after {
  display: none;
}
header .header-area .header-main .nav-menu .menu .menu-item > a:hover {
  color: #fff;
  transform: scale(1.08);
}
header .header-area .header-main .nav-menu .menu .menu-item > a.active-nav {
  color: #fff;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 350px;
  max-height: min(70vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
  position: absolute;
  left: 0;
  top: 100%;
  background: #0a0a0a;
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-top: 3px solid #0a0a0a;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu::-webkit-scrollbar {
  width: 6px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
  display: block;
  margin: 0 20px;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: all 0.4s ease;
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
  color: #f1f1f1;
  padding-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a:hover {
    color: #43b6dc;
  }
}
header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .has-children:hover .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header .header-area .header-main .nav-menu .menu .has-children:hover > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .contact-btn {
    margin-left: 40px;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100vh;
    top: 0;
    overflow-y: auto;
    background-color: #1e6b8a;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  header .header-area .header-main .nav-menu .menu {
    width: 100%;
  }
  header .header-area .header-main .nav-menu .menu .menu-item {
    display: block;
    margin: 0;
    width: 100%;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a .plus::before, header .header-area .header-main .nav-menu .menu .menu-item > a .plus::after {
    background-color: #ffffff;
  }
  header .header-area .header-main .nav-menu .menu .menu-item > a::after {
    display: none;
  }
  header .header-area .header-main .nav-menu .menu .menu-item:first-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  header .header-area .header-main .nav-menu .menu .menu-item.has-children.active > .sub-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}
@media only screen and (max-width: 991px) and (min-width: 1200px) and (max-width: 1440px), only screen and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu {
    height: auto;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item {
    margin-left: 0;
    width: 100%;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu .menu-item a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 25px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  header .header-area .header-main .nav-menu .menu .has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .header-area .header-main .nav-menu .menu .has-children.active > a .plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
header .header-area .header-main .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
header .header-area .header-main .open-nav-menu span {
  display: block;
  height: 4px;
  width: 40px;
  background-color: #fff;
  position: relative;
}
header .header-area .header-main .open-nav-menu span::after, header .header-area .header-main .open-nav-menu span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
header .header-area .header-main .open-nav-menu span::before {
  top: -9px;
}
header .header-area .header-main .open-nav-menu span::after {
  top: 9px;
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu span, header .header-area .header-main .open-nav-menu span::before, header .header-area .header-main .open-nav-menu span::after {
    background-color: #fff;
  }
}
@media (max-width: 991px) {
  header .header-area .header-main .open-nav-menu {
    display: flex;
  }
}
header .header-area .header-main .close-nav-menu {
  font-size: 30px;
  background-color: transparent;
  color: #43b6dc;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
}
header .header-area .header-main .close-nav-menu img {
  width: 16px;
}
@media (max-width: 991px) {
  header .header-area .header-main .close-nav-menu {
    display: flex;
    color: #fff;
  }
}
header .header-area .header-main .nav-sidebar-header {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  header .header-area .header-main .nav-sidebar-header {
    display: flex;
    position: relative;
    border-bottom: none;
  }
  header .header-area .header-main .nav-sidebar-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  header .header-area .header-main .nav-sidebar-logo {
    display: block;
    max-width: 160px;
    margin-bottom: 16px;
  }
  header .header-area .header-main .nav-sidebar-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  header .header-area .header-main .nav-sidebar-social {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  header .header-area .header-main .nav-sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    line-height: 1;
  }
  header .header-area .header-main .nav-sidebar-social a i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
}
header .header-area .header-main .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header .header-area .header-main .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  header .header-area .header-main .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
}
header .header-area .contact-btn .btn-main {
  padding: 18px 30px;
}

.padding-banner {
  padding-top: 136px;
}
@media (max-width: 991px) {
  .padding-banner {
    padding-top: 106px;
  }
}

@media (min-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 {
    top: 8px;
    left: calc(100% + 21px);
    opacity: 0;
    visibility: hidden;
    width: 250px;
    max-height: min(65vh, 380px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  header .header-area .header-main .nav-menu .menu .menu-item.has-children-2:hover .sub-menu-2 {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a {
    padding: 12px 45px;
  }
  header .header-area .header-main .nav-menu .menu .menu-item .sub-menu.sub-menu-2 .menu-item a:hover {
    padding-left: 45px;
  }
}
.footer-area {
  background: #43b6dc;
  padding: 65px 0 0;
}
.footer-area .footer-top {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption {
    margin-bottom: 70px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-area .footer-top .single-footer-caption .footer-logo {
    justify-content: center;
  }
}
.footer-area .footer-top .single-footer-caption .footer-logo img {
  object-fit: contain;
  width: 220px;
  height: auto;
  padding: 10px 0;
  border-radius: 10px;
}
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    padding-right: 0px;
  }
}
.footer-area .footer-top .single-footer-caption .footer-tittle span {
  color: #f5f5f5;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  margin-bottom: 35px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
  color: #fff;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a {
  color: #868c98;
  font-weight: 300;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a:hover {
  color: #0a0a0a;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap {
  margin-bottom: 30px;
}
.footer-area .footer-top .single-footer-caption .footer-cap span {
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  display: block;
}
.footer-area .footer-top .single-footer-caption .footer-cap p {
  color: #fff;
  font-size: 16px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  transition: 0.4s ease;
}
.footer-area .footer-top .single-footer-caption .footer-cap a:hover {
  color: #ddd;
  padding-left: 5px;
}
.footer-area .footer-top .single-footer-caption .footer-cap a i {
  margin-right: 2px;
}
.footer-area .footer-top .single-footer-caption .footer-cap .dn_btn--text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.footer-area .footer-top .single-footer-caption .footer-cap .dn_btn--text i {
  margin-right: 2px;
}
.footer-area .footer-bottom {
  padding-bottom: 20px;
  padding-top: 30px;
}
.footer-area .footer-bottom img {
  filter: brightness(10);
  width: 125px;
  height: 52px;
}
.footer-area .footer-bottom .footer-copy-right p {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
}

.social_links {
  margin: 25px 0;
}
@media (max-width: 991px) {
  .social_links {
    margin: 30px 0 40px;
  }
}
.social_links ul li {
  display: inline-block;
}
.social_links ul li a {
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-radius: 50%;
  margin-right: 7px;
  color: #fff;
  line-height: 1;
  transition: 0.4s ease;
}
.social_links ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 18px;
}
.social_links ul li a:hover {
  background: #1a1a1a;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mob-center {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mob-center {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .mob-center {
    text-align: center;
  }
}

.slider-area {
  background-image: url(../img/banners/hero-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area {
    margin-top: 90px;
  }
}
.slider-area .slider-height {
  height: 380px;
  background-size: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height {
    height: 280px;
  }
}
.slider-area .slider-height .hero-cap {
  padding-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-area .slider-height .hero-cap {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap {
    padding-top: 10px;
  }
}
.slider-area .slider-height .hero-cap h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .slider-area .slider-height .hero-cap h1 {
    font-size: 35px;
    text-align: center;
  }
}
.slider-area .slider-height .hero-cap .ajust-link {
  color: #fff;
  font-weight: 500;
}
.slider-area .slider-height .hero-cap .ajust-link:hover {
  color: #43b6dc;
}
.slider-area .slider-height .hero-cap .divider {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap .divider {
    margin: 0 auto;
  }
}
.slider-area .slider-height .hero-cap .color-w {
  color: #43b6dc;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-area .slider-height .hero-cap .color-w {
    text-align: center;
  }
}
.slider-area .hero-overly {
  position: relative;
  z-index: 1;
}
.slider-area .hero-overly::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
}

.blog-area {
  padding: 65px 0;
  overflow-y: hidden;
}
.blog-area .home-blog-single {
  transition: 0.4s ease;
}
.blog-area .home-blog-single .blog-img-cap .blog-img {
  overflow: hidden;
  position: relative;
  height: 190px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 344px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-out 0s;
  border-radius: 8px 8px 0 0;
}
.blog-area .home-blog-single .blog-img-cap ul {
  background: #f3f3f3;
}
.blog-area .home-blog-single .blog-img-cap ul li {
  background: #43b6dc;
  display: inline-block;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  color: #787878;
  padding: 20px 30px 20px 120px;
  margin-right: 50px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding: 20px 30px 20px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap ul li {
    padding-top: 20px;
    padding-left: 20px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap {
  background: #f3f3f3;
  padding: 20px 20px 20px 30px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap {
    min-height: 0px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
  color: #191d34;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
@media (max-width: 575px) {
  .blog-area .home-blog-single .blog-img-cap .blog-cap h3 {
    font-size: 19px;
  }
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn {
  position: relative;
  padding-left: 50px;
}
.blog-area .home-blog-single .blog-img-cap .blog-cap .more-btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
}
.blog-area .home-blog-single:hover {
  box-shadow: 0px 22px 57px 0px rgba(34, 41, 72, 0.05);
}
.blog-area .home-blog-single:hover .blog-img img {
  transform: scale(1.1);
}

.brands-area {
  background: #eee;
  padding: 40px 0 !important;
}
.brands-area .title {
  font-size: 2rem !important;
  line-height: 2.2rem !important;
  color: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brands-area .title {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .brands-area .title {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
    margin-bottom: 20px;
  }
}
.brands-area .desc {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
}
.brands-area .item-brand {
  width: 100%;
  height: 150px;
  border-radius: 5px;
  padding: 10px;
}
.brands-area .item-brand img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

button.btn-main {
  border: none;
}

.btn-one,
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: 0;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #43b6dc;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(67, 182, 220, 0.35);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn-one,
  .btn-main {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}
.btn-one i,
.btn-main i {
  font-size: 1.1rem;
}
.btn-one:hover,
.btn-main:hover {
  background: #3aa5c9;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(67, 182, 220, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  letter-spacing: 0.08em;
}
.btn-one:active,
.btn-main:active {
  transform: translateY(0) scale(1);
}
.btn-one.color2,
.btn-main.color2 {
  background: #43b6dc;
}
.btn-one.color2:hover,
.btn-main.color2:hover {
  background: #3aa5c9;
}
.btn-one.color3,
.btn-main.color3 {
  background: #43b6dc;
}
.btn-one.color3:hover,
.btn-main.color3:hover {
  background: #3aa5c9;
}
.btn-one.color4,
.btn-main.color4 {
  background: #bd8800;
}
.btn-one.color4:hover,
.btn-main.color4:hover {
  background: #a67a00;
}

.btn-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  border: 0;
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
  background: #43b6dc;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(67, 182, 220, 0.45);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, outline-color 0.25s ease;
}
.btn-banner span {
  font-size: inherit;
}
.btn-banner::after {
  content: "→";
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  animation: btn-banner-arrow 1.2s ease-in-out infinite;
}
.btn-banner i {
  font-size: 0.9rem;
}
.btn-banner:hover {
  background: #3aa5c9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(67, 182, 220, 0.55);
  outline-color: rgba(255, 255, 255, 0.9);
}
.btn-banner:active {
  transform: translateY(0);
}

@keyframes btn-banner-arrow {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
.btn-header-contato {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  color: #43b6dc;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-header-contato i {
  font-size: 1rem;
}
.btn-header-contato:hover {
  background: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}
.btn-header-contato:active {
  transform: translateY(0);
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.btn-two {
  position: relative;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  background-color: #43b6dc;
  color: #fff;
  border-radius: 2px;
  padding: 8px 10px;
  margin: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  box-shadow: 3px 3px 25px -5px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in;
}
.btn-two.color2 {
  background-color: #bd8800;
}
.btn-two.color2:hover {
  background-color: #f5f5f5;
}
.btn-two.color3 {
  background-color: #43b6dc;
}
.btn-two.color3:hover {
  background-color: #f5f5f5;
}
.btn-two:hover {
  background-color: #0a0a0a;
  transform: scale(1.03);
}
.btn-two:hover .icon .i1 {
  transition: transform 0.3s ease-in-out;
  transform: translate(180%, 0%);
}
.btn-two:hover .icon .i2 {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0px, 0px) rotate(0deg);
}
.btn-two span,
.btn-two .txt {
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
}
.btn-two .icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  position: relative;
  color: #43b6dc;
  background-color: #fff;
  border-radius: 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.btn-two .icon .i1,
.btn-two .icon .i2 {
  color: #43b6dc;
  font-size: 16px;
  margin: 0;
  position: absolute;
  transform: translate(0%, 0%) rotate(0deg);
}
.btn-two .icon .i2 {
  transform: translate(-200%, 0%) rotate(0deg);
}

.card-two {
  overflow: hidden;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.card-two.has-desc .card-prod-content {
  min-height: 200px;
}
.card-two.has-desc .card-prod-content h2,
.card-two.has-desc .card-prod-content h3 {
  margin-bottom: 10px;
  min-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-two.has-desc .card-prod-content h2,
  .card-two.has-desc .card-prod-content h3 {
    min-height: 45px;
  }
}
.card-two:hover {
  transform: translateY(-5px);
}
.card-two:hover .card-prod-content {
  background-image: linear-gradient(60deg, #43b6dc 0%, #43b6dc 99%);
}
.card-two:hover .card-prod-content::before {
  background-color: #fff;
  height: 70%;
}
.card-two:hover .cart-img img {
  transform: scale(1.02);
}
.card-two:hover .btn-a {
  background-color: #fff;
}
.card-two:hover .btn-a i {
  color: #0a0a0a;
}
.card-two .cart-img {
  overflow: hidden;
  width: 100%;
  height: 290px;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .cart-img {
    height: 220px;
  }
}
@media (max-width: 575px) {
  .card-two .cart-img {
    height: 250px;
  }
}
@media (max-width: 320px) {
  .card-two .cart-img {
    height: 250px;
  }
}
.card-two .cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
  background-color: #fff;
}
.card-two .cart-img img.obj-contain {
  object-fit: contain;
}
.card-two .card-prod-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(90deg, #43b6dc 0%, #43b6dc 99%);
  position: relative;
  padding: 30px 25px 30px;
  transition: 0.5s ease;
  min-height: 140px;
}
.card-two .card-prod-content::before {
  position: absolute;
  height: 60%;
  width: 6px;
  background: #0a0a0a;
  content: "";
  left: 0;
  transition: 0.3s;
}
.card-two .card-prod-content h2,
.card-two .card-prod-content h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 700;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .card-two .card-prod-content h2,
  .card-two .card-prod-content h3 {
    font-size: 16px;
  }
}
.card-two .card-prod-content p {
  font-size: 14px;
  color: #fff;
  width: 95%;
  overflow: hidden;
  text-align: left;
  hyphens: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.card-two .card-prod-content .btn-a {
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 575px) {
  .card-two .card-prod-content .btn-a {
    height: 45px;
    width: 45px;
  }
}

.testimonial-block-one {
  margin: 15px 10px;
}
.testimonial-block-one .inner-box {
  position: relative;
  display: block;
}
.testimonial-block-one .inner-box .text-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 20px;
  padding: 40px 40px 33px 40px;
  margin-bottom: 40px;
}
.testimonial-block-one .inner-box .text-box::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 24px;
  height: 16px;
  left: 68px;
  bottom: -15px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}
.testimonial-block-one .inner-box .rating {
  margin-bottom: 10px;
}
.testimonial-block-one .inner-box .rating i {
  position: relative;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #FF8A00;
}
.testimonial-block-one .inner-box .author-box {
  position: relative;
  display: block;
  padding: 14px 0px 14px 100px;
}
.testimonial-block-one .inner-box .author-box .author-thumb {
  position: absolute;
  background: #fff;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 1;
}
.testimonial-block-one .inner-box .author-box .author-thumb::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0a0a0a;
  z-index: -1;
}
.testimonial-block-one .inner-box .author-box .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-block-one .inner-box .author-box span {
  color: #fff;
}
.testimonial-block-one .inner-box .author-box p {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.testimonial-block-one .inner-box .author-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.service-card {
  position: relative;
  width: 100%;
  height: 480px;
  margin: 15px 0;
  overflow: hidden;
  border-radius: 10px;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #0a0a0a 30%, transparent 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: 0.5s;
}
.service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.service-card .content {
  position: absolute;
  z-index: 4;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 30px 20px;
  transition: 0.3s;
}
.service-card .content .title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}
.service-card .content .title .icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.service-card .content .title .icon i {
  font-size: 40px;
  color: #fff;
}
.service-card .content .title .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  filter: brightness(0) invert(1);
}
.service-card .content .title h2,
.service-card .content .title h3,
.service-card .content .title h4 {
  color: #fff;
  font-size: 28px;
  transition: 0.3s;
}
.service-card .content .hover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  overflow: hidden;
}
.service-card .content .hover-text h2,
.service-card .content .hover-text h3,
.service-card .content .hover-text h4 {
  font-size: 28px;
  transition: 0.3s;
  margin-bottom: 15px;
  color: #fff;
}
.service-card .content .hover-text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}
.service-card .content .btn-link {
  display: flex;
  color: #FFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.service-card .content .btn-link i {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #FFF;
}
.service-card:hover::before {
  height: 100%;
  background: linear-gradient(0deg, #bd8800 30%, transparent 100%);
}
.service-card:hover img {
  filter: saturate(0);
}
.service-card:hover .content {
  bottom: 0;
}
.service-card:hover .content .title {
  display: none;
}
.service-card:hover .content .hover-text {
  position: relative;
  bottom: 0;
  left: 0;
  transform: translateY(0%);
}

.card-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  transition: 0.3s ease;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.card-step:hover {
  transform: translateY(-10px);
}
.card-step:hover .step-img::before {
  animation-play-state: paused;
}
.card-step:hover .step-img img {
  transform: scale(1.05);
}
.card-step .step-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 30px;
  transition: 0.3s ease;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-step .step-img {
    width: 180px;
    height: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-step .step-img {
    width: 250px;
    height: 250px;
  }
}
.card-step .step-img .step-img-electric-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #43b6dc;
  filter: url(#electric-border-displace);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 20px rgba(67, 182, 220, 0.4), inset 0 0 20px rgba(67, 182, 220, 0.08);
}
.card-step .step-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
.card-step .step-number {
  position: absolute;
  bottom: 5px;
  left: 5px;
  min-width: 60px;
  min-height: 60px;
  background: #43b6dc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  border-radius: 50%;
  padding: 5px;
  color: #43b6dc;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-step .step-number {
    font-size: 20px;
    min-width: 50px;
    min-height: 50px;
  }
}
.card-step .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-step .content .step-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}
.card-step .content .step-text {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin-bottom: 0;
  padding-right: 15px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .card-step .content .step-text {
    font-size: 20px;
    text-align: center;
  }
}
.card-step .content .btn-link {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 99px;
  text-decoration: none;
  color: #43b6dc;
  border: 1px solid #43b6dc;
}

.cta-area {
  background-image: url(../img/banners/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1000px rgba(21, 22, 22, 0.35);
  padding: 100px 0;
}
.cta-area .cta-caption h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-caption h2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area .cta-caption h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.cta-area .cta-caption p {
  color: #fff;
  font-size: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area .cta-caption p {
    text-align: center;
  }
}
.cta-area .btn-main {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #43b6dc;
}
.cta-area .btn-main::after {
  background: #43b6dc;
  border-radius: 50%;
}
.cta-area .btn-main i {
  font-size: 2.6rem;
}

@media (min-width: 992px) {
  .menu-sidebar {
    display: flex;
    justify-content: end;
  }
}

.accordion {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .accordion {
    width: 95%;
  }
}
.accordion .accordion-item {
  border: none;
}
.accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #43b6dc;
}
.accordion .accordion-item button[aria-expanded=true] .icon {
  color: #43b6dc;
}
@media (max-width: 991px) {
  .accordion {
    padding: 0 20px;
  }
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #161616;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: 0.4s ease;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #43b6dc;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #43b6dc;
  border: 1px solid #43b6dc;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-weight: 600;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  color: #43b6dc;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #0a0a0a;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 100%;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
@media (max-width: 991px) {
  .accordion button[aria-expanded=true] + .accordion-content {
    overflow-y: scroll;
  }
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p,
.accordion .accordion-content li {
  font-size: 0.9rem;
  font-weight: 300;
  margin: 2em 0;
}
.accordion .accordion-content p a:hover,
.accordion .accordion-content li a:hover {
  color: #43b6dc;
  padding-left: 5px;
}
@media (max-width: 991px) {
  .accordion .accordion-content p {
    font-weight: 600;
    color: #43b6dc;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
  }
}

.home-form {
  border-top: 3px solid color-mix(in srgb, #0a0a0a, #fff 65%);
  padding: 65px 0;
}
.home-form form,
.home-form input,
.home-form label,
.home-form p,
.home-form textarea {
  color: #000 !important;
}
.home-form .contact-card .fa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #43b6dc;
  padding: 10px;
  width: 55px;
  height: 55px;
  text-align: center;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}
.home-form .contact-card .fa-contact i {
  font-size: 25px;
  color: #fff;
}
.home-form .contact-card .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-form .contact-card .content p {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5px 0;
}
.home-form .contact-card .content p a {
  color: #fff;
}
.home-form .contact-card .content p a:hover {
  color: #43b6dc;
}

.form-contact label {
  font-size: 14px;
}
.form-contact .form-group {
  margin-bottom: 15px;
}
.form-contact .form-group.text-center .d-flex,
.form-contact .form-group .btn-prod {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .form-contact .form-group.text-center .d-flex,
  .form-contact .form-group .btn-prod {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .form-contact .form-group.text-center .d-flex button,
  .form-contact .form-group.text-center .d-flex a,
  .form-contact .form-group .btn-prod button,
  .form-contact .form-group .btn-prod a {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.form-contact .form-group .btn-prod button,
.form-contact .form-group .btn-prod a {
  width: 80%;
  margin-left: 0;
}
@media (max-width: 575px) {
  .form-contact .form-group .btn-prod button,
  .form-contact .form-group .btn-prod a {
    width: 100%;
  }
}
.form-contact .form-control {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  height: 48px;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
  width: 100%;
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-contact .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}
.form-contact textarea {
  border-radius: 0px;
  height: 100% !important;
  padding-top: 20px;
}
.form-contact button {
  border: none;
}

#form-prod-int {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}

.h3-form {
  font-size: 20px;
  color: #43b6dc;
}
.h3-form i {
  color: #43b6dc;
  font-size: 18px;
  position: relative;
  top: 5px;
}

.whats-form {
  background: #22ba59;
  margin-left: 20px;
}
@media (max-width: 575px) {
  .whats-form {
    margin-left: 0;
  }
}
.whats-form::after {
  background-color: #01a43d;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Vibração a cada 5 segundos */
@keyframes whatsapp-vibrate {
  0%, 96% {
    transform: translate(0, 0);
  }
  97% {
    transform: translate(-3px, 0);
  }
  97.5% {
    transform: translate(3px, 0);
  }
  98% {
    transform: translate(-2px, 0);
  }
  98.5% {
    transform: translate(2px, 0);
  }
  99% {
    transform: translate(-1px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*=============*/
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 75px;
  right: 15px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  animation: sweep 1.5s ease-in-out, whatsapp-vibrate 5s ease-in-out 1.5s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bolinha de notificação (1) */
.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: #e53935;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.whatsapp-icon {
  margin-top: 0;
}

.contact-section {
  padding: 65px 0 0;
}
.contact-section > .container > .row > .col-12 h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-section .info-container {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  position: relative;
  padding: 20px;
  border-radius: 8px;
}
.contact-section .info-container .contact-info {
  display: flex;
}
.contact-section .info-container .contact-info:not(:last-child) {
  margin-bottom: 35px;
}
.contact-section .info-container .contact-info h3 {
  font-size: 1.1em;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.contact-section .info-container .contact-info h3 a:hover {
  color: #43b6dc;
}
.contact-section .info-container .contact-info p {
  color: #383838;
  margin-bottom: 0;
}
.contact-section .info-container .contact-info .icon {
  color: #0a0a0a;
  margin-right: 10px;
  font-size: 1.6em;
  min-width: 35px;
}
.contact-section .info-container::after {
  content: "";
  position: absolute;
  display: block;
  height: 115%;
  width: 85%;
  border-radius: 0%;
  left: -30px;
  top: -20px;
  z-index: -2;
  border-radius: 8px;
  opacity: 0.8;
  border: 3px solid color-mix(in srgb, #43b6dc, #fff 40%);
  background: #43b6dc;
}
.contact-section .btn-contact {
  display: flex;
}
@media (max-width: 576px) {
  .contact-section .btn-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .contact-section .btn-contact .btn-main {
    margin-left: 0;
    width: 80%;
  }
}

.banner-full {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  margin-top: 0;
  overflow: hidden;
  z-index: 2;
}
.banner-full .shape-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22%;
  background: linear-gradient(0deg, #0a0a0a 0%, #000000 40%, transparent 100%);
  opacity: 1;
  z-index: 1;
}
.banner-full .swiper-slide:not(.swiper-slide-active) .fadeUp, .banner-full .swiper-slide:not(.swiper-slide-active) .text1, .banner-full .swiper-slide:not(.swiper-slide-active) .flipIn {
  opacity: 0;
  animation: none;
}
.banner-full .swiper-slide.swiper-slide-active .fadeUp {
  opacity: 0;
  animation: fadeup 0.5s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.15s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .text1 {
  opacity: 0;
  animation: fadeup 0.55s cubic-bezier(0.25, 0.26, 0.25, 0.94) 0.2s 1 normal forwards;
}
.banner-full .swiper-slide.swiper-slide-active .flipIn {
  opacity: 0;
  animation: flipIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}
.banner-full .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 50px;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .controls {
    bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .controls {
    width: 80%;
    bottom: 10px;
  }
}
.banner-full .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  top: 50% !important;
  transform: translateY(-50%);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom {
  display: block;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom:not(:last-child) {
  margin-right: 5px;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom svg {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active svg {
  display: block;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active svg circle {
  stroke-dasharray: 56.5563;
  stroke-dashoffset: 56.5563;
  animation: BulletProgress calc(var(--delay) * 1ms) linear forwards;
}
.banner-full .swiper-pagination .swiper-pagination-bullet-custom--active::before {
  background-color: #fff;
}
@keyframes BulletProgress {
  to {
    stroke-dashoffset: 0;
  }
}
.banner-full .swiper-pagination .swiper--pause .swiper-pagination-bullet-custom--active svg circle {
  animation: none;
}
.banner-full .swiper-buttons {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  margin-top: 0;
  background: transparent !important;
  border: 1.5px solid #fff !important;
  border-radius: 50%;
  box-shadow: none !important;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.banner-full .swiper-buttons::before,
.banner-full .swiper-buttons::after {
  display: none !important;
  content: none !important;
}
.banner-full .swiper-buttons svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.banner-full .swiper-buttons svg path {
  stroke: #fff !important;
  fill: none;
}
.banner-full .swiper-buttons:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
}
.banner-full .swiper-buttons.swiper-button-prev, .banner-full .swiper-buttons.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
}
.banner-full .swiper-buttons.swiper-button-prev {
  left: 15px;
}
.banner-full .swiper-buttons.swiper-button-next {
  right: 15px;
}
.banner-full .swiper-buttons.swiper-button-prev:hover,
.banner-full .swiper-buttons.swiper-button-next:hover {
  transform: scale(1.08) translateY(-50%);
}
.banner-full .banner-main {
  position: relative !important;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  overflow: hidden;
}
.banner-full .banner-main .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
}
.banner-full .banner-main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 72%;
}
.banner-full .banner-main .content-area {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area {
    padding-top: 80px;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
  }
}
.banner-full .banner-main .content-area .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.banner-full .banner-main .content-area .bg .image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5);
  animation: loopScale 8s ease-in 0s infinite alternate forwards;
}
.banner-full .banner-main .content-area .bg .shape {
  position: absolute;
  width: 100%;
  height: 90%;
  left: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.banner-full .banner-main .content-area .bg .shape img {
  width: 115%;
  height: 100%;
  object-position: left bottom;
  margin-left: -30px;
  opacity: 1;
}
.banner-full .banner-main .content-area .bg::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, #0a0a0a 0%, rgba(10, 10, 10, 0.4) 50%, transparent 100%);
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: -1;
}
.banner-full .banner-main .content-area .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 90%;
    padding: 0px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 20px;
    align-items: flex-end;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content {
    width: 100%;
    height: 100%;
    padding: 20px;
    align-items: flex-end;
  }
}
.banner-full .banner-main .content-area .content .text {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
  margin: 5px 0;
  width: 38vw;
  margin-left: 10vw;
}
.banner-full .banner-main .content-area .content .text.margin-none {
  margin-left: 0 !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text {
    width: 40vw;
    margin-left: 2vw;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    top: -240px;
    margin-left: 8vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text {
    width: 80vw;
    top: -190px;
    margin-left: 8vw;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text {
    width: 98vw;
    top: -120px;
    margin-left: 2vw;
  }
}
.banner-full .banner-main .content-area .content .text h1,
.banner-full .banner-main .content-area .content .text h2,
.banner-full .banner-main .content-area .content .text span {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  color: #fff;
  font-size: 3rem;
  line-height: 3.2rem;
  text-shadow: 2px 2px 50px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 2.4rem;
    line-height: 2.5rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text h1,
  .banner-full .banner-main .content-area .content .text h2,
  .banner-full .banner-main .content-area .content .text span {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text h1 b,
.banner-full .banner-main .content-area .content .text h2 b,
.banner-full .banner-main .content-area .content .text span b {
  font-weight: 700;
  color: #43b6dc;
}
.banner-full .banner-main .content-area .content .text p {
  font-size: 1rem;
  font-weight: 1rem;
  font-weight: 300;
  color: #fff;
  margin: 15px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text p {
    font-size: 0.8rem;
    line-height: 1.1rem;
    margin-top: 5px;
  }
}
.banner-full .banner-main .content-area .content .text .text2 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .text2 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-bottom: 10px;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one span {
  font-size: 0.9rem;
  line-height: normal;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-full .banner-main .content-area .content .text .btn-one {
    font-size: 0.85rem;
  }
}
.banner-full .banner-main .content-area .content .text .btn-one i {
  width: 25px;
  height: 25px;
}
.banner-full .banner-main .content-area .content .text .btn-banner,
.banner-full .banner-main .content-area .content .text .btn-banner span {
  font-size: 0.85rem !important;
  line-height: normal;
}
.banner-full .banner-main .content-area .content .text .btn-banner {
  width: fit-content;
  align-self: flex-start;
  padding-left: 1rem;
  padding-right: 1rem;
}
.banner-full .banner-main .content-area .content .image-banner {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid rgba(249, 249, 249, 0.6);
  box-shadow: 8px 8px 45px -5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 100%;
    height: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-main .content-area .content .image-banner {
    width: 95%;
    height: 260px;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-main .content-area .content .image-banner {
    margin: 30px 10px;
    width: 90%;
    height: 240px;
  }
}
.banner-full .banner-main .content-area .content .image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.banner-full .banner-main .content-area .content .image-banner img.obj-contain {
  object-fit: contain;
}
.banner-full .banner-thumb {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb {
    display: none;
  }
}
.banner-full .banner-thumb .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.banner-full .banner-thumb .img-thumb {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.6);
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
@media (max-width: 575px) {
  .banner-full .banner-thumb .img-thumb {
    width: 50px !important;
    height: 50px !important;
  }
}
.banner-full .banner-thumb .img-thumb.swiper-slide-thumb-active {
  transform: scale(1.4);
  opacity: 1;
  border: 2px solid #0a0a0a;
  box-shadow: 0 3px 25px -5px rgba(0, 0, 0, 0.6);
}
.banner-full .banner-thumb .img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-about {
  overflow: hidden;
  position: relative;
}
.section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: contain;
  z-index: 0;
  opacity: 0.06;
}
.section-about.bg-about .container-fluid,
.section-about.bg-about .row,
.section-about.bg-about .about-content,
.section-about.bg-about .about-img {
  position: relative;
  z-index: 1;
}
.section-about.bg-about .text-content .desc p,
.section-about.bg-about .title-area2.white .title {
  color: #fff !important;
}
.section-about.bg-about .title-area2 span,
.section-about.bg-about .title-area2 .subtitle {
  color: #43b6dc !important;
}
.section-about.bg-about .title-area2 span::before,
.section-about.bg-about .title-area2 .subtitle::before {
  background-color: #43b6dc !important;
}
.section-about.bg-about .box-text-destaque p {
  color: rgba(255, 255, 255, 0.95) !important;
}
.section-about.bg-about .box-text-destaque p b {
  color: #43b6dc !important;
}
.section-about.bg-about .about-thumbnail .thumbnail::before {
  border: 2px solid #bd8800;
}
.section-about.bg-about .about-thumbnail .thumbnail::after {
  background: #bd8800;
}
.section-about.bg-dark1 .text-content .desc p, .section-about.bg-dark2 .text-content .desc p {
  color: #fff !important;
}
.section-about.bg-dark1 .about-thumbnail .thumbnail::before, .section-about.bg-dark2 .about-thumbnail .thumbnail::before {
  border: 2px solid #bd8800;
}
.section-about.bg-dark1 .about-thumbnail .thumbnail::after, .section-about.bg-dark2 .about-thumbnail .thumbnail::after {
  background: #bd8800;
}
.section-about .about-content {
  padding: 0 10px;
}
.section-about .about-content.white p {
  color: #fff !important;
}
.section-about .about-content p {
  text-align: justify;
  font-weight: 300;
  font-size: 14px;
  line-height: 27px;
  color: #fff !important;
  margin: 5px 0;
}
.section-about .about-content .text-content .desc {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .section-about .about-content .text-content .desc {
    width: 100%;
  }
}
.section-about .about-content .text-content .desc p {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000;
  margin: 8px 0;
}
.section-about .about-content .text-content .box-text-destaque p {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
  color: #000;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-content .text-content .box-text-destaque p {
    font-size: 22px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-content .text-content .box-text-destaque p {
    font-size: 20px;
    line-height: 24px;
  }
}
.section-about .about-content .text-content .box-text-destaque p b {
  color: #43b6dc;
  font-weight: 600;
}
.section-about .about-img {
  position: relative;
  width: 100%;
  height: fit-content;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-img {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img {
    padding-left: 0;
  }
}
.section-about .about-img::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 90%;
  bottom: -20px;
  right: 20px;
  background-image: repeating-linear-gradient(45deg, #43b6dc 0, #43b6dc 7px, transparent 0, transparent 50%);
  background-size: 25px 25px;
  background-color: transparent;
  opacity: 0.25;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img::before {
    width: 100%;
    right: 0;
  }
}
.section-about .about-img .about-img-single {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img .about-img-single {
    max-height: 380px;
  }
}
.section-about .about-img .about-img-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.section-about .about-img .box-image1,
.section-about .about-img .box-image2 {
  width: 100%;
  height: 100%;
  max-height: 580px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-img .box-image1,
  .section-about .about-img .box-image2 {
    height: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img .box-image1,
  .section-about .about-img .box-image2 {
    min-height: 350px;
    max-height: 400px;
  }
}
.section-about .about-img .box-image2 {
  height: 285px;
  margin-bottom: 10px;
}
.section-about .about-img .box-image2:nth-child(2) {
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-about .about-img .box-image2 {
    height: 290px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-about .about-img .box-image2 {
    display: none;
  }
}
.section-about .about-img .box-image1 {
  margin-top: 0px;
}
.section-about .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: -3px -3px 25px -5px rgba(0, 0, 0, 0.2);
}

.box-cards-mission {
  margin-top: 90px;
}
.box-cards-mission .card-mission {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: #f1f1f1;
  border-radius: 5px;
  box-shadow: 0px 4px 25px -5px rgba(23, 37, 57, 0.2);
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
@media (max-width: 575px) {
  .box-cards-mission .card-mission {
    height: auto;
    margin: 40px 0;
  }
}
.box-cards-mission .card-mission:hover {
  transform: scale(1.02);
}
.box-cards-mission .card-mission::after {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translate(-50%, -50%);
  content: "";
  height: 115px;
  width: 115px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
.box-cards-mission .card-mission .icon {
  height: 88px;
  width: 88px;
  border-radius: 50px;
  background: #43b6dc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.2s ease-in-out;
}
.box-cards-mission .card-mission .icon i {
  font-size: 40px;
  color: #fff;
}
.box-cards-mission .card-mission .content {
  text-align: center;
  margin-top: 40px;
  padding: 45px 15px;
}
.box-cards-mission .card-mission .content .title {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
  color: #1a1a1a;
}
.box-cards-mission .card-mission .content .desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: #1a1a1a;
}

.section-vantagens {
  background: rgba(255, 255, 255, 0.1);
}
.section-vantagens #image-center {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.section-vantagens #image-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.section-vantagens .box-epec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.section-vantagens .box-epec .espec-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px 10px;
  width: 100%;
  min-height: 110px;
  margin: 10px 0;
  cursor: pointer;
  border-bottom: 2px solid rgba(10, 10, 10, 0.1);
}
.section-vantagens .box-epec .espec-card.reverse {
  flex-direction: row-reverse;
}
.section-vantagens .box-epec .espec-card .icon {
  position: relative;
  background: rgba(67, 182, 220, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.section-vantagens .box-epec .espec-card .icon i {
  font-size: 40px;
  color: #bd8800;
}
.section-vantagens .box-epec .espec-card .icon::after {
  position: absolute;
  content: "";
  background: #0a0a0a;
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.section-vantagens .box-epec .espec-card .text {
  width: calc(100% - 75px);
}
.section-vantagens .box-epec .espec-card .text h2,
.section-vantagens .box-epec .espec-card .text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0a0a0a;
}
.section-vantagens .box-epec .espec-card .text p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.section-vantagens .box-epec .espec-card:hover .icon {
  background: #0a0a0a;
}
.section-vantagens .box-epec .espec-card:hover .icon i {
  color: #fff;
}
.section-vantagens .box-epec .espec-card:hover .icon::after {
  height: 100%;
}

@media (max-width: 991px) {
  .section-solution {
    opacity: 1 !important;
    transform: none !important;
  }
  .section-solution .box-content-cards,
  .section-solution .solution-card1,
  .section-solution .box-content-left {
    opacity: 1 !important;
    transform: none !important;
  }
}
.section-solution .box-content-left.sticky-top {
  position: sticky;
  top: 120px;
  z-index: 4;
}
.section-solution .box-content-left .box-image {
  overflow: hidden;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.section-solution .box-content-left .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-solution .box-content-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 15px;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-solution .box-content-cards {
    padding-left: 6px;
  }
}
.section-solution .box-content-cards .solution-card1 {
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-solution .box-content-cards .solution-card1 .icon span {
  height: 65px;
  width: 65px;
  line-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 8px;
  padding: 10px;
  background: rgba(67, 182, 220, 0.5);
  transition: 0.3s;
}
.section-solution .box-content-cards .solution-card1 .icon span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
}
.section-solution .box-content-cards .solution-card1 .icon span i {
  font-size: 28px;
  color: #fff;
}
.section-solution .box-content-cards .solution-card1 .solution-content .title {
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  transition: 0.3s;
}
.section-solution .box-content-cards .solution-card1 .solution-content .solution-desc {
  padding-top: 16px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}
.section-solution .box-content-cards .solution-card1 .solution-content .solution-desc p,
.section-solution .box-content-cards .solution-card1 .solution-content .solution-desc .text {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  transition: 0.3s;
}
.section-solution .box-content-cards .solution-card1:hover {
  background: #43b6dc;
  transition: 0.3s;
}
.section-solution .box-content-cards .solution-card1:hover .icon span {
  background: #0a0a0a;
  transition: 0.3s;
}
.section-solution {
  /* Lâmpada decorativa – Diferenciais (cores do site, sem troca de tema) */
}
.section-solution .diferenciais-light-wrap {
  --lb-bg: #0a0a0a;
  --lb-s: #43b6dc;
  --lb-l: rgba(255, 255, 255, 0.12);
  --lb-bs: rgba(67, 182, 220, 0.15);
  --lb-duration: 0.3s;
  --lb-type: linear;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: translateX(-24px);
}
.section-solution .light-bulb-btn {
  width: 150px;
  height: 150px;
  border-radius: 1000px;
  padding: 1.25rem;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--lb-s);
  background: transparent;
  cursor: default;
  transition: var(--lb-duration);
  margin: 0 auto;
}
.section-solution .light-bulb-btn:focus {
  outline: 0;
  border-color: var(--lb-s);
}
.section-solution .diferenciais-light-wrap .light-bulb {
  pointer-events: none;
  transform: translateY(6px);
}
.section-solution .diferenciais-light-wrap .upper {
  transform: translateY(-7px);
}
.section-solution .diferenciais-light-wrap .circle {
  width: 52px;
  height: 50px;
  background: var(--lb-bg);
  border: 2px solid var(--lb-s);
  border-radius: 100px;
  position: relative;
  transition: var(--lb-duration) var(--lb-type);
  box-shadow: inset 0 6px 10px 2px var(--lb-bs), 2px -3px 10px var(--lb-bs);
}
.section-solution .diferenciais-light-wrap .line-1 {
  width: 10px;
  height: 28px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: var(--lb-bg);
  transform: rotate(-30deg) translateX(-2px) translateY(50%);
  display: flex;
  justify-content: center;
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .line-2 {
  width: 10px;
  height: 28px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: var(--lb-bg);
  transform: rotate(30deg) translateX(2px) translateY(50%);
  display: flex;
  justify-content: center;
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .line-c {
  width: 0;
  height: inherit;
  border: 1px solid var(--lb-s);
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .circle-bottom {
  width: 36px;
  height: 36px;
  background: var(--lb-l);
  border-radius: 100%;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .lower {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.section-solution .diferenciais-light-wrap .lower-1 {
  align-self: center;
  width: 18px;
  height: 22px;
  border: 2px solid var(--lb-s);
  border-radius: 0 0 0 4px;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  transition: var(--lb-duration) var(--lb-type);
  box-shadow: 2px 0 4px var(--lb-bs);
}
.section-solution .diferenciais-light-wrap .lower-1::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -2px;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50px 50px 0 0;
  background: var(--lb-bg);
  transform: translate(-100%, -100%);
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .lower-1::after {
  content: "";
  position: absolute;
  left: calc(100% - 4px);
  top: -3px;
  z-index: 2;
  width: 4px;
  height: 6px;
  background: var(--lb-bg);
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .lower-line {
  width: 50%;
  height: 2px;
  background: var(--lb-s);
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .lower-2 {
  align-self: center;
  transform: translateX(11px) translateY(-4px);
}
.section-solution .diferenciais-light-wrap .lower-2-lines {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, transparent 20%, var(--lb-s) 20%, var(--lb-s) 80%, transparent 80%);
  background-repeat: repeat-y;
  background-size: 2px 8px;
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .lower-2-circle {
  width: 3px;
  height: 3px;
  border: 2px solid var(--lb-s);
  border-radius: 10px;
  transform: translateX(-2px) translateY(2px);
  transition: var(--lb-duration) var(--lb-type);
}
.section-solution .diferenciais-light-wrap .lower-2-inner {
  transform-origin: center top;
  animation: light-bulb-swing 4s infinite alternate linear;
}
@keyframes light-bulb-swing {
  50% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
.section-solution .box-bottom {
  padding: 20px 15px !important;
  padding-bottom: 0 !important;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.section-solution .box-bottom .desc p {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}

.section-produtos-galeria .produtos-gallery-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #000018;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}
@media only screen and (min-width: 1441px), only screen and (min-width: 1200px) and (max-width: 1440px) {
  .section-produtos-galeria .produtos-gallery-wrapper {
    height: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-produtos-galeria .produtos-gallery-wrapper {
    height: 400px;
  }
}
.section-produtos-galeria .produtosGalleryMain {
  flex: 1;
  min-height: 100%;
  margin-left: 0;
}
.section-produtos-galeria .produtosGalleryMain .swiper-wrapper,
.section-produtos-galeria .produtosGalleryMain .swiper-slide {
  height: 100%;
}
.section-produtos-galeria .produtosGalleryMain .produtos-galeria-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}
.section-produtos-galeria .produtosGalleryMain .produtos-galeria-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}
.section-produtos-galeria .produtosGalleryMain .produtos-galeria-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 50%), radial-gradient(circle at bottom, rgba(0, 0, 0, 0.5), transparent 55%);
  pointer-events: none;
}
.section-produtos-galeria .produtosGalleryMain .produtos-galeria-caption {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: end;
  left: 22px;
  bottom: 26px;
  max-width: 340px;
  padding: 60px 30px;
  border-radius: 14px;
  background: rgba(8, 12, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.section-produtos-galeria .produtosGalleryMain .produtos-galeria-caption h2,
.section-produtos-galeria .produtosGalleryMain .produtos-galeria-caption h3 {
  font-size: 24px;
  font-weight: 600;
  color: #43b6dc;
  margin-bottom: 4px;
}
.section-produtos-galeria .produtosGalleryMain .produtos-galeria-caption p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.section-produtos-galeria .produtosGalleryMain .swiper-slide-active .produtos-galeria-slide img {
  transform: scale(1.05);
  filter: brightness(1);
}
.section-produtos-galeria .produtosGalleryMain .produtos-gallery-main-pagination {
  position: absolute;
  left: 24px;
  bottom: 18px;
  right: 24px;
  display: flex;
  justify-content: center;
}
.section-produtos-galeria .produtosGalleryMain .produtos-gallery-main-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 4px !important;
  transition: 0.25s ease;
}
.section-produtos-galeria .produtosGalleryMain .produtos-gallery-main-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background: #0a0a0a;
}
.section-produtos-galeria .produtosGalleryThumbs {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 90%;
  padding: 10px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.section-produtos-galeria .produtosGalleryThumbs .produtos-thumbs-nav {
  position: absolute;
  inset-inline: 4px;
  top: 4px;
  bottom: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.section-produtos-galeria .produtosGalleryThumbs .produtos-thumbs-nav .thumbs-button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 16, 32, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.section-produtos-galeria .produtosGalleryThumbs .produtos-thumbs-nav .thumbs-button svg {
  display: block;
}
.section-produtos-galeria .produtosGalleryThumbs .produtos-thumbs-nav .thumbs-button:hover {
  background: #0a0a0a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}
.section-produtos-galeria .produtosGalleryThumbs .swiper-slide {
  height: 60px !important;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform-origin: center;
}
.section-produtos-galeria .produtosGalleryThumbs .swiper-slide-thumb-active {
  opacity: 1;
  transform: translateX(-2px);
}
.section-produtos-galeria .produtosGalleryThumbs .produtos-galeria-thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
  aspect-ratio: 4/3;
}
.section-produtos-galeria .produtosGalleryThumbs .produtos-galeria-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-produtos-galeria .produtosGalleryThumbs .swiper-slide-thumb-active .produtos-galeria-thumb {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px #0a0a0a;
}
@media (max-width: 1199.98px) {
  .section-produtos-galeria .produtos-gallery-wrapper {
    flex-direction: column;
    border-radius: 14px;
    min-height: 280px;
  }
  .section-produtos-galeria .produtosGalleryMain {
    margin-left: 0;
    order: 1;
  }
  .section-produtos-galeria .produtosGalleryMain .produtos-galeria-slide {
    min-height: 240px;
  }
  .section-produtos-galeria .produtosGalleryMain .produtos-gallery-main-pagination {
    bottom: 10px;
  }
  .section-produtos-galeria .produtosGalleryThumbs {
    position: static;
    transform: none;
    order: 2;
    width: 100%;
    height: 80px;
    min-height: 80px;
    margin-top: 0;
    padding: 12px 16px;
    border-radius: 0 0 14px 14px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .section-produtos-galeria .produtosGalleryThumbs .produtos-thumbs-nav {
    display: none;
  }
  .section-produtos-galeria .produtosGalleryThumbs .swiper-wrapper {
    align-items: center;
  }
  .section-produtos-galeria .produtosGalleryThumbs .swiper-slide {
    height: 56px;
    flex-shrink: 0;
  }
  .section-produtos-galeria .produtosGalleryThumbs .produtos-galeria-thumb {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    max-height: 56px;
  }
  .section-produtos-galeria .produtosGalleryThumbs .produtos-galeria-thumb img {
    object-fit: cover;
  }
}
@media (max-width: 575.98px) {
  .section-produtos-galeria .produtosGalleryThumbs {
    height: 72px;
    min-height: 72px;
    padding: 10px 12px;
  }
  .section-produtos-galeria .produtosGalleryThumbs .swiper-slide {
    height: 50px;
  }
  .section-produtos-galeria .produtosGalleryThumbs .produtos-galeria-thumb {
    max-height: 50px;
    border-radius: 8px;
  }
}

.solutions-area.bg-dark {
  background: linear-gradient(20deg, #0a0a0a, #000000) !important;
}
.solutions-area.bg-light {
  background-image: linear-gradient(340deg, rgba(8, 17, 150, 0.071) 0%, rgba(63, 40, 216, 0.059) 100%);
}
.solutions-area .prodSwiper .box-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  z-index: 1;
}
.solutions-area .prodSwiper .box-controls .swiper-pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 170px;
  height: 3px;
  background: #9a9a9a;
  z-index: 1;
}
.solutions-area .prodSwiper .box-controls .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #43b6dc;
}
.solutions-area .prodSwiper .box-controls .navs {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons {
  position: absolute;
  width: 45px;
  height: 45px;
  background: none;
  margin: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  transition: 0.3s ease;
  box-shadow: none;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons::after {
  display: none;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons svg {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.solutions-area .prodSwiper .box-controls .navs .swiper-buttons svg path {
  stroke: #43b6dc;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 55px;
  width: 55px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 55px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 20px;
  color: #a81818;
  font-weight: 600;
}
.banner-full .swiper-buttons,
.banner-full .swiper-button-prev,
.banner-full .swiper-button-next,
.section-produtos-home .swiper-buttons,
.section-produtos-home .swiper-button-prev,
.section-produtos-home .swiper-button-next,
.section-lancamentos .swiper-buttons,
.section-lancamentos .swiper-button-prev,
.section-lancamentos .swiper-button-next {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  padding: 0;
  background: transparent !important;
  border: 1.5px solid #fff !important;
  border-radius: 50%;
  box-shadow: none !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-full .swiper-buttons::before,
.banner-full .swiper-buttons::after,
.banner-full .swiper-button-prev::after,
.banner-full .swiper-button-next::after,
.section-produtos-home .swiper-buttons::before,
.section-produtos-home .swiper-buttons::after,
.section-produtos-home .swiper-button-prev::after,
.section-produtos-home .swiper-button-next::after,
.section-lancamentos .swiper-buttons::before,
.section-lancamentos .swiper-buttons::after,
.section-lancamentos .swiper-button-prev::after,
.section-lancamentos .swiper-button-next::after {
  display: none !important;
  content: none !important;
}
.banner-full .swiper-buttons svg,
.banner-full .swiper-button-prev svg,
.banner-full .swiper-button-next svg,
.section-produtos-home .swiper-buttons svg,
.section-produtos-home .swiper-button-prev svg,
.section-produtos-home .swiper-button-next svg,
.section-lancamentos .swiper-buttons svg,
.section-lancamentos .swiper-button-prev svg,
.section-lancamentos .swiper-button-next svg {
  width: 22px;
  height: 22px;
}
.banner-full .swiper-buttons svg path,
.section-produtos-home .swiper-buttons svg path,
.section-lancamentos .swiper-buttons svg path {
  stroke: #fff !important;
  fill: none;
}
.banner-full .swiper-buttons:hover,
.banner-full .swiper-button-prev:hover,
.banner-full .swiper-button-next:hover,
.section-produtos-home .swiper-buttons:hover,
.section-produtos-home .swiper-button-prev:hover,
.section-produtos-home .swiper-button-next:hover,
.section-lancamentos .swiper-buttons:hover,
.section-lancamentos .swiper-button-prev:hover,
.section-lancamentos .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-full .swiper-buttons,
  .banner-full .swiper-button-prev,
  .banner-full .swiper-button-next,
  .section-produtos-home .swiper-buttons,
  .section-produtos-home .swiper-button-prev,
  .section-produtos-home .swiper-button-next,
  .section-lancamentos .swiper-buttons,
  .section-lancamentos .swiper-button-prev,
  .section-lancamentos .swiper-button-next {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-full .swiper-buttons,
  .banner-full .swiper-button-prev,
  .banner-full .swiper-button-next,
  .section-produtos-home .swiper-buttons,
  .section-produtos-home .swiper-button-prev,
  .section-produtos-home .swiper-button-next,
  .section-lancamentos .swiper-buttons,
  .section-lancamentos .swiper-button-prev,
  .section-lancamentos .swiper-button-next {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
  }
}
@media (max-width: 575px) {
  .banner-full .swiper-buttons,
  .banner-full .swiper-button-prev,
  .banner-full .swiper-button-next,
  .section-produtos-home .swiper-buttons,
  .section-produtos-home .swiper-button-prev,
  .section-produtos-home .swiper-button-next,
  .section-lancamentos .swiper-buttons,
  .section-lancamentos .swiper-button-prev,
  .section-lancamentos .swiper-button-next {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
  }
}

.counter-area-2 {
  max-width: 100%;
  border-radius: 0;
  padding: 30px 0;
  background-image: url(../img/gallery/about1.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.counter-area-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  z-index: -2;
}
.counter-area-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/banners/count-dots-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.counter-area-2 .counter-wrap2 .counter-card2 {
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 250px;
  border-radius: 50%;
  border: 1px solid var(--th-border-color4);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-area-2 .counter-wrap2 .counter-card2 {
    width: 100%;
    height: fit-content;
    padding: 20px;
  }
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
  display: flex;
  justify-content: center;
  font-size: 80px;
  font-weight: 300;
  color: #43b6dc;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number {
    font-size: 60px;
  }
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number .counter-number,
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-number span {
  color: #fff;
  font-weight: 600;
}
.counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-text,
.counter-area-2 .counter-wrap2 .counter-card2 .media-body p {
  margin-top: 1px;
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body .box-text,
  .counter-area-2 .counter-wrap2 .counter-card2 .media-body p {
    font-size: 20px;
  }
}

.section-feedbacks {
  position: relative;
}
.section-feedbacks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/banners/bg-feedbacks.png);
  background-position: center;
  background-size: 1500px;
  background-repeat: repeat-x;
  background-color: #f6f6f6;
  opacity: 0.1;
}
.section-feedbacks .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #43b6dc;
  padding: 50px 30px;
  border-radius: 30px;
  margin-bottom: 70px;
  min-height: 450px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-feedbacks .content {
    margin-bottom: 20px;
  }
}
.section-feedbacks .content .title span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  padding: 8px 10px;
  color: #fff;
  background: rgba(10, 10, 10, 0.2);
  border-radius: 100px;
  margin-bottom: 15px;
}
.section-feedbacks .content .title span i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 20px;
  background: #43b6dc;
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  border-radius: 50%;
}
.section-feedbacks .content .title span i::before {
  margin-top: 3px;
}
.section-feedbacks .content .title h2,
.section-feedbacks .content .title h3 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}
.section-feedbacks .content .title h2 b,
.section-feedbacks .content .title h3 b {
  color: #43b6dc;
}
.section-feedbacks .content .text {
  margin-bottom: 40px;
}
.section-feedbacks .content .text p {
  color: #fff;
  font-size: 16px;
}
.section-feedbacks .content .btn-testi {
  width: fit-content;
  padding: 10px 25px;
  background: #fff;
  color: #43b6dc;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  border-radius: 5px;
}
.section-feedbacks .content .btn-testi:hover {
  background: #0a0a0a;
  color: #fff;
}
.section-feedbacks .feedbackSwiper {
  padding: 10px;
}
.section-feedbacks .feedbackSwiper .controls {
  position: relative;
  bottom: 20px;
  width: 150px;
  margin: 0 auto;
  margin-top: 20px;
  height: 60px;
}
.section-feedbacks .feedbackSwiper .controls .swiper-button-prev,
.section-feedbacks .feedbackSwiper .controls .swiper-button-next {
  top: auto;
  bottom: 5px;
  transform: none;
}

.section-produtos-home {
  position: relative;
  overflow: hidden;
}
.section-produtos-home .particles-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.section-produtos-home .section-produtos-home-inner {
  position: relative;
  z-index: 1;
}
.section-produtos-home .produtos-home-swiper-wrap {
  position: relative;
  margin: 0 -12px;
  padding: 0 12px;
}
.section-produtos-home .produtos-home-overlay {
  position: absolute;
  top: 0;
  bottom: 50px;
  width: 32%;
  max-width: 240px;
  min-width: 90px;
  z-index: 2;
  pointer-events: none;
}
.section-produtos-home .produtos-home-overlay--left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
}
.section-produtos-home .produtos-home-overlay--right {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-produtos-home .produtos-home-overlay {
    width: 26%;
    max-width: 140px;
    min-width: 56px;
    bottom: 50px;
  }
}
.section-produtos-home .produtosHomeSwiper {
  padding-bottom: 50px;
  overflow: hidden;
}
.section-produtos-home .swiper-slide {
  height: auto;
  display: flex;
}
.section-produtos-home .produto-card-wrapper {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(120deg, #1a1d28, #0d0f14);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.section-produtos-home .produto-card-overview {
  padding: 20px;
  background: linear-gradient(176deg, #43b6dc, #2a8fb8);
  min-height: 200px;
  position: relative;
  flex-shrink: 0;
}
.section-produtos-home .produto-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  flex-shrink: 0;
}
.section-produtos-home .produto-card-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.section-produtos-home .produto-card-actions .produto-card-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease;
}
.section-produtos-home .produto-card-actions .produto-card-btn:hover {
  opacity: 0.85;
}
.section-produtos-home .produto-card-actions .produto-card-btn svg {
  width: 22px;
  height: 22px;
}
.section-produtos-home .produto-card-actions .produto-card-btn {
  /* seta do botão Voltar removida */
}
.section-produtos-home .produto-card-actions .produto-card-btn.produto-card-back svg {
  display: none;
}
.section-produtos-home .produto-card-actions .neuro-btn {
  background: linear-gradient(120deg, #1a1d28, #0d0f14);
  box-shadow: inset 3px 4px 5px 0 rgba(255, 255, 255, 0.06), inset -2px -2px 6px rgba(0, 0, 0, 0.3), 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.section-produtos-home .produto-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 140px;
}
.section-produtos-home .produto-card-grouptext h3 {
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
}
.section-produtos-home .produto-card-grouptext p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.section-produtos-home .produto-card-image {
  position: absolute;
  bottom: 10px;
  left: 55%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 220px;
  z-index: 2;
}
.section-produtos-home .produto-card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.section-produtos-home .produto-card-image--barra {
  bottom: 0;
}
.section-produtos-home .produto-card-image--barra img {
  transform: translateY(6px) rotate(-5deg);
}
.section-produtos-home .produto-card-wrapper:hover .produto-card-image--barra img {
  transform: translateY(0) rotate(-5deg) scale(1.05);
}
.section-produtos-home .produto-card-wrapper:hover .produto-card-image img {
  transform: translateY(-6px) scale(1.05);
}
.section-produtos-home .produto-card-specs {
  padding: 24px 20px 20px;
  padding-top: 44px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.section-produtos-home .produto-card-specs h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.25;
}
.section-produtos-home .produto-card-specs > p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.section-produtos-home .produto-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.section-produtos-home .produto-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-produtos-home .produto-card-feature .produto-card-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(120deg, #1a1d28, #0d0f14);
  border-radius: 8px;
  box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.05), 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.section-produtos-home .produto-card-feature .produto-card-feature-text p {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
.section-produtos-home .produto-card-feature .produto-card-feature-text p strong {
  display: block;
  color: #fff;
  font-size: 12px;
}
.section-produtos-home .produto-card-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: linear-gradient(120deg, #1a1d28, #0d0f14);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.section-produtos-home .produto-card-preorder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px !important;
  font-size: 14px !important;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.section-produtos-home .produto-card-preorder i {
  display: none; /* setinha ao lado do carrinho/Saiba mais removida */
}
.section-produtos-home .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  width: 100%;
}
.section-produtos-home .produtos-home-pagination {
  position: relative;
}
.section-produtos-home .swiper-buttons {
  flex-shrink: 0;
  transition: 0.3s ease;
}
.section-produtos-home .swiper-buttons:hover {
  transform: scale(1.05);
}
.section-produtos-home .produtos-home-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

.btn-home-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.75rem !important;
  padding: 1.05rem 2.5rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, #43b6dc 0%, #2d9fc4 50%, #43b6dc 100%) !important;
  background-size: 200% 100%;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(67, 182, 220, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 0 40px rgba(67, 182, 220, 0.25);
  transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn-home-cta span {
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
}
.btn-home-cta i {
  font-size: 1.15rem !important;
  transition: transform 0.25s ease;
}
.btn-home-cta:hover {
  background-position: 100% 0 !important;
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 14px 40px rgba(67, 182, 220, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 56px rgba(67, 182, 220, 0.35);
}
.btn-home-cta:hover i {
  transform: translateX(5px);
}
.btn-home-cta:active {
  transform: translateY(-1px) scale(1.02);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .btn-home-cta {
    width: 100%;
    max-width: 340px;
    padding: 1rem 1.75rem !important;
    font-size: 0.95rem !important;
  }
}

.section-lancamentos {
  position: relative;
  overflow: hidden;
  background: #191d1e;
  background: linear-gradient(0deg, #191d1e 50%, #283139 100%);
  background-attachment: scroll;
}
.section-lancamentos .particles-lancamentos-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.section-lancamentos .section-lancamentos-inner {
  position: relative;
  z-index: 1;
}
.section-lancamentos .lancamentos-btn-wrap .btn-lancamentos span::before {
  display: none;
}
.section-lancamentos .lancamentos-btn-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-lancamentos .lancamentos-btn-wrap {
    justify-content: center;
  }
}
.section-lancamentos .lancamentos-btn-wrap .btn-lancamentos.btn-home-cta {
  text-decoration: none;
  margin: 0;
}
.section-lancamentos .lancamentos-btn-wrap .btn-lancamentos:not(.btn-home-cta) {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem !important;
  border-radius: 9999px;
  font-size: 0.8rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: #43b6dc;
  color: #fff !important;
  border: 0;
  margin: 0;
  transition: background 0.25s ease, transform 0.15s ease;
}
.section-lancamentos .lancamentos-btn-wrap .btn-lancamentos:not(.btn-home-cta) span {
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
}
.section-lancamentos .lancamentos-btn-wrap .btn-lancamentos:not(.btn-home-cta):hover {
  background: #3aa5c9;
  color: #fff !important;
  transform: translateY(-1px);
}
.section-lancamentos .lancamentos-btn-wrap .btn-lancamentos:not(.btn-home-cta):hover span {
  color: #fff !important;
}
.section-lancamentos .lancamentos-btn-wrap .btn-lancamentos:not(.btn-home-cta):active {
  transform: translateY(0);
}
.section-lancamentos {
  /* Arrows iguais à seção produtos */
}
.section-lancamentos .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  position: relative;
  width: 100%;
}
.section-lancamentos .swiper-buttons {
  flex-shrink: 0;
  transition: 0.3s ease;
}
.section-lancamentos .swiper-buttons:hover {
  transform: scale(1.05);
}
.section-lancamentos .lancamentosSwiper {
  padding-bottom: 32px;
  overflow: hidden;
}
.section-lancamentos .card-lancamento {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  min-height: 540px;
  height: auto;
  background: #191919;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.section-lancamentos .card-lancamento::before {
  content: "";
  position: absolute;
  top: -50%;
  width: 100%;
  height: 100%;
  background: #43b6dc;
  transform: skewY(345deg);
  transition: 0.5s;
}
.section-lancamentos .card-lancamento:hover::before {
  top: -70%;
  transform: skewY(390deg);
}
.section-lancamentos .card-lancamento::after {
  content: "EXATRONIC";
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 600;
  font-size: 4em;
  color: rgba(0, 0, 0, 0.08);
  z-index: 0;
}
.section-lancamentos .card-lancamento .imgBox {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 8px;
  flex-shrink: 0;
  z-index: 1;
}
.section-lancamentos .card-lancamento .card-lancamento-img {
  height: 200px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  transition: 0.5s;
}
.section-lancamentos .card-lancamento:hover .card-lancamento-img {
  transform: scale(1.05);
}
.section-lancamentos .card-lancamento .contentBox {
  position: relative;
  padding: 16px 20px 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex: 1;
  z-index: 2;
  text-align: center;
}
.section-lancamentos .card-lancamento .contentBox h3 {
  font-size: 17px;
  line-height: 1.35;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-lancamentos .card-lancamento .contentBox p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section-lancamentos .card-lancamento .contentBox .card-lancamento-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
  flex-shrink: 0;
}
.section-lancamentos .card-lancamento .contentBox .buy {
  position: relative;
  top: 0;
  opacity: 0;
  padding: 10px 28px;
  margin-top: 4px;
  margin-bottom: 0;
  color: #000;
  text-decoration: none;
  background: #43b6dc;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}
.section-lancamentos .card-lancamento .contentBox .buy-store {
  opacity: 0;
  padding: 8px 22px;
  color: #43b6dc;
  background: transparent;
  border: 2px solid #43b6dc;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-lancamentos .card-lancamento .contentBox .buy,
  .section-lancamentos .card-lancamento .contentBox .buy-store {
    opacity: 1;
  }
}
.section-lancamentos .card-lancamento:hover .contentBox .buy,
.section-lancamentos .card-lancamento:hover .contentBox .buy-store {
  opacity: 1;
}

.page-produtos-listing .card-lancamento {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  height: 460px;
  background: #191919;
  border-radius: 20px;
  overflow: hidden;
}
.page-produtos-listing .card-lancamento::before {
  content: "";
  position: absolute;
  top: -50%;
  width: 100%;
  height: 100%;
  background: #43b6dc;
  transform: skewY(345deg);
  transition: 0.5s;
}
.page-produtos-listing .card-lancamento:hover::before {
  top: -70%;
  transform: skewY(390deg);
}
.page-produtos-listing .card-lancamento::after {
  content: "EXATRONIC";
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 600;
  font-size: 4em;
  color: rgba(0, 0, 0, 0.08);
  z-index: 0;
}
.page-produtos-listing .card-lancamento .imgBox {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  z-index: 1;
}
.page-produtos-listing .card-lancamento .card-lancamento-img {
  height: 220px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  transition: 0.5s;
}
.page-produtos-listing .card-lancamento:hover .card-lancamento-img {
  transform: scale(1.05);
}
.page-produtos-listing .card-lancamento .contentBox {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
}
.page-produtos-listing .card-lancamento .contentBox h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.page-produtos-listing .card-lancamento .contentBox .card-lancamento-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.page-produtos-listing .card-lancamento .contentBox .buy {
  position: relative;
  top: 0;
  opacity: 0;
  padding: 10px 28px;
  margin-top: 4px;
  margin-bottom: 0;
  color: #000;
  text-decoration: none;
  background: #43b6dc;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}
.page-produtos-listing .card-lancamento .contentBox .buy-store {
  opacity: 0;
  padding: 8px 22px;
  color: #43b6dc;
  background: transparent;
  border: 2px solid #43b6dc;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .page-produtos-listing .card-lancamento .contentBox .buy,
  .page-produtos-listing .card-lancamento .contentBox .buy-store {
    opacity: 1;
  }
}
.page-produtos-listing .card-lancamento:hover .contentBox .buy,
.page-produtos-listing .card-lancamento:hover .contentBox .buy-store {
  opacity: 1;
}

.section-process .title-area2 {
  margin-bottom: 0;
}
.section-process .process-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}
.section-process .process-desc strong {
  color: #fff;
  font-weight: 600;
}
.section-process .process-circles-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.section-process .process-circles-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-process .process-circles-row--single {
  justify-content: center;
}
.section-process .process-circles-row--single .step-img-wrap {
  flex: 0 0 auto;
}
.section-process .step-img-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
}
.section-process .step-content {
  margin-top: 1rem;
}
.section-process .step-content .step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
}
.section-process .step-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-process .step-img {
    width: 160px;
    height: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-process .step-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
  }
}
.section-process .step-img .step-img-electric-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 2px solid #43b6dc;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 20px rgba(67, 182, 220, 0.4), inset 0 0 20px rgba(67, 182, 220, 0.08);
}
@media (hover: none) {
  .section-process .step-img .step-img-electric-border {
    filter: none;
  }
}
@media (hover: hover) {
  .section-process .step-img .step-img-electric-border {
    filter: url(#electric-border-displace);
  }
}
.section-process .step-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  object-fit: cover;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .section-process .step-img:hover img {
    transform: scale(1.05);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-process .process-circles-wrap {
    margin-bottom: 2rem;
  }
  .section-process .title-area2 {
    text-align: center;
  }
  .section-process .step-content {
    text-align: center;
  }
}

.section-contato {
  padding: 4rem 0;
  border-top: none;
}
.section-contato .title-area2 {
  margin-bottom: 2.5rem;
}
.section-contato .contato-info-card,
.section-contato .contato-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}
.section-contato .contato-info-title,
.section-contato .contato-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.section-contato .contato-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.section-contato .contato-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}
.section-contato .contato-info-list li:last-of-type {
  margin-bottom: 0;
}
.section-contato .contato-info-list .contato-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #43b6dc;
  font-size: 1rem;
}
.section-contato .contato-info-list a,
.section-contato .contato-info-list span {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}
.section-contato .contato-info-list a:hover {
  color: #fff;
  text-decoration: underline;
}
.section-contato .contato-info-list .contato-endereco a {
  line-height: 1.5;
}
.section-contato .contato-mapa-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.25rem;
}
.section-contato .contato-mapa-wrap .contato-mapa-abrir {
  display: block;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}
.section-contato .contato-mapa-wrap .contato-mapa-abrir:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.section-contato .contato-mapa-wrap iframe {
  display: block;
  width: 100%;
  height: 200px;
}
.section-contato .contato-form-card .form-contact .form-control,
.section-contato .contato-form-card .form-contact textarea {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.25);
  color: #1a1a1a;
}
.section-contato .contato-form-card .form-contact .form-control::placeholder,
.section-contato .contato-form-card .form-contact textarea::placeholder {
  color: #666;
}
.section-contato .contato-form-card .form-contact label {
  color: rgba(255, 255, 255, 0.9);
}
.section-contato .contato-form-card .btn-main,
.section-contato .contato-form-card .whats-form {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-contato {
    padding: 3rem 0;
  }
  .section-contato .contato-body .col-lg-5 {
    margin-bottom: 0;
  }
  .section-contato .contato-mapa-wrap {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .int-page-1 .ajust-float {
    width: 55%;
    float: left;
    margin-right: 20px;
  }
}
.int-page-1 .ajust-float img {
  border-radius: 5px;
  min-height: 400px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .int-page-1 .padding-lg-right {
    padding-right: 5%;
  }
}
.int-page-1 .swiper-button-prev,
.int-page-1 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-1 .swiper-button-prev::after,
.int-page-1 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-1 p {
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}
.int-page-1 .boxExpand {
  margin: 10px 0;
  padding: 10px 0;
}
.int-page-1 .boxExpand #contentExpand {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.int-page-1 .boxExpand #contentExpand ul li {
  list-style-position: inside;
}
.int-page-1 .boxExpand #contentExpand.expanded {
  max-height: 5000px;
}
.int-page-1 .boxExpand #contentExpand.expanded::before {
  display: none;
}
.int-page-1 .boxExpand #contentExpand::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  background: linear-gradient(to top, #ffffff 20%, rgba(0, 0, 0, 0) 100%);
}
.int-page-1 .boxExpand .btn-expand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  z-index: 2;
  border: none;
  outline: none;
  transition: 0.3s ease;
  background: transparent;
}
.int-page-1 .boxExpand .btn-expand i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #43b6dc;
  bottom: 0px;
  font-size: 40px;
  transition: 0.3s ease;
}

.int-page-2 .prodintSwiper {
  height: 400px;
}
.int-page-2 .swiper-button-prev,
.int-page-2 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-2 .swiper-button-prev::after,
.int-page-2 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}
.int-page-2 .img-text {
  position: relative;
  background-image: url(../img/gallery/about.webp);
}
.int-page-2 .img-text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #454545, rgba(255, 255, 255, 0));
  z-index: 0;
}
.int-page-2 .img-text .content-padding {
  padding: 32px;
  z-index: 1;
}
.int-page-2 .img-text .content-padding h2,
.int-page-2 .img-text .content-padding p {
  color: #FFF;
}
.int-page-2 .buttons .btn-main {
  width: 100%;
  text-align: center;
  margin-left: 0;
}

.int-page-3 .title-text01 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  padding: 10px;
}
.int-page-3 .title-text01 .title {
  position: relative;
}
.int-page-3 .title-text01 .title .sub-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #43b6dc;
  opacity: 0.2;
}
.int-page-3 .title-text01 .title h1,
.int-page-3 .title-text01 .title h2,
.int-page-3 .title-text01 .title h3 {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 10px 0;
  background: -webkit-linear-gradient(#43b6dc, #0a0a0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.int-page-3 .box-navfeatures .custom-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav {
    margin-bottom: 15px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style {
    width: 48%;
    margin: 5px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: 0 0;
  border: none;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  padding: 10px 30px;
  width: 100%;
  color: #000000;
  cursor: pointer;
  border: 1px solid #d8d8d8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 15px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link {
    padding: 10px 20px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
  font-size: 30px;
  color: #43b6dc;
  background: linear-gradient(120deg, #0a0a0a 45%, #43b6dc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon i {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active {
  color: #ffffff;
  background: linear-gradient(130deg, #0a0a0a 60%, #43b6dc 100%);
  border-color: #dee2e6;
  border: 0;
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active img {
  filter: brightness(600%) saturate(0);
}
.int-page-3 .box-navfeatures .custom-nav .tab-style .nav-link.active i {
  color: #fff;
  background: linear-gradient(120deg, #fff 45%, #eee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane {
  display: none;
  padding: 5px;
}
.int-page-3 .box-navfeatures .tab-content .tab-pane.active {
  display: flex;
  animation: zoomIn 1s ease 0s 1 normal forwards;
}
.int-page-3 .box-navfeatures .tab-content .box-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-img {
    height: 400px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
@media (max-width: 320px) {
  .int-page-3 .box-navfeatures .tab-content .box-text {
    padding: 20px 0;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-left: 18px;
  color: #1a1a1a;
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 2px;
  height: 15px;
  background: #43b6dc;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 2px;
  height: 15px;
  background: #43b6dc;
  transform: translateY(-50%) skew(-10deg);
}
.int-page-3 .box-navfeatures .tab-content .box-text .subtitle span {
  font-weight: 500;
  color: #43b6dc;
}
.int-page-3 .box-navfeatures .tab-content .box-text .title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0a0a0a;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .subtitle {
    font-size: 16px;
  }
  .int-page-3 .box-navfeatures .tab-content .box-text .title {
    font-size: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .desc p {
  text-align: justify;
  font-size: 16px;
  margin: 5px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .int-page-3 .box-navfeatures .tab-content .box-text .desc p {
    font-size: 14px;
    line-height: 25px;
  }
}
.int-page-3 .box-navfeatures .tab-content .box-text .list {
  margin: 10px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 0;
}
.int-page-3 .box-navfeatures .tab-content .box-text .list li i {
  margin-right: 5px;
  font-size: 20px;
  background-color: #fff;
  color: #43b6dc;
}
.int-page-3 .box-navfeatures .tab-content .box-text .btn-four {
  margin-top: 10px;
  padding: 8px 20px;
}
.int-page-3 .section-title02 {
  position: relative;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  z-index: 1;
}
.int-page-3 .section-title02 .icon {
  width: 120px;
  opacity: 1;
  z-index: -1;
}
.int-page-3 .section-title02 .subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  background: linear-gradient(90deg, #43b6dc 45%, #0a0a0a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .subtitle {
    font-size: 16px;
  }
}
.int-page-3 .section-title02 .title {
  font-size: 45px;
  font-weight: 800;
  color: #2c2b2b;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .int-page-3 .section-title02 .title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .int-page-3 .section-title02 .title {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .int-page-3 .section-title02 .title {
    font-size: 22px;
  }
}
.int-page-3 .section-title02 .title.color-gradint {
  background: linear-gradient(90deg, #43b6dc 45%, #0a0a0a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-page-3 .section-title02 .desc {
  margin: 5px 0;
}
.int-page-3 .section-title02 .desc p {
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  margin: 0;
}
.int-page-3 .style-img01 {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border: 1px solid #43b6dc;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  height: 415px;
  width: 90%;
}
.int-page-3 .style-img01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 60px;
  height: 70%;
  background: #43b6dc;
  background: linear-gradient(180deg, #43b6dc 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.int-page-3 .style-img01::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -3%;
  width: 250px;
  height: 80%;
  border-radius: 5%;
  transform: rotate(0deg);
  background: radial-gradient(farthest-side at -33.33% 50%, rgba(0, 0, 0, 0) 52%, #0a0a0a 54% 57%, rgba(0, 0, 0, 0) 59%) 0 40px, radial-gradient(farthest-side at 50% 133.33%, rgba(0, 0, 0, 0) 52%, #0a0a0a 54% 57%, rgba(0, 0, 0, 0) 59%) 40px 0, radial-gradient(farthest-side at 133.33% 50%, rgba(0, 0, 0, 0) 52%, #0a0a0a 54% 57%, rgba(0, 0, 0, 0) 59%), radial-gradient(farthest-side at 50% -33.33%, rgba(0, 0, 0, 0) 52%, #0a0a0a 54% 57%, rgba(0, 0, 0, 0) 59%), #fefeff;
  background-size: 17.1416327405px 80px, 80px 17.1416327405px;
  opacity: 0.5;
  z-index: -1;
}
.int-page-3 .style-img01 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5%;
  width: 110%;
  height: 90%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.int-page-4 .box-img {
  margin-bottom: 20px;
  height: 450px;
}
.int-page-4 .box-img .prodintSwiper {
  width: 100%;
  height: 100%;
}
.int-page-4 .service-content .titles1 {
  font-size: 26px;
  margin: 15px 0;
  color: #0a0a0a;
}
.int-page-4 .service-content .titles2 {
  color: #0a0a0a;
  font-size: 24px;
  margin: 15px 0;
}
.int-page-4 .service-content p {
  font-size: 16px;
  text-align: justify;
  color: #000;
}
.int-page-4 .service-details-card {
  padding: 20px;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1019607843);
  display: flex;
  align-items: start;
  border-left: 5px solid #43b6dc;
  margin: 20px 0;
}
.int-page-4 .service-details-card .icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #f2f2f2;
  font-size: 35px;
  color: #43b6dc;
}
.int-page-4 .service-details-card .details {
  margin-left: 20px;
}
.int-page-4 .service-details-card .details h2,
.int-page-4 .service-details-card .details h3 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 10px;
}
.int-page-4 .service-details-card .details p {
  font-size: 16px;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria {
  padding: 20px 30px;
  margin-bottom: 10px;
  background-color: rgba(238, 238, 238, 0.9333333333);
}
.int-page-4 .sidebar02 .box-categoria .cat-title {
  font-size: 30px;
  font-weight: 600;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .box-categoria ul {
  margin-bottom: 10px;
}
.int-page-4 .sidebar02 .box-categoria ul li {
  padding: 18px 25px;
  list-style: none;
  background: #fff;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  overflow: hidden;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .box-categoria ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #000;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover {
  transform: scale(1.03);
  background: #43b6dc;
}
.int-page-4 .sidebar02 .box-categoria ul li:hover a {
  color: #fff;
}
.int-page-4 .sidebar02 .sidebar-cta {
  position: relative;
  padding: 20px 30px;
  margin: 20px 0;
  height: 450px;
}
.int-page-4 .sidebar02 .sidebar-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.int-page-4 .sidebar02 .sidebar-cta img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  z-index: 2;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #43b6dc;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner h2,
.int-page-4 .sidebar02 .sidebar-cta .content-inner h3 {
  color: #fff;
  font-size: 26px;
  margin: 15px 0;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a {
  padding: 15px 30px;
  background-color: #43b6dc;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}
.int-page-4 .sidebar02 .sidebar-cta .content-inner a:hover {
  background-color: #fff;
  color: #43b6dc;
}
.int-page-4 .swiper-button-prev,
.int-page-4 .swiper-button-next {
  position: absolute;
  top: 55%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
}
.int-page-4 .swiper-button-prev::after,
.int-page-4 .swiper-button-next::after {
  font-size: 20px;
  color: #000018;
  font-weight: 600;
}

.map-site ul li {
  margin-bottom: 10px;
}
.map-site ul li i {
  color: #43b6dc;
}
.map-site ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9em;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.map-site ul li a:hover {
  color: #43b6dc;
  padding-left: 5px;
}

.politica-de-privacidade h2 {
  margin-top: 15px;
}

.lgpd {
  position: fixed;
  bottom: 4%;
  left: 2%;
  max-width: 360px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 9999;
}
.lgpd .title {
  font-weight: 600;
  color: rgb(31, 41, 55);
}
.lgpd .description {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(75, 85, 99);
}
.lgpd .description a {
  color: rgb(59, 130, 246);
}
.lgpd .description a:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.lgpd .actions {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-shrink: 0;
}
.lgpd .actions .pref {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(31, 41, 55);
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}
.lgpd .actions .pref:hover {
  color: rgb(156, 163, 175);
}
.lgpd .actions .pref:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.lgpd .actions .accept {
  font-size: 0.75rem;
  line-height: 1rem;
  background-color: rgb(17, 24, 39);
  font-weight: 500;
  border-radius: 0.5rem;
  color: #fff;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  cursor: pointer;
  border: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.lgpd .actions .accept:hover {
  background-color: rgb(55, 65, 81);
}
.lgpd .actions .accept:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/*# sourceMappingURL=style.css.map */
