@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Orbitron:wght@400..900&family=Trispace:wght@100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');



body,
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  background-color: #111;
  max-width: 100vw; c
  box-sizing: border-box !important;
}


@keyframes textGlow {
  0% {
    text-shadow: #fff 0px 0px 18px;
  }

  30% {
    text-shadow: #fff 0px 0px 18px;
  }

  50% {
    text-shadow: #fff 0px 0px 16px;
  }

  80% {
    text-shadow: #fff 0px 0px 18px;
  }

  100% {
    text-shadow: #fff 0px 0px 16px;
  }
}

@keyframes textGlowMedium {
  0% {
    text-shadow: 0px 0px 8px;
  }

  30% {
    text-shadow: 0px 0px 7px;
  }

  50% {
    text-shadow: 0px 0px 6px;
  }

  80% {
    text-shadow: 0px 0px 8px;
  }

  100% {
    text-shadow: 0px 0px 7px;
  }
}

@keyframes textGlowSmall {
  0% {
    text-shadow: 0px 0px 3px;
  }

  30% {
    text-shadow: 0px 0px 4px;
  }

  50% {
    text-shadow: 0px 0px 2px;
  }

  80% {
    text-shadow: 0px 0px 3px;
  }

  100% {
    text-shadow: 0px 0px 4px;
  }
}

@keyframes appearUp {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#badge {
  color: #fff;
}

:root {
  /* COLOR PALLETE */ 
  --beige1: #bfbfab;
  --beige2: #9b9b9b;
  --black: #262626;
  --blue: #131626;
  --teal: #40605B;
  --darkblue: #00FFAA;
}

::selection {
  background-color: var(--darkblue);
  color: var(--blue);
}

#mouse-circle {
  position: absolute;
  width: 50px;
  height: 50px;
  margin: -32px 0px 0px -32px;
  border: 1px solid #40605B;
  border-radius: 50%;
  z-index: 80 !important;
  pointer-events: none !important;
  transition: .1s;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0);
}

.current-link {
  color: var(--darkblue);
}

.floatUp {
  margin-top: -1000px;
  transition: 1s !important;
}

#menu {
  backdrop-filter: blur(32px) !important;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.9), rgba(0, 0, 0, 0.9) );
}

.mouse-circle-grow {
  transition: .01s;
  width: 100px !important;
  height: 100px !important;

  border: 1px solid #00EFA9 !important;
}

ul li {
  white-space: nowrap !important;
}

@media (min-width:640px) {

  menu ul li {
    margin-left: 3vw;
  }

  menu {

    max-height: 8vh !important;
  }
}

#menuContent {
  /*Menu background*/
  padding: 40px 10px;

  right: 0;

  position: fixed;
  overflow-y: auto;
  height: 100vh;
  z-index: 50 !important;
  overflow-x: hidden;

  backdrop-filter: blur(12px) !important;
}

#menuContent ul li {
  /*Menu content text*/
  transition: all .4s;
  text-shadow: #ffffff8a 0px 0px 5px;
  z-index: 40;
  position: relative;
}

#menuContent ul li:hover,
ul li:hover path {
  border-color: var(--darkblue);
  color: var(--darkblue);
  fill: var(--darkblue);
}

.dropdown a {
  /*Dropdowns*/
  z-index: 40;
  position: relative;
  border: 1px dotted #fff;
  margin-top: .5rem;
  text-align: left;
  margin-bottom: .5rem;
}

.dropdown a:hover,
.dropdown a:hover path {
  border-color: var(--darkblue);
  color: var(--darkblue);
  fill: var(--darkblue);
}

.dropdown {
 
  background: rgba(0, 0, 0, 0.9) !important;
  transition: all .2s;
  z-index: 40;
  position: relative;
}

.textGlow {
  transition: all .2s;
  text-shadow: 0px 0px 5px !important;
}

.link,
li {
  text-decoration: none;
  cursor: pointer;
}

.ondesk {
  visibility: visible;
}


.onmobile {
  visibility: hidden;
  height: 0px;
  width: 0px;
  font-size: 0px;
  line-height: 0px;
}
.animation-scrollDown {
  animation: bounce 3s infinite;
}
@media (max-width:855px) {
  .animation-scrollDown {
    animation: none;
  }
  .ondesk {
    visibility: hidden;
    height: 0px !important;
    width: 0px ;
    font-size: 0px;
    
    line-height: 0px !important;
  }


  .onmobile {
    visibility: visible;
    height: inherit;
    width: inherit;
    font-size: inherit;
    line-height: inherit;
  }
}



