@font-face {
  font-family: "Mosvita";
  src: url("/fonts/Mosvita-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Mosvita";
  src: url("/fonts/Mosvita-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Mosvita";
  src: url("/fonts/Mosvita-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Mosvita";
  src: url("/fonts/Mosvita-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Mosvita";
  src: url("/fonts/Mosvita-BlackExpanded.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Mosvita";
  src: url("/fonts/Mosvita-Expanded.otf") format("opentype");
  font-weight: 910;
  font-style: normal;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #161616;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Mosvita", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header {
  width: 100dvw;
  height: 95px;
  /* background: #161616; */
  /* border-bottom: 2px solid #242424; */
  display: flex;
  justify-content: center;
}

.container {
  position: relative;
  width: 100dvw;
  max-width: 1480px;
}

.header .container {
  width: 100dvw;
  max-width: 1480px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  padding: 0 20px;
}

.header .logo {
  display: flex;
  justify-content: center;
  grid-area: 1 / 2 / 2 / 3;
}

.header .logo img {
  filter: brightness(0) invert(1);
}

.header .social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-area: 1 / 3 / 2 / 4;
}

.header .social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .social svg {
  width: 17px;
  height: 17px;
  cursor: pointer;
  fill: white;
  transition: fill 0.3s ease, transform 0.3s ease;
  padding: 8px;
}

.header .social svg:hover {
  fill: #ff6e00;
  transform: scale(1.1);
}

.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.language-switcher img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  opacity: 0.5;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
}

.language-switcher img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.language-switcher img.active {
  opacity: 1;
  filter: drop-shadow(0 0 2px) brightness(1.2);
}

.topics {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Mosvita", sans-serif;
  font-weight: 500;
  z-index: 1;
}

.topics div {
  padding: 15px 15px;
  min-width: 110px;
  text-align: center;
  cursor: pointer;
  transition: color .3s;
  will-change: font-weight;
  font-size: 14px;
}

.topics div:hover {
  color: #777;
  font-weight: 700;
}

.topics div.selected {
  color: #ff6d00;
  font-weight: 700;
}

.article {
  position: relative;
  width: 100dvw;
  height: calc(100dvh - 97px);
  min-height: 780px;
  transition: min-height .8s;
}

.article .container {
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.article .container.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.article .style.one {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 181px;
  height: 526px;
  background-image: url(../img/style0.png);
}

.article .style.two {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 254px;
  height: 100%;
  background-image: url(../img/style1.png);
  animation: animateStyleTwo 30s linear infinite;
}

@keyframes animateStyleTwo {
  from {
    background-position-y: 0px;
  }
  to {
    background-position-y: 842px;
  }
}

.article .ecosistema {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  justify-items: center;
  height: 100%;
}

.article .ecosistema .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article .ecosistema .title {
  font-family: "Mosvita", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #161616;
  background: #ff6d00;
  padding: 8px 24px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeIn .6s 100ms forwards;
}

.article .ecosistema .desc {
  font-family: "Mosvita", sans-serif;
  font-weight: 900;
  font-size: 62px;
  line-height: 62px;
  margin-bottom: 40px;
  animation: fadeIn .6s 250ms forwards;
  opacity: 0;
}

.article .ecosistema .desc .highlight-white {
  color: white;
}

.article .ecosistema .desc .highlight-orange {
  color: #ff6d00;
}

.article .ecosistema .desc span {
  font-weight: 700;
}

.article .ecosistema .desc span.a1 {
  opacity: 0;
  animation: fadeIn .6s 200ms forwards;
}

.article .ecosistema .desc span.a2 {
  opacity: 0;
  animation: fadeIn .6s 300ms forwards;
}

.article .ecosistema .subtext {
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  color: #fff;
  width: 465px;
  height: 85px;
  font-size: 22px;
  opacity: 0;
  animation: fadeIn .6s 400ms forwards;
}

.article .ecosistema .circle {
  position: relative;
  width: 423px;
  height: 423px;
  background-image: url(../img/circle.png);
  margin-right: 180px;
  opacity: 0;
  animation: fadeIn .6s 550ms forwards;
}

.article .ecosistema .circle .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  will-change: transform;
  transition: transform .3s;
  padding: 30px;
  opacity: 0;
  animation: fadeIn .6s 600ms forwards;
}

.article .ecosistema .circle .logo:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.article .ecosistema .circle .box {
  width: 54px;
  height: 54px;
  background: #ff6d00;
  border-radius: 10px;
  will-change: box-shadow, transform;
  transition: transform .3s, box-shadow .6s, opacity .4s;
  -webkit-box-shadow: 0px 0px 30px -15px rgba(255, 165, 0, 1);
  -moz-box-shadow: 0px 0px 30px -15px rgba(255, 165, 0, 1);
  box-shadow: 0px 0px 30px -15px rgba(255, 165, 0, 1);
  cursor: pointer;
}

.article .ecosistema .circle .servicos-hover .box {
  width: 54px;
  height: 54px;
  background: #ff6d00;
  border-radius: 10px;
  will-change: box-shadow, transform;
  transition: transform .3s, box-shadow .6s, opacity .4s;
  -webkit-box-shadow: 0px 0px 30px -15px rgba(255, 165, 0, 1);
  -moz-box-shadow: 0px 0px 30px -15px rgba(255, 165, 0, 1);
  box-shadow: 0px 0px 30px -15px rgba(255, 165, 0, 1);
  cursor: pointer;
}

.article .ecosistema .circle .servicos-hover .box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
}

.article .ecosistema .circle .box .name,
.article .ecosistema .circle .produtos-nome {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  width: 160px;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
}

.article .ecosistema .circle .produtos-nome {
  top: 75px;
  opacity: 0;
  animation: fadeIn .8s 800ms forwards;
}

.article .ecosistema .circle .servicos-nome {
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  width: 160px;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  opacity: 0;
  animation: fadeIn .8s 1000ms forwards;
}

.article .ecosistema .circle .box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
}

.article .ecosistema .circle .box.producao {
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translateY(-50%) scale(1);
  opacity: 0;
  animation: fadeIn .8s 900ms forwards;
}

.article .ecosistema .circle .box.tecnologia {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 0;
  animation: fadeIn .8s 1000ms forwards;
}

.article .ecosistema .circle .box.estrategia {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%) scale(1);
  opacity: 0;
  animation: fadeIn .8s 1100ms forwards;
}

