/* ---------- WEB SITE ---------- */
body {
  background-color: var(--dark);
  /* Set the perspective to 2px. This is essentailly the simulated distance from the viewport to transformed objects.*/

}
.white {
  color: white;
}
.dark {
  color: var(--dark) !important;
}
.preto {
  color: black;
}
.grey {
  color: var(--grey);
}
.lightgrey {
  color: var(--lightgrey);
}
.blue {
  color: var(--blue);
}



@font-face {
  font-family: Teko;
  src:
    url("../_cdn/fonts/Teko-Regular.woff2") format("woff2"),
    url("../_cdn/fonts/Teko-Regular.woff") format("woff"),
    url("../_cdn/fonts/Teko-Regular.ttf") format("ttf")
    font-weight: regular;
}

/* BARRA DE ROLAGEM PERSONALIZADA */

body::-webkit-scrollbar {
  width: 0.1em;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

/*BARRA DE ROLAGEM FIM */

/* BRILHO NO BOTÃO PRINCIPAL */
.glowing-button {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
}

.glowing-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: glowEffect 4s infinite;
}

@keyframes glowEffect {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
/* BRILHO BOTAO FINAL */

.etiqueta {
  display: block;
  height: 130px;
  width: 91px;
  right: 20px;
  top: 0;
  position: fixed;
  z-index: 2;
  cursor: pointer;
}
.etiqueta img {
  height: 130px;
  width: auto;
}

.selo {
  display: block;
  height: 100px;
  width: 100px;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 10;
 
}
.selo img {
  height: 100px;
  width: auto;
}

.main {
  width: 100%;
  height: auto;
  display: flex;
}

.main_default {
  width: 100%;
  display: flex;
}

.switch {
  position: fixed;
  z-index: 3;
  top: 15px;
  left: 30px;
  display: none;
  font-weight: 400;
}

input[type="checkbox"] {
  color: var(--blue);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 2em;
}

.main_mobile {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 1;
  background-color: var(--dark);
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  transform: translateY(-80px);
}

.main_mobile img {
  height: 60px;
}
.main_mobile_logo {
  letter-spacing: 0px;
  font-size: 4em;
  text-transform: uppercase;
  /*color: #afbde2;*/
  color: var(--blue);
  padding: 10px 0 0 10px;
}

.main_header {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 0 0 0;
  align-items: center;
  width: 300px;
  height: 100vh;
  background-color: var(--dark);
  border-right: 1px solid var(--lightgrey);
  transition: 0.5s;
  z-index: 2;
}

.main_header .main_header_logo {
  width: 100%;
  margin: 20px 0 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.main_header .main_header_logo img {
  width: 150px;
}



.main_header .main_header_menu {
  font-family: "Teko", sans-serif;
  font-size: 1.2em;
  font-weight: regular;
  width: 100%;
  padding: 0px 20px 0 20px;
  text-transform: uppercase;
}
.main_header .main_header_menu ul li {
  border-bottom: 0.5px solid var(--lightgrey);
}
.main_header .main_header_menu ul li a {
  text-decoration: none;
  padding: 7px 0;
  color: var(--grey);
  display: block;
  transition: 0.5s ease;
}
.main_header .main_header_menu ul li a:hover {
  color: white;
}
.main_header .main_header_icons p {
  margin: 60px 0 0 0;
  color: var(--grey);
  text-align: center;
  font-size: 1.4em;
}
.main_header .main_header_icons p a {
  color: #9897a2;
  text-decoration: none;
  transition: 0.5s;
  margin: 0 10px 0 10px;
}
.main_header .main_header_icons p a:hover {
  color: white;
}
.main_header .main_header_icons .small_text {
  font-family: "Helvetica", sans-serif;
  margin: 20px 0;
  font-size: 0.8em;
}
.main_header .main_header_icons .small_text .azul {
  color: var(--blue);
}

.main_cta {
  display: flex;
  flex-basis: calc(100% - 300px);
  margin-left: 300px;
  width: 100%;
  height: 100vh;
  position: relative;

  background-color: #0f1131;
  background-image: url("../_images/2.jpg");
  background-blend-mode: multiply;
  opacity: 0.9;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.main_cta .landing {
  width: 100%;
  height: 100%;
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main_cta .landing video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -3;
}
.main_cta .landing .dim {
  position: absolute;
  background-color: black;
  top: -16px;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  opacity: 0.6;
  animation-delay: 2s;
}

.main_cta .landing .text {
  z-index: 1;
  color: white;
  padding: 30px;
}
.main_cta .landing .text h1 {
  font-size: 4em;
  line-height: 1em;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}
.main_cta .landing .text p {
  font-size: 2em;
  font-weight: 400;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}
.main_cta .landing .text a {
  margin: 8px 0 0 0;
  background-color: var(--blue);
  border: none;
  padding: 7px 20px 5px 20px;
  color: white;
  display: inline-flex;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.5s;
}
.main_cta .landing .text a:hover {
  color: white;
  background-color: #262530;
}
body .continua {
  margin-left: 300px;
  display: flex;
  flex-basis: calc(100% -300px);
}

h1 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

h1 span {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.subtitulo {
  font-family: "helvetica", sans-serif !important;

  font-size: 0.8em !important;
  letter-spacing: 0.1em;
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}


.btn {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
}

.btnPrincipal {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
}

/* -----------------PARALAX-------*/
.second_without_bg {
  display: flex;
  flex-basis: calc(100% - 380px);
  margin: 0px 0 0px 300px;
  padding: 40px;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paralax {
  background-image: url("../_images/empresa.jpg");
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ------- SECOND BLOCK --- */
.second {
  display: flex;
  flex-basis: calc(100% - 300px);
  margin: 0px 0 0px 300px;
  padding: 40px;
  position: relative;
}

.bg_white {
  background-color: white;
}

.second_main {
  width: 100%;
  display: flex;
  margin: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.second_main a {
  text-decoration: none;
}
.second_main a:hover {
  transition:all 1s ease;
  background-color: var(--dark);
}

.calltoaction {
  color: white;
  width: 100%;
  display: flex;
  margin: 20px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--blue);
  padding: 20px;
  border-radius: 10px;
}
.calltoaction :hover {
  transition:all 1s ease;
  color: var(--blue);
}

.callparagraph {
  font-size: 2em;
  font-weight: 400;
  line-height: 1em;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.call_small_icon {
  font-size: 2em;
  display: inline-block;
}

.call_small {
  font-family: "Helvetica", sans-serif;
  font-size: 1em;
  display: inline-block;
}


.second_main .second_main_title {
  text-align: center;
  width: 100%;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 40px 0 40px 0;
}

.subtitle {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  line-height: 1em;
  font-size: 1.7em;
  letter-spacing: 6px;
  font-weight: 400;
}
.paragraph {
  font-family: "Helvetica", sans-serif;
  font-size: 1em;
  font-weight: normal;
  text-align: left;
  
}
.paragraph_warning {
  font-family: "Helvetica", sans-serif;
  font-size: 1em;
  font-weight: normal;
  background: var(--blue);
  border-radius: 5px;
  padding: 0 10px;
  margin: 10px 20px;
}
.paragraph_title {
  font-family: "Helvetica", sans-serif;
  font-size: 1em;
  font-weight: normal;
  margin: 10px 0 0 0;
  max-width: 60%;
}
.paragraph_white {
  font-family: "Helvetica", sans-serif;
  font-size: 1em;
  margin: 20px 40px;
  text-shadow: black 1px 1px 1px;
  max-width: 60%;
}
.quarter .title {
  line-height: 0.8em;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 400;
  letter-spacing: 0px;
}
.title {
  line-height: 0.8em;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 4em;
  font-weight: 400;
  letter-spacing: 0px;
}
.iconsh1 {
  font-size: 0.7em;
  color: var(--blue);

}


.title a {
  text-decoration: none;
  color: var(--grey);
}

.title_product {
  text-decoration: none;
  color: var(--grey);
}

.title_product {
  line-height: 0.2em;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  margin: 40px 0px 0px 0px;
  font-size: 4em;
  font-weight: 400;
  letter-spacing: 0px;
}
.btn {
  margin: 8px 0 0 0;
  background-color: var(--blue);
  border: none;
  padding: 5px 10px 3px 10px;
  color: white;
  display: inline-flex;
  font-family: "Helvetica", sans-serif;
  font-size: 1em;
  font-weight: 300;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.5s;
}
.btn:hover {
  color: white;
  background-color: var(--grey);
}

.btnPrincipal {
  margin: 8px 0 0 0;
  background-color:#122343 !important;
  border: none;
  padding: 5px 10px 3px 10px;
  color: black;
  display: inline-flex;
  font-family: "Helvetica", sans-serif;
  font-size: 1em;
  font-weight: 300;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.5s;
}
.btnPrincipal:hover {
  color: white;
  background-color: #424242 !important;
}


.contorno {
  color: transparent;
  -webkit-text-stroke: 1px var(--blue);
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  line-height: 1em;
  font-size: 3em;
  font-weight: 700;
}

.second .mono {
  flex-basis: calc (100% - 41px);
  width: 100%;
  padding: 20px;
  border-right: 1px solid var(--lightgrey);
}

.second .mono_divide {
  flex-basis: calc (50% - 41px);
  max-width: 50%;
  min-width: 600px;
  padding: 20px;
  border-right: 1px solid var(--lightgrey);
  margin: auto;
  text-align: center;
}
.mono_divide input {
  background-color: var(--lightgrey);
  font-family: "Helvetica", sans-serif;
  color: var(--grey);
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 30px;
  padding: 20px;
  margin: 20px 0 0 0;
}

.mono_divide .quiz {
  font-family: "Helvetica", sans-serif;
  color: white;
  font-size: 1.8em;
  width: 50%;
}

.mono_divide input#capcha {
  width: 50%;
}

.mono_divide textarea {
  background-color: var(--lightgrey);
  font-family: "Helvetica", sans-serif;
  color: var(--grey);
  border-radius: 5px;
  width: 100%;
  border: none;
  height: 300px;
  padding: 20px;
  margin: 20px 0 0 0;
}
.warning {
  color: white;
  font-family: "Helvetica", sans-serif;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.errorMessage {
  color: red;
  font-family: "Helvetica", sans-serif;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.mono_divide button {
  margin: 8px 0 0 0;
  background-color: var(--blue);
  border: none;
  padding: 7px 40px 5px 40px;
  color: white;
  display: none;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 300;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.5s;
}
.unhidde {
  display: inline-flex;
}
.btn_icon {
  font-size: 0.5em;
  margin: auto;
  padding: 0 0 0 5px;
}

.second .third {
  flex-basis: 33.3%;
  width: 33.3%;
  padding: 20px;
  border-right: 1px solid var(--lightgrey);
}

.second .double {
  flex-basis: calc (50% - 41px);
  max-width: 50%;
  padding: 20px;
  border-right: 1px solid var(--lightgrey);
}
.second .quarter {
  flex-basis: calc (25% - 41px);
  max-width: 25%;
  padding: 20px;
  border-right: 1px solid lightgrey;
}
.second .quarter img {
  transition: 0.5s ease;
  cursor:pointer;
}
.second .quarter img:hover {
  transform: scale(1.2);
}
.centralized {
  display: flex;
  background-image: url(../_images/videoframe.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.centralized span {
  position: absolute;
  color: var(--blue);
  font-size: 4em;
  text-decoration: none;
  margin: auto;
  transition: 0.5s;
  cursor:pointer;
}

.centralized span:hover {
  transform: scale(1.5);
  color: white;
}

.centralizedTwo {
  display: flex;
  background-image: url(../_images/croquiframe.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.centralizedTwo span {
  position: absolute;
  color: var(--blue);
  font-size: 4em;
  text-decoration: none;
  margin: auto;
  transition: 0.5s;
  cursor:pointer;
}

.centralizedTwo span:hover {
  transform: scale(1.5);
  color: white;
}

article:last-child {
  border-right: none !important;
}

/* ----------- FOOTER -------------- */
.footer {
  margin-left: 300px;
  display: flex;
  flex-basis: calc(100% - 900px);
  max-width: 100%;
  height: 100px;
  border-top: 1px solid var(--lightgrey);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer p {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: var(--grey);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: 0.2s;
}


.lightbox .show {
  display: flex;
}

.lightbox .lightbox_content {
  display: flex;
  max-width: 90%;
  margin: 0 0 0 -20px;
  height: auto;
  flex-direction: column;
}

.lightbox .lightbox_content span {
  text-align: right;
  font-size: 2em;
  text-decoration: none;
  color: white;
  cursor:pointer;
  z-index: 20;
}
.lightbox .lightbox_content iframe {
  width: 80vw;
  height: 80vh;
}

.developer {
  margin-left: 300px;
  display: flex;
  flex-direction: column;
  flex-basis: calc(100% - 900px);
  max-width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 0 20px 0;
  }
  .developer a {
    text-decoration: none;
  }

  .dev_text {
    font-family: "Helvetica", sans-serif;
    font-weight: 400;
    font-size: 0.6em;
    letter-spacing: 0.1em;
    color: var(--grey);
  }
  .dev_svg img {
    width: 150px;
    z-index: 9999999999999999999999;
  }

  .dev_svg svg {
    fill: white !important;
    stroke: white;
  }


/* ---------- TELA média ----------*/

@media (max-width: 1580px) {
  .title {
  /*line-height: 0.8em;*/
  font-size: 2.5em;
  
  }
  .second .quarter {
    flex-basis: calc (50% - 41px);
    max-width: 50%;
    padding: 20px;
    border-right: 1px solid lightgrey;
  }
}


/* ---------- TELA tablet ----------*/

@media (max-width: 1200px) {
  .title {
  /*line-height: 0.8em;*/
  font-size: 1.8em;
  
  }
 
}






/* ---------- TELA PEQUENA ----------*/

@media (max-width: 64em) {
  .main_mobile {
    transform: translateX(0px);
  }

  .etiqueta {
  right: 10px;
  }

  .main_header {
    transform: translateX(-300px);
    z-index: 1;
  }
  .main_header .main_header_logo img {
  	width: 100px;
}

  .switch {
    display: block;
  }

  .switch:checked + .main_header {
    transform: translateX(0px);
    z-index: 2;
  }

  .main_cta {
    display: flex;
    flex-basis: 100%;
    margin-left: 0px;
    width: 100%;
    position: relative;
  }

  .main_cta .landing .text h1 {
    font-size: 2.8em;
  }
  .main_cta .landing .text p {
    font-size: 1.5em;
    line-height: 1.5em;
  }
  .main_cta .landing .text a {
    font-size: 2em;
  }

  .second {
    margin-left: 0;
    flex-basis: 100%;
    padding: 10px;
  }
  .second_without_bg {
    margin-left: 0;
    flex-basis: 100%;
    padding: 10px;
  }
  .second_main {
    margin: 0px;
    margin-top: 60px;
  }

  .title {
  /*line-height: 0.8em;*/
  font-size: 2.5em;
  
  }
  .paragraph_title {
    max-width: 100%;
  }

  .paragraph_white {
  font-size: 0.8em;
  letter-spacing: 1px;
  font-weight: lighter;
  margin: 20px 0px;
  text-shadow: black 1px 1px 1px;
  max-width: 90%;
}

  .centralized {
    width: 100%;
    min-height: 250px;
    justify-content: center;
    align-items: center;
  }
  .centralizedTwo {
    width: 100%;
    min-height: 250px;
    justify-content: center;
    align-items: center;
  }

  .second .mono_divide {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 280px;
    padding: 0px;
    margin: auto;
    text-align: center;
  }
  .second .mono {
    flex-basis: calc (100% - 40px);
    width: 100%;
    padding: 20px;
    border-right: none;
  }

  .second .third {
    flex-basis: 100%;
    width: 100%;
    padding: 20px;
    border-right: none;
  }

  .second .double {
    flex-basis: calc (100% - 40px);
    max-width: 100%;
    padding: 20px;
    border-right: none;
  }
  .second .quarter {
    flex-basis: calc (100% - 40px);
    max-width: 100%;
    padding: 20px;
    border-right: none;
  }

  .footer {
    margin-left: 0px;
    margin: 0 auto;
    display: flex;
    flex-basis: calc(100% - 40px);
    flex-direction: column;
    padding: 20px;
    max-width: 80%;
    height: 400px;
    border-top: 1px solid var(--lightgrey);
    justify-content: center;
    align-items: center;
    text-align: center;
  }




}