#mainFooter {
  display: flex !important;
}


#bottomFooter {
  height: 8vh;
  width: 100%;
  color: #fff;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  background-color: var(--black);
}

p,
li {
  font-weight: initial;
}


#bottomFooter p {
  font-size: 14px;
  text-align: center;
  font-weight: 100;
  font-family: merriweather sans;
}

.animation-appear {
  height: fit-content;
  transition: 1s all;


  position: inherit;
  opacity: 1;
}

.widthScroll {
  transition: 1s;
  width: 0px;
}

.widthScrollPlay {
  transition: 1s;
  width: 120px;
}

.appearScroll {
  transition: 1s;
  opacity: 0;
}

.appearScrollPlay {
  transition: 1s;
  opacity: 1;
}

.animation-appearUp {
  animation: appearUp 1.5s forwards;
  opacity: 0;
}

.animation-ArrowDown {
  animation: arrowdown 1s infinite;
}


@keyframes cursorTypewriter {
  0% {
    border: none;
  }

  100% {}
}

.animationBlink {
  animation: cursorTypewriter 1s infinite;
}

.animation-disappear {
  position: absolute !important;
  transition: .4s all;
  opacity: 0;
}

.animation-appearRight {
  height: fit-content;
  transition: 1s all;
  width: 100vw;
  position: inherit;
  opacity: 1;
}

.animation-disappearRight {
  position: absolute !important;
  transition: .4s all;
  width: 0px !important;
  opacity: 0;
}

#btnMenuScroll {
  bottom: 0;
  height: 100px;
}

.animation-appearSize {

  height: auto;
  transition: min-height 0.4s linear;
  position: inherit;
  z-index: 40;
}

.animation-disappearSize {
  opacity: 0;
  max-height: 0px !important;
  height: 0px !important;
  overflow: hidden;
  position: absolute !important;
  transition: min-height 0.4s linear;
  z-index: 40;
}

.googleIcon {
  max-height: 1.2em;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
}

/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
/** {
  scrollbar-width: thin;
  scrollbar-color: #00A976 #111111;
}*/

/* Chrome, Edge and Safari */
html::-webkit-scrollbar {
  height: 9px;
  width: 9px;
}

html::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #111111;
}

html::-webkit-scrollbar-track:hover {
  background-color: #111111;
}

html::-webkit-scrollbar-track:active {
  background-color: #111111;
}

html::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #37927a;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #0e8966;
}

html::-webkit-scrollbar-thumb:active {
  background-color: #19ffc2;
}


/* Chrome, Edge and Safari */
div::-webkit-scrollbar {
  height: 9px;
  width: 9px;
}

div::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #2e2e2e;
}

div::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #919191;
}

div::-webkit-scrollbar-thumb:hover {
  background-color: rgb(53, 61, 59);
}

div::-webkit-scrollbar-thumb:active {
  background-color: rgb(29, 33, 32);
}

.btn1 {

  color: var(--darkblue);
  background: none;

}

.btn2 {
  background: var(--darkblue);
  color: #000 !important;


}