.article .ecosistema .circle .box.producao:hover,
.article .ecosistema .circle .box.estrategia:hover {
  transform: translateY(-50%) scale(1.1);
}

.article .ecosistema .circle .box.tecnologia:hover {
  transform: translateX(-50%) scale(1.1);
}

.article .ecosistema .circle .box.producao:active,
.article .ecosistema .circle .box.estrategia:active {
  transform: translateY(-50%) scale(1);
}

.article .ecosistema .circle .box.tecnologia:active {
  transform: translateX(-50%) scale(1);
}

.article .ecosistema .circle .box.producao:active,
.article .ecosistema .circle .box.estrategia:active,
.article .ecosistema .circle .box.tecnologia:active {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 109, 0, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 109, 0, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(255, 109, 0, 0.3);
}

.article .ecosistema .circle .box:hover {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 109, 0, 0.5);
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 109, 0, 0.5);
  box-shadow: 0px 0px 30px 0px rgba(255, 109, 0, 0.5);
}

.article .ecosistema .circle .box:active {
  transform: scale(0.95);
  opacity: 0.9;
}

.article .ecosistema .circle .produtos {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  overflow: hidden;
  padding: 10px;
  border: 2px solid #ff6d00;
  background: #161616;
  transition: width .6s;
  opacity: 0;
  animation: fadeIn .8s 800ms forwards;
}

.article .ecosistema .circle .servicos-hover {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  overflow: hidden;
  padding: 10px;
  border: 2px solid #ff6d00;
  background: #161616;
  transition: width .6s;
  opacity: 0;
  animation: fadeIn .8s 1000ms forwards;
}

.article .ecosistema .circle .produtos .shadow {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(24, 24, 24, 1) 80%, rgba(24, 24, 24, 1) 100%);
  transition: right .6s;
  z-index: 2;
}