.btn3 {
  color: var(--darkblue);
  background: none;
  border: 5px solid #B38184;
  /* the thickness and color */
  -webkit-mask:
    conic-gradient(at 1px 1px,
      #0000 75%, #000 0) 0 0/calc(100% - 1px) calc(100% - 1px),
    linear-gradient(#000 0 0) content-box;

}


.btn2:hover,
.btn1:hover,
.btn3:hover {

  opacity: 1;
  transition: .5s;
  background: none;
  color: var(--darkblue) !important;
  box-shadow: 0px 0px 10px var(--darkblue), inset 0px 0px 10px var(--darkblue);
  text-shadow: 0px 0px 5px var(--darkblue);
}

.btn1,
.btn2 {
  transition: 1s;
  z-index: 50;
  font-weight: 600;
  width: fit-content !important;
  white-space: nowrap;
  font-family: Trispace;
  box-sizing: content-box;
  text-align: left;

  padding: 4px 8px;
  border: solid 0.2em var(--darkblue);

}


/* RESPONSIVENESS */

.text-sm {
  font-size: 1rem !important;
}

.text-md {
  font-size: 1.1rem !important;
}

.text-title {
  line-height: 1.2em !important;
  font-size: 6rem !important;
}

.text-lg {
  line-height: 1.2em !important;
  font-size: 6rem !important;
}

@keyframes arrowdown {
  0% {
    margin-top: 1em;
  }

  50% {
    margin-top: 0%;
  }

  100% {
    margin-top: 1em;
  }
}


@media (min-width:1600px) and (max-width:2720px) {
  p {
    font-size: 1.4rem;
  }

  .text-sm {
    font-size: 1.4rem !important;
    font-weight: 400;

  }

  .text-lg {
    line-height: 1.5em !important;
    font-size: 7.6rem !important;
  }

  .text-title {
    font-weight: 600;
    font-size: 7.3rem !important;
  }

  .text-md {
    font-weight: 600;
    font-size: 1.5rem !important;
  }

  .btn1,
  .btn2 {
    padding: 8px 12px;
    border-width: 2px;
  }
}

@media (min-width:1380px) and (max-width:1600px) {
  p {
    font-size: 1.4rem;
  }

  .text-sm {
    font-size: 1.2rem !important;
    font-weight: 400;

  }

  .text-title {
    line-height: 1.5em !important;
    font-size: 7rem !important;
  }

  .text-lg {
    line-height: 1.5em !important;
    font-size: 7rem !important;
  }

  .text-md {
    font-weight: 600;
    font-size: 1.4rem !important;
  }

  .btn1,
  .btn2 {
    padding: 8px 12px;
    border-width: 2px;
  }
}

@media (max-width:1379px) {

  p {
    font-size: 1.1rem;
  }

  .text-sm {
    font-size: 0.8rem !important;
  }

  .text-lg {
    line-height: 1.2em !important;
    font-size: 5.3rem !important;
  }

  .text-title {
    line-height: 1.2em !important;
    font-size: 5.3rem !important;
  }

  .text-md {
    font-size: 1.25rem !important;
  }

}

@media (max-width:641px) {
  p {
    font-size: 1.1rem;
  }

  .text-sm {
    font-size: 1rem !important;
  }

  .text-lg {
    line-height: 1em !important;
    font-size: 4.4rem !important;
  }

  .text-title {
    line-height: 1em !important;
    font-size: 4.4rem !important;
  }

  .text-md {
    font-size: 1.2rem !important;
  }

}

@media (max-width:640px) {
  p {
    font-size: 1.1rem;
  }

  .text-sm {
    font-size: 0.7rem !important;
  }

  .text-lg {
    line-height: 1em !important;
    font-size: 3.5rem !important;
  }

  .text-title {
    line-height: 1em !important;
    font-size: 3.5rem !important;
  }

  .text-md {
    font-size: 1rem !important;
  }

  .btn1,
  .btn2 {
    border-width: 1px;
  }
}
#servicesErp .serviceCard{
	background:linear-gradient(45deg, rgba(20,20,20,0.9), rgba(10,10,10,0.5));
	box-shadow:0px 0px 20px #000;
}
@media (max-width:460px) {
  p {
    font-size:1rem;
  }

  .text-sm {
    font-size: 0.6rem !important;
  }



  .text-md {
    font-size: 0.9rem !important;
  }

  .btn1,
  .btn2 {
    border-width: 1px;
  }

  .text-lg {

    line-height: 1em !important;
    font-size: 2.7rem !important;
  }

  .text-title {

    line-height: 1em !important;
    font-size: 2.5rem !important;
  }
}






.text-glitch {
  line-height: 1.6em;
  color: transparent;
  animation: textGlitch 3s infinite;
}

@keyframes textGlitch {
  0% {
    text-shadow:
      -0px 1px rgba(175, 255, 195, 80%),
      1px 1px rgba(255, 0, 0, 80%),
      -1px 1px rgba(10, 10, 255, 100%);
  }

  20% {
    text-shadow:
      -1px -1px rgba(175, 255, 195, 79%),
      1px 1px rgba(255, 0, 0, 80%),
      -1px 1px rgba(10, 10, 255, 100%);
  }

  30% {
    text-shadow:
      -1px -1px rgba(175, 255, 195, 80%),
      2px 1px rgba(255, 0, 0, 80%),
      -2px -2px rgba(10, 10, 255, 100%);
  }

  40% {
    text-shadow:
      1px -1px rgba(175, 255, 195, 70%),
      2px 1px rgba(255, 0, 0, 80%),
      -2px -1px rgba(10, 10, 255, 70%);
  }

  60% {
    text-shadow:
      -1px -1px rgba(175, 255, 195, 60%),
      -2px 0px rgba(255, 0, 0, 90%),
      2px 0px rgba(10, 10, 255, 90%);
  }

  70% {
    text-shadow:
      -1px -1px rgba(175, 255, 195, 70%),
      0px -2px rgba(255, 0, 0, 90%),
      0px -2px rgba(10, 10, 255, 80%);
  }

  80% {
    text-shadow:
      1px 1px rgba(175, 255, 195, 69%),
      -3px 0px rgba(255, 0, 0, 80%),
      3px 0px rgba(10, 10, 255, 100%);
  }

  90% {
    text-shadow:
      -1px -1px rgba(175, 255, 195, 59%),
      1px -1px rgba(255, 0, 0, 80%),
      -1px -1px rgba(10, 10, 255, 100%);
  }

  100% {
    text-shadow:
      -1px 1px rgba(175, 255, 195, 80%),
      1px 1px rgba(255, 0, 0, 80%),
      1px -1px rgba(10, 10, 255, 100%);
  }
}

/* ANIMATIONS BASED ON SEEING OR NOT */


/* Appear Left*/
.playAnimation1 {
  opacity: 0;
  transition: 2s;
}


.playAnimation1-run {
  opacity: 1 !important;
}

/* Appear Left*/
.playAnimation2 {
  opacity: 0;
  transition: 2s;
}


.playAnimation2-run {
  opacity: 1 !important;
}


.fill {
  background-color: #000;
  background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
  background-attachment: fixed;
}

select option {
  color: #000 !important;
}

input:hover,
input:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
  outline: none !important;
  transition: .4s;
  box-shadow: 0px 0px 10px var(--darkblue) inset, 0px 0px 10px var(--darkblue);
}

input,
select,
textarea {

  position: relative;
  transition: 1s;
  outline: none !important;
  background: none !important;
  color: var(--darkblue) !important;

  font-family: trispace !important;
  border: 1px solid var(--darkblue) !important;
  padding: 5px !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid white;
  -webkit-text-fill-color: var(--darkblue) !important;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

.nld-chatbot {
  z-index: 40 !important;
}




@media(max-width:730px) {
  #differs div {
    justify-content: center !important;
  }
}


#differs {
  z-index: 30;
  position: relative;
  display: flex;

  justify-content: stretch;
  background-color: #111;
}

#differs div {
  min-width: 800px;
  color: #fff;
  font-size: 22px;
  fill: #fff;
  width: 25vw;
  min-width: 100px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: column;

  font-family: ubuntu;
}

#differs div span p {
  font-size: 16px;
  z-index: 50;
  white-space: break-spaces;
}

#differs div span {
  z-index: 50;
  padding: 50px;
  max-width: 80%;
  text-align: center;
  white-space: nowrap;
}

#differs div:first-child {
  display: none;
}


@media (max-width:400px) {
  
  #successExamples figure {
    margin: 30px 20px;
    min-width: 160px;
    width: 70vw !important;
  }
}



.animation-scrollDown span {
  font-family: trispace;
  position: absolute;
  margin-right: -20px;
  font-size: 10px;
  right: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  top: 0;
}

.animation-scrollDown figure {
  font-family: trispace;
  position: absolute;
  font-size: 25px;
  margin-right: -9px;
  right: 0;
  top: 0;
  margin-top: 50px;
  writing-mode: vertical-rl;
  text-align: center;
}

@keyframes bounce {
  0% {
    margin-bottom: -60px;
  }

  60% {
    margin-bottom: -80px;
  }

  100% {
    margin-bottom: -60px;
  }
}