.article .ecosistema .circle .servicos-hover .shadow {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(24, 24, 24, 1) 80%, rgba(24, 24, 24, 1) 100%);
  transition: right .6s;
  z-index: 2;
}

.article .ecosistema .circle .produtos .scroll {
  width: auto;
  min-width: 550px;
  display: flex;
  gap: 10px;
}

.article .ecosistema .circle .servicos-hover .scroll {
  width: auto;
  min-width: 300px;
  display: flex;
  gap: 10px;
}

.article .ecosistema .circle .produtos:hover {
  width: 550px;
  height: 70px;
}

.article .ecosistema .circle .produtos:hover .shadow {
  right: -90px;
}

.article .ecosistema .circle .servicos-hover:hover {
  width: 300px;
  height: 70px;
}

.article .ecosistema .circle .servicos-hover:hover .shadow {
  right: -90px;
}

.article .ecosistema .circle .produtos .box .legend,
.article .ecosistema .circle .servicos-hover .box .legend {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
  opacity: 1;
}
/* 
.article .ecosistema .circle .produtos .box:hover .legend,
.article .ecosistema .circle .servicos-hover .box:hover .legend {
  opacity: 1;
} */

.article .ecosistema .circle .produtos .box,
.article .ecosistema .circle .servicos-hover .box {
  position: relative;
}

.splide .gradiente.one {
  position: absolute;
  top: 0;
  right: -1px;
  width: 500px;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(22, 22, 22, 0) 0%, rgba(22, 22, 22, 1) 100%); */
  z-index: 5;
  pointer-events: none;
}

.splide .gradiente.two {
  position: absolute;
  top: 0;
  left: 0px;
  width: 50px;
  height: 100%;
  /* background: linear-gradient(270deg, rgba(22, 22, 22, 0) 0%, rgba(22, 22, 22, 1) 100%); */
  z-index: 5;
  pointer-events: none;
}

.splide__arrow--prev {
  left: -4em;
}

.splide__arrow--next {
  right: -4em;
}

.splide__pagination {
  bottom: -2.5em;
}

:root {
  --background-color: black;
  --border-color: #ff6d00;
  --border-width: 0.15em;
  --edge-size: 3em;
}

.article .servicos,
.article .services {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article .servicos .title,
.article .services .title {
  width: 100%;
  color: #ff6d00;
  font-size: 62px;
  text-align: center;
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
}

.article .servicos .produtos,
.article .services .serviceslist {
  display: flex;
  margin-top: 10px;
  /* gap: 25px; */
}

.article .servicos .produtos .produto,
.article .services .serviceslist .serviceitem {
  position: relative;
  width: 390px;
  height: 558px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  filter: grayscale(100%);
  transition: filter 0.5s ease-in-out;
}

.article .servicos .produtos .produto:hover,
.article .services .serviceslist .serviceitem:hover {
  filter: grayscale(0%);
}

.article .servicos .produtos .produto::before,
.article .services .serviceslist .serviceitem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--border-color);
  z-index: -2;
  clip-path: polygon(
    var(--edge-size) 0%,
    100% 0,
    100% calc(100% - var(--edge-size)),
    calc(100% - var(--edge-size)) 100%,
    0 100%,
    0% var(--edge-size)
  );
}

.article .servicos .produtos .produto::after,
.article .services .serviceslist .serviceitem::after {
  content: "";
  position: absolute;
  inset: var(--border-width);
  z-index: -1;
  clip-path: polygon(
    var(--border-width) calc(var(--edge-size) + var(--border-width) * 0.5),
    calc(var(--edge-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(100% - calc(var(--edge-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--edge-size) + var(--border-width) * 0.5)) calc(100% - var(--border-width)),
    calc(var(--border-width)) calc(100% - var(--border-width))
  );
}

.content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0) 100%);
  width: 98%;
  font-family: "Mosvita", sans-serif;

  position: absolute;
  transform: translateY(-0.2em);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  clip-path: polygon(
    var(--edge-size) 0%,
    100% 0,
    100% calc(100% - var(--edge-size)),
    calc(100% - var(--edge-size)) 100%,
    0 100%,
    0% var(--edge-size)
  );
  z-index: 1;
}