@media (max-width:830px) {
  .animation-scrollDown {
    position: absolute;
    left: 0;
  }

  .animation-scrollDown span {
    font-family: trispace;
    position: absolute;
    margin-right: -6px;
    font-size: 10px !important;
    left: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
    top: 0;
  }

  @keyframes bounce {
    0% {
      margin-top: 60px;
    }

    60% {
      margin-top: 80px;
    }

    100% {
      margin-top: 60px;
    }
  }

  #differs div span {
    padding: 0px 0px 50px 0px;
    max-width: 80%;
    text-align: center;
  }

  #differs {
    flex-direction: column;
    font-size: 18px;
  }

  #differs div:first-child {
    margin-top: -150px;
    display: flex !important;
    height: 10px;
    padding-bottom: 100px;
    background-color: var(--darkblue) !important;
    clip-path: polygon(0 0, 53% 0, 100% 0, 100% 80%, 50% 100%, 0 80%) !important;
  }

  #differs div:first-child::before {
    display: flex !important;
    height: 10px !important;
    background-color: var(--darkblue) !important;
    clip-path: polygon(0 0, 53% 0, 100% 0, 100% 80%, 50% 100%, 0 80%) !important;
  }

  #differs div {
    padding-top: 10px;
    background-color: var(--darkblue);
    width: 100% !important;
    padding-bottom: 15px;
    z-index: 40;
    clip-path: polygon(0 0, 53% 0, 100% 0, 100% 80%, 50% 100%, 0 80%) !important;
  }

  #differs div::before {
    width: 100% !important;
    padding-top: 10px;
    transform: none !important;
    border-left: none !important;
    height: 100% !important;
    z-index: 30;
    background-color: #111 !important;
    display: block;
    clip-path: polygon(0 0, 53% 0, 100% 0, 100% 80%, 50% 100%, 0 80%) !important;
  }


  #differs div:last-child span {
    padding-top: 30px;
  }

  #differs div:last-child {
    clip-path: polygon(100% 100%, 50% 100%, 0 100%, 0 0, 50% 20%, 100% 0) !important;
  }
}

#differs div::before {
  content: " ";
  transform: skew(-10deg) rotate(0deg);
  -webkit-transform: skew(-10deg) rotate(0deg);
  -moz-transform: skew(-10deg) rotate(0deg);
  border-left: solid 2px var(--darkblue);
  height: 100%;
  position: absolute;
  width: 25vw;
  z-index: 10;
}

#differs div::before:hover {
  background-color: var(--darkblue) !important;
}

#differs div:nth-child(2):before {
  border-left: solid 0px var(--darkblue);
}
.lineRadial{
  z-index: 15;
  position: relative;  
  max-width: 6px;
  max-height: 70px;
  width: 6px;
  height: 70px;
  background-color: #113586;
  z-index: -1;
  overflow: visible;
}
.Left {
  transform: rotate(-45deg);
}
.Middle{
  transform: rotate(90deg);
}
.Right {
  transform: rotate(45deg)
}

.Right::before{
  transform: rotate(-45deg);
  right: 0;
}

.Middle::before{
  transform: rotate(-90deg);
 
}

#line1::before{
  content: 'Controle Financeiro';
  transform: rotate(45deg);
  left: 0;
  margin: -84px 0px 0px -186px;
}
#line2::before{
  content: 'Marketing e Intranet';
  transform: rotate(-90deg);
  left: 0;
  margin: 120.61px 0px 0px -68.92px;
}
#line3::before{
  content: 'Fiscal e Contábil';
  transform: rotate(-45deg);
  left: 0;
  margin: 120.61px 0px 0px -136.117px;
}
#line4::before{
  content: 'Controle de Estoque';
  transform: rotate(-45deg);
  right: 0;
  margin:-84px -186px 0px 0px ;
}
#line5::before{
  content: 'Gestão de Projetos';
  transform: rotate(-90deg);
  right: 0;
  margin: -116.08px -124.39px  0px 0px;
}
#line6::before{
  content: 'Vendas e Faturamento';
  transform: rotate(45deg);
  right: 0;
  margin: 120.61px -136.117px 0px 0px ;
}

.lineRadial::before{
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10 !important;
  width: 200px;
  position: absolute;
  height: 70px;
  background: linear-gradient(45deg, #000011, rgb(18, 1, 44));
  color: #ffffff;
  border-top:3px solid #007aff
}