.article .servicos .produtos .produto .video,
.article .services .serviceslist .serviceitem .video {
  position: absolute;
  width: 98%;
  height: 99%;
  object-fit: cover;
  transform: translateY(-0.2em);
  clip-path: polygon(
    var(--edge-size) 0%,
    100% 0,
    100% calc(100% - var(--edge-size)),
    calc(100% - var(--edge-size)) 100%,
    0 100%,
    0% var(--edge-size)
  );
  z-index: -1;
}

.article .servicos .produtos .produto .box,
.article .servicos .produtos .produto .text,
.article .services .serviceslist .serviceitem .box,
.article .services .serviceslist .serviceitem .text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 10px;
  border-radius: 8px;
  width: 90%;
}

.article .servicos .produtos .produto .text,
.article .services .serviceslist .serviceitem .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Mosvita", sans-serif;
  font-weight: 910;
  font-size: 38px;
  padding: 8px;
}

.article .servicos .produtos .produto .text-small,
.article .services .serviceslist .serviceitem .text-small {
  font-size: 31px;
}

.article .servicos .produtos .produto .text .inline-text,
.article .services .serviceslist .serviceitem .text .inline-text {
  display: inline-block;
  white-space: nowrap;
}

.article .servicos .produtos .produto .text .highlight,
.article .services .serviceslist .serviceitem .text .highlight {
  color: #ff6d00;
  font-weight: 900;
}

.article .servicos .produtos .produto .box,
.article .services .serviceslist .serviceitem .box {
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  z-index: 2;
}

.article .servicos .splide.prod,
.article .services .splide.servi {
  width: 1100px;
  margin-top: 30px;
}

.top-info {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  border-radius: 8px;
}

.top-info .text {
  font-family: "Mosvita", sans-serif;
  font-weight: 910;
  font-size: 32px;
  color: white;
}

.bottom-info {
  position: absolute;
  bottom: 0.5%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 98%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0) 100%);
  font-family: "Mosvita", sans-serif;
  padding: 50px 0;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--edge-size)),
    calc(100% - var(--edge-size)) 100%,
    0% 100%,
    0% calc(100% - var(--edge-size))
  );
  z-index: 1;
}

.serviceitem:hover .bottom-info {
  opacity: 1;
}

.bottom-info .description {
  font-size: 16px;
  font-family: "Mosvita", sans-serif;
  font-weight: 910;
  color: white;
  line-height: 1.5;
  padding: 3px;
}

.article .produto-detalhes .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 60px;
  color: #434343;
  gap: 20px;
}

.article .produto-detalhes .tab {
  transition: color .3s;
  padding: 10px 30px;
  cursor: pointer;
}

.article .produto-detalhes .tab:hover {
  color: #777;
}

.article .produto-detalhes .tab.selected {
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
  color: #ff6d00;
}

.article .splide.produto-carousel {
  width: 1150px;
  display: flex;
  justify-content: center;
}

.article .splide.produto-carousel .box {
  height: auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.article .splide.produto-carousel .box .context {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
}

.article .splide.produto-carousel .box .title {
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
  color: #ff6d00;
  font-size: 62px;
  text-transform: uppercase;
  text-align: center;
}

.article .splide.produto-carousel .box .subtitle {
  font-family: "Mosvita", sans-serif;
  font-weight: 600;
  color: #ff6d00;
  font-size: 32px;
  margin-top: 10px;
  text-align: center;
}

.article .splide.produto-carousel .box .desc {
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.article .splide.produto-carousel .box.gamescomlatam .title {
  font-family: "Mosvita", sans-serif;
  font-weight: 900;
  color: #ff6d00;
  font-size: 52px;
  text-transform: uppercase;
  text-align: center;
}

.article .splide.produto-carousel .box.sinuca .title {
  font-family: "Mosvita", sans-serif;
  font-weight: 900;
  color: #ff6d00;
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
}

.article .splide.produto-carousel .box.gamescomlatam .desc {
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  white-space: pre-line;
  text-align: center;
}

.article .splide.produto-carousel .box .highlight-number {
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
  color: #ff6d00;
  font-size: 48px;
  margin-top: 20px;
  text-align: center;
}

.article .splide.produto-carousel .box .sub-info {
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 32px;
  text-align: center;
}

.splide.produto-carousel .gradiente.one,
.splide.produto-carousel .gradiente.two {
  width: 20px;
}

.article .produto-detalhes .tabs.smallpro {
  font-size: 18px;
  gap: 15px;
  margin-top: 0%;
}

.article .produto-detalhes .tabs.smallpro .tab {
  padding: 6px 0px;
  font-size: 16px;
}

.article .contatos {
  display: flex;
  gap: 90px;
}

.article .contatos .form {
  display: flex;
  flex-direction: column;
}

.article .contatos .form .title {
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
  font-size: 68px;
  color: #ff6d00;
  line-height: 65px;
  margin-bottom: 20px;
}

.article .contatos .form input,
.article .contatos .form textarea {
  border: none;
  outline: none;
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background: #242424;
  border: 1px solid #434343;
  border-radius: 5px;
  padding: 8px 14px;
  margin: 4px 0;
}

.article .contatos .form .box {
  display: flex;
  justify-content: flex-end;
}

.article .contatos .form .submit {
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
  background: #ff6d00;
  padding: 8px 12px;
  border-radius: 5px;
  margin-top: 5px;
  cursor: pointer;
}

.article .contatos .line {
  width: 2px;
  height: 508px;
  background: #434343;
}

.article .contatos .contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.article .contatos .contato .icon,
.article .contatos .contato .icon svg {
  width: 75px;
  height: 75px;
  color: #ff6d00;
}

.article .contatos .contato .number {
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
  font-size: 32px;
  padding: 25px 0;
  color: #fff;
}

.article .contatos .contato .email {
  font-family: "Mosvita", sans-serif;
  font-weight: 700;
  font-size: 32px;
  padding: 25px 0;
  color: #fff;
}

.article .contatos .contato .desc {
  font-family: "Mosvita", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1700px) {
  .container {
    max-width: 1180px !important;
  }

  .article .ecosistema .circle {
    margin-right: 100px;
  }
}

@media screen and (max-width: 1630px) {
  body {
    overflow-x: hidden;
  }

  .article .ecosistema .title {
    font-size: 28px;
  }

  .article .ecosistema .desc {
    font-size: 48px;
    line-height: 50px;
  }

  .article .ecosistema .subtext {
    width: 375px;
    font-size: 18px;
  }

  .article .ecosistema .circle {
    width: 280px;
    height: 280px;
    margin-right: 250px;
    background-size: 100%;
  }

  .article .ecosistema .circle .box .name,
  .article .ecosistema .circle .produtos-nome {
    font-size: 14px;
    line-height: 16px;
    width: 118px;
  }

  .article .ecosistema .circle .logo img {
    height: 48px;
  }

  .article .ecosistema .circle .produtos-nome {
    top: 60px;
  }

  .article .style.one {
    width: 8vw;
    background-position: right;
  }

  .article .style.two {
    width: 8vw;
  }
}

@media screen and (max-width: 1350px) {
  .article .ecosistema .circle {
    margin-right: 0px;
  }

  .article .style.one,
  .article .style.two {
    display: none;
  }
}

@media screen and (max-width: 1366px) {
  .container {
    max-width: 1024px;
    padding: 0 20px;
  }

  .article .ecosistema .circle {
    margin-right: 50px;
  }

  .article .ecosistema .desc {
    font-size: 52px;
    line-height: 54px;
  }

  .article .ecosistema .subtext {
    width: 420px;
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
    padding: 0 20px;
  }

  .header .container {
    grid-template-columns: auto 1fr auto;
    padding: 0 15px;
  }

  .header .logo {
    justify-content: flex-start;
    grid-area: 1 / 1 / 2 / 2;
  }

  .header .logo img {
    height: 35px;
  }

  .header .social {
    grid-area: 1 / 3 / 2 / 4;
    gap: 15px;
  }

  .topics {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    padding: 10px 20px;
    gap: 5px;
    transform: none;
    left: 0;
  }

  .topics div {
    padding: 10px 12px;
    min-width: auto;
    font-size: 13px;
  }

  .article {
    height: auto;
    min-height: calc(100vh - 140px);
    padding: 20px;
  }

  .article .container {
    max-width: 100%;
  }

  .article .ecosistema {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 20px 0;
  }

  .article .ecosistema .text {
    align-items: center;
    text-align: center;
    order: 1;
  }

  .article .ecosistema .circle {
    order: 2;
    margin: 0 auto;
    width: 350px;
    height: 350px;
  }

  .article .ecosistema .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .article .ecosistema .desc {
    font-size: 44px;
    line-height: 46px;
    margin-bottom: 30px;
  }

  .article .ecosistema .subtext {
    width: 90%;
    max-width: 500px;
    font-size: 18px;
  }

  .article .servicos .splide.prod,
  .article .services .splide.servi {
    width: 100%;
    max-width: 700px;
  }

  .article .servicos .produtos .produto,
  .article .services .serviceslist .serviceitem {
    width: 320px;
    height: 480px;
  }

  .article .servicos .produtos .produto .text,
  .article .services .serviceslist .serviceitem .text {
    font-size: 32px;
  }

  .article .servicos .produtos .produto .text-small,
  .article .services .serviceslist .serviceitem .text-small {
    font-size: 24px;
  }

  .article .contatos {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .article .contatos .line {
    display: none;
  }

  .article .contatos .form {
    width: 100%;
    max-width: 500px;
  }

  .article .contatos .form .title {
    font-size: 48px;
    line-height: 50px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 70px;
    padding: 0 15px;
  }

  .header .container {
    grid-template-columns: 1fr auto;
    padding: 0 10px;
  }

  .header .logo img {
    height: 28px;
  }

  .header .social {
    gap: 10px;
  }

  .header .social svg {
    width: 15px;
    height: 15px;
    padding: 6px;
  }

  .language-switcher img {
    width: 20px;
    height: 14px;
  }

  .topics {
    padding: 8px 15px;
    gap: 3px;
  }

  .topics div {
    padding: 8px 10px;
    font-size: 11px;
    min-width: auto;
  }

  .article {
    min-height: calc(100vh - 120px);
    padding: 15px;
  }

  .article .ecosistema {
    gap: 40px;
    padding: 15px 0;
  }

  .article .ecosistema .circle {
    width: 280px;
    height: 280px;
  }

  .article .ecosistema .circle .logo img {
    height: 42px;
  }

  .article .ecosistema .circle .box {
    width: 48px;
    height: 48px;
  }

  .article .ecosistema .circle .box img {
    width: 32px;
    height: 32px;
  }

  .article .ecosistema .circle .box .name,
  .article .ecosistema .circle .produtos-nome {
    font-size: 13px;
    line-height: 15px;
    width: 100px;
    top: 56px;
  }

  .article .ecosistema .circle .produtos {
    width: 90px;
    padding: 8px;
  }

  .article .ecosistema .circle .produtos:hover {
    width: 280px;
  }

  .article .ecosistema .circle .produtos .scroll {
    min-width: 280px;
    gap: 8px;
  }

  .article .ecosistema .title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .article .ecosistema .desc {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 25px;
  }

  .article .ecosistema .subtext {
    font-size: 16px;
    width: 95%;
  }

  .article .servicos .title,
  .article .services .title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .article .servicos .produtos .produto,
  .article .services .serviceslist .serviceitem {
    width: 280px;
    height: 420px;
  }

  .article .servicos .produtos .produto .text,
  .article .services .serviceslist .serviceitem .text {
    font-size: 28px;
  }

  .article .servicos .produtos .produto .text-small,
  .article .services .serviceslist .serviceitem .text-small {
    font-size: 24px;
  }

  .top-info .text {
    font-size: 28px;
  }

  .bottom-info .description {
    font-size: 14px;
    padding: 2px;
  }

  .article .contatos .form .title {
    font-size: 38px;
    line-height: 40px;
  }

  .article .contatos .form input,
  .article .contatos .form textarea {
    font-size: 14px;
  }

  .article .contatos .contato .number,
  .article .contatos .contato .email {
    font-size: 24px;
    padding: 15px 0;
  }

  .article .contatos .contato .desc {
    font-size: 16px;
  }

  .article .contatos .contato .icon,
  .article .contatos .contato .icon svg {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 600px) {
  .header {
    height: 65px;
  }

  .header .logo img {
    height: 26px;
  }

  .topics {
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 10px;
  }

  .topics div {
    padding: 6px 8px;
    font-size: 10px;
  }

  .article {
    padding: 10px;
    min-height: calc(100vh - 110px);
  }

  .article .ecosistema {
    gap: 35px;
  }

  .article .ecosistema .circle {
    width: 240px;
    height: 240px;
  }

  .article .ecosistema .circle .logo img {
    height: 36px;
  }

  .article .ecosistema .circle .box {
    width: 44px;
    height: 44px;
  }

  .article .ecosistema .circle .box img {
    width: 28px;
    height: 28px;
  }

  .article .ecosistema .circle .box .name,
  .article .ecosistema .circle .produtos-nome {
    font-size: 11px;
    line-height: 13px;
    width: 85px;
    top: 52px;
  }

  .article .ecosistema .circle .produtos {
    width: 80px;
    padding: 6px;
  }

  .article .ecosistema .circle .produtos:hover {
    width: 240px;
  }

  .article .ecosistema .circle .produtos .scroll {
    min-width: 240px;
    gap: 6px;
  }

  .article .ecosistema .title {
    font-size: 20px;
    padding: 6px 18px;
    margin-bottom: 20px;
  }

  .article .ecosistema .desc {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .article .ecosistema .subtext {
    font-size: 14px;
    width: 100%;
  }

  .article .servicos .title,
  .article .services .title {
    font-size: 38px;
  }

  .article .servicos .produtos .produto,
  .article .services .serviceslist .serviceitem {
    width: 260px;
    height: 380px;
  }

  .article .servicos .produtos .produto .text,
  .article .services .serviceslist .serviceitem .text {
    font-size: 24px;
  }

  .article .servicos .produtos .produto .text-small,
  .article .services .serviceslist .serviceitem .text-small {
    font-size: 20px;
  }

  .top-info .text {
    font-size: 24px;
  }

  .bottom-info {
    padding: 30px 0;
  }

  .bottom-info .description {
    font-size: 13px;
  }

  .article .contatos .form .title {
    font-size: 32px;
    line-height: 34px;
  }

  .article .contatos .contato .number,
  .article .contatos .contato .email {
    font-size: 20px;
  }

  .article .contatos .contato .desc {
    font-size: 14px;
  }

  .article .contatos .contato .icon,
  .article .contatos .contato .icon svg {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .header {
    height: 60px;
    padding: 0 10px;
  }

  .header .container {
    padding: 0 5px;
  }

  .header .logo img {
    height: 24px;
  }

  .header .social svg {
    width: 14px;
    height: 14px;
    padding: 5px;
  }

  .language-switcher img {
    width: 18px;
    height: 12px;
  }

  .topics {
    padding: 5px 8px;
    gap: 2px;
  }

  .topics div {
    padding: 5px 6px;
    font-size: 9px;
  }

  .article {
    padding: 8px;
    min-height: calc(100vh - 100px);
  }

  .article .ecosistema {
    gap: 30px;
    padding: 10px 0;
  }

  .article .ecosistema .circle {
    width: 200px;
    height: 200px;
  }

  .article .ecosistema .circle .logo {
    padding: 20px;
  }

  .article .ecosistema .circle .logo img {
    height: 30px;
  }

  .article .ecosistema .circle .box {
    width: 40px;
    height: 40px;
  }

  .article .ecosistema .circle .box img {
    width: 24px;
    height: 24px;
  }

  .article .ecosistema .circle .box .name,
  .article .ecosistema .circle .produtos-nome {
    font-size: 10px;
    line-height: 11px;
    width: 75px;
    top: 48px;
  }

  .article .ecosistema .circle .produtos {
    width: 70px;
    padding: 5px;
    top: -20px;
  }

  .article .ecosistema .circle .produtos:hover {
    width: 200px;
  }

  .article .ecosistema .circle .produtos .scroll {
    min-width: 200px;
    gap: 5px;
  }

  .article .ecosistema .circle .produtos .box {
    width: 35px;
    height: 35px;
  }

  .article .ecosistema .circle .servicos-hover .box {
    width: 35px;
    height: 35px;
  }

  .article .ecosistema .title {
    font-size: 18px;
    padding: 5px 15px;
    margin-bottom: 18px;
  }

  .article .ecosistema .desc {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 18px;
  }

  .article .ecosistema .subtext {
    font-size: 13px;
    width: 100%;
  }

  .article .servicos .title,
  .article .services .title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .article .servicos .produtos .produto,
  .article .services .serviceslist .serviceitem {
    width: 240px;
    height: 350px;
  }

  .article .servicos .produtos .produto .text,
  .article .services .serviceslist .serviceitem .text {
    font-size: 22px;
    padding: 6px;
  }

  .article .servicos .produtos .produto .text-small,
  .article .services .serviceslist .serviceitem .text-small {
    font-size: 18px;
  }

  .top-info .text {
    font-size: 22px;
  }

  .bottom-info {
    padding: 25px 0;
  }

  .bottom-info .description {
    font-size: 12px;
  }

  .article .produto-detalhes .tabs.smallpro {
    font-size: 14px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .article .produto-detalhes .tabs.smallpro .tab {
    font-size: 13px;
    padding: 5px 8px;
  }

  .article .contatos {
    gap: 30px;
  }

  .article .contatos .form {
    width: 100%;
  }

  .article .contatos .form .title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .article .contatos .form input,
  .article .contatos .form textarea {
    font-size: 13px;
    padding: 6px 10px;
  }

  .article .contatos .contato .number,
  .article .contatos .contato .email {
    font-size: 18px;
    padding: 12px 0;
  }

  .article .contatos .contato .desc {
    font-size: 13px;
  }

  .article .contatos .contato .icon,
  .article .contatos .contato .icon svg {
    width: 45px;
    height: 45px;
  }

  .splide__arrow {
    width: 2em;
    height: 2em;
  }

  .splide__arrow--prev {
    left: -2em;
  }

  .splide__arrow--next {
    right: -2em;
  }
}

@media screen and (max-width: 360px) {
  .header {
    height: 55px;
  }

  .header .logo img {
    height: 22px;
  }

  .topics div {
    padding: 4px 5px;
    font-size: 8px;
  }

  .article .ecosistema .circle {
    width: 180px;
    height: 180px;
  }

  .article .ecosistema .circle .logo img {
    height: 26px;
  }

  .article .ecosistema .circle .box {
    width: 36px;
    height: 36px;
  }

  .article .ecosistema .circle .box img {
    width: 22px;
    height: 22px;
  }

  .article .ecosistema .title {
    font-size: 16px;
  }

  .article .ecosistema .desc {
    font-size: 24px;
    line-height: 26px;
  }

  .article .ecosistema .subtext {
    font-size: 12px;
  }

  .article .servicos .title,
  .article .services .title {
    font-size: 28px;
  }

  .article .servicos .produtos .produto,
  .article .services .serviceslist .serviceitem {
    width: 220px;
    height: 320px;
  }

  .article .servicos .produtos .produto .text,
  .article .services .serviceslist .serviceitem .text {
    font-size: 20px;
  }

  .article .contatos .form .title {
    font-size: 24px;
    line-height: 26px;
  }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  .article {
    min-height: auto;
    padding: 10px;
  }

  .article .ecosistema {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .article .ecosistema .text {
    align-items: flex-start;
    text-align: left;
  }

  .article .ecosistema .circle {
    width: 220px;
    height: 220px;
  }

  .article .ecosistema .desc {
    font-size: 28px;
    line-height: 30px;
  }

  .article .ecosistema .subtext {
    font-size: 13px;
  }

  .topics {
    padding: 4px 10px;
  }

  .topics div {
    padding: 4px 8px;
    font-size: 10px;
  }
}
