@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face{
  font-family: 'BankGothic Lt BT';
  src: url('../fonts/bankgothic.TTF') format('truetype');
}

/* VARIÁVEIS */

:root{
  --main-bg: #111111;
  --text-color: #fff;
  --light-text: #ffffffd0;
  --secondary-text: #111;
}

/* BASE */

html{
  scroll-behavior: smooth;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

::-webkit-scrollbar{
  width: 8px;
}

::-webkit-scrollbar-track{
  background: transparent;
}

::-webkit-scrollbar-thumb{
  background: var(--text-color);
}

body{
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background: var(--main-bg);
  color: var(--text-color);
}

/* WARNING */

.warning{
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  height: 20px;
  background: #1e90ff;
}

.warning h5{
  text-align: center;
  color: #111;
  font-size: 11px;
}

/* NAVBAR */

nav{
  padding: 20px 6%;
  max-width: 1280px;
  display: flex;
  position: fixed;
  top: 20px; /* abaixo da faixa de aviso */
  z-index: 99;
  left: 50%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  transform: translateX(-50%);
  box-sizing: border-box;
  transition: .3s;
  background: transparent;
}

nav h1{
  z-index: 100;
}

nav.active{
  padding: 16px 6%;
  background: var(--main-bg);
  backdrop-filter: blur(18px);
}

nav h1#navbarTitle{
  font-family: 'BankGothic Lt BT', sans-serif;
}

nav img#navlogo{
  max-width: 100px;
}

nav ul{
  display: flex;
}

nav ul li{
  list-style: none;
  margin-right: 3.5vw;
  position: relative;
}

nav ul li a{
  color: var(--text-color);
  text-decoration: none;
  cursor: none;
}

nav ul li::before{
  position: absolute;
  content: '';
  bottom: -3px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--text-color);
  border-radius: 3px;
  transition: .2s;
  transition-delay: .1s;
}

nav ul li:hover::before{
  left: 0;
  right: 0;
}

nav div{
  display: flex;
  flex-direction: column;
}

nav div span{
  width: 30px;
  height: 4px;
  position: relative;
  background: var(--text-color);
  border-radius: 3px;
}

nav div span:nth-child(1){
  margin: 6px;
}

/* ========= HOME ========= */

section{
  max-width: 1280px;
  padding: 90px 6% 20px 6%;
  margin: auto;
  box-sizing: border-box;
}

.hearder{
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: auto;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  padding-top: 40px;
}

.parallaxDiv{
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.parallaxDiv img{
  position: absolute;
  width: 50%;
  left: 20%;
  z-index: -1;
  transition: .1s;
}

.hearder .header_txt{
  width: 80%;
}

.header_txt h1{
  font-size: 3.3rem;
  max-width: 600px;
  font-weight: 500;
  line-height: 66px;
  letter-spacing: -2px;
}

.header_txt #heroHead{
  transition-delay: .3s;
}

.header_txt .playButton{
  background: transparent;
  border: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  max-width: 200px;
  border-radius: 30px;
  padding: 12px;
  margin-top: 60px;
}

.header_txt .playButton img{
  max-width: 40px;
}

.header_txt .playButton p{
  font-size: 12px;
  margin-left: 20px;
}

.absoluteHero{
  max-width: 200px;
  display: flex;
  position: relative;
  height: 90vh;
  padding: 20px 0;
  flex-direction: column;
  justify-content: space-between;
}

.absoluteHero h1{
  position: absolute;
  top: 40%;
  left: -120%;
  font-size: 12rem;
  font-weight: 600;
  z-index: -10;
  color: var(--main-bg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: skyblue;
  transition: transform .3s ease-out;
}

.absoluteHero h6{
  position: absolute;
  top: 75%;
  right: 305%;
  font-size: 12rem;
  font-weight: 600;
  z-index: -10;
  color: var(--main-bg);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: skyblue;
}

.absoluteHero .absoluteTxt{
  margin-bottom: -40px;
}

.absoluteTxt h2{
  margin-top: 0px;
  font-weight: 600;
  font-size: 17px;
}

.absoluteTxt p{
  color: var(--light-text);
  font-size: 12px;
  margin: 16px 0;
}

.absoluteTxt .headerProfiles{
  display: flex;
  transform: translateX(10px);
}

#playvideo{
  text-decoration: none;
  color: var(--text-color);
}

.headerProfiles img{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--text-color);
  margin-left: -10px;
}

.headerProfiles img:nth-child(2){
  z-index: 1;
}

.headerProfiles img:nth-child(1){
  z-index: 2;
}

.headerProfiles .additionalCount{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--text-color);
  margin-left: -10px;
  z-index: -1;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  font-size: 13px;
  align-items: center;
}

#scrollDown{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: none;
}

#scrollDown span{
  font-size: 16px;
  border: 1px solid white;
  border-radius: 50%;
  padding: 12px;
  position: relative;
}

/* ========= NEON CARDS ========= */

.neonContainer{
  margin: 20px auto;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-around;
}

.neon_div{
  display: flex;
  flex-direction: column;
  max-width: 230px;
  text-align: center;
  padding: 26px;
  border-radius: 30px;
  margin-bottom: 35px;
}

.neon_div:nth-child(1){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(29,41,185,0.5) 100%);
}

.neon_div:nth-child(2){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(0,49,82,0.5) 100%);
}

.neon_div:nth-child(3){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(17,30,108,0.5) 100%);
}

.neon_div:nth-child(4){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(14,77,146,0.5) 100%);
}

.neon_div:nth-child(5){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(0,128,129,0.5) 100%);
}

.neon_div:nth-child(6){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(76,81,109,0.5) 100%);
}

.neon_div span{
  font-size: 28px;
  position: relative;
  align-self: center;
  width: 27px;
}

.neon_div span::before{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 20px;
  height: 20px;
  background: var(--color);
  border-radius: 50%;
  z-index: -1;
}

.neon_div h1{
  font-weight: 400;
  font-size: 15px;
  margin: 6px;
}

/* ========= ABOUT ========= */

#about{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: center;
}

.aboutBox{
  padding-bottom: 20px;
}

.aboutBox h1{
  font-weight: 500;
  font-size: 2.41rem;
}

.aboutBox p{
  color: var(--light-text);
  margin: 12px 0;
  line-height: 28px;
  min-height: 100px;
}

.about_txt:nth-child(1){
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.about_txt:nth-child(2){
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.aboutImgBox{
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  padding: 0;
}

.aboutImgBox img{
  max-width: 100%;
  border-radius: 20px;
}

.about_txt h3{
  font-weight: 500;
  margin-bottom: 6px
}

.about_txt li span{
  font-size: 20px;
  color: #1e90ff;
  margin-right: 8px;
}

.about_txt ul{
  list-style: none;
  align-items: center;
}

.about_txt ul li{
  align-items: center;
  margin-bottom: 6px;
  transition: .2s;
  display: flex;
  width: fit-content;
}

.about_txt ul li:hover{
  transform: translateX(5px);
}

/* ========= SERVICES ========= */

#services{
  position: relative;
}

#services h1{
  font-weight: 500;
  font-size: 3rem;
  text-transform: uppercase;
}

.serviceContainer{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.serviceBox{
  padding: 20px;
  border-radius: 10px 50px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.serviceBox h2{
  font-weight: 500;
}

.serviceBox p{
  color: var(--light-text);
  margin: 8px 0;
  font-size: 13px;
}

.serviceBox div:nth-child(2){
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.serviceBox .serviceBtn{
  background: rgba(255,255,255,0.1);
  padding: 7px;
  border-radius: 4px;
}

.serviceBox button{
  display: flex;
  align-items: center;
  border: 2px solid var(--color);
  outline: none;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text-color);
  font-size: 18px;
  text-transform: uppercase;
  padding: 5px;
  border-radius: 4px;
}

.serviceBox button:hover{
  background: var(--color);
}

.serviceBox button span{
  margin-left: 8px;
}

.serviceBox:nth-child(1){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(29,41,185,0.5) 100%);
}

.serviceBox:nth-child(2){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(0,49,82,0.5) 100%);
}

.serviceBox:nth-child(3){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(17,30,108,0.5) 100%);
}

.serviceBox:nth-child(4){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(14,77,146,0.5) 100%);
}

.serviceBox:nth-child(5){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(0,128,129,0.5) 100%);
}

.serviceBox:nth-child(6){
  background: linear-gradient(0deg, var(--main-bg) 0%, rgba(76,81,109,0.5) 100%);
}

/* FOR BUTTONS */
.serviceBox:nth-child(1) .serviceBtn{
  background: rgba(0, 128, 255, 1);
}

.serviceBox:nth-child(2) .serviceBtn{
  background: rgba(19,151, 160, 1);
}

.serviceBox:nth-child(3) .serviceBtn{
  background: rgba(15, 82, 186, 1);
}

.serviceBox:nth-child(4) .serviceBtn{
  background: rgba(0,142,204, 1);
}

.serviceBox:nth-child(5) .serviceBtn{
  background: rgba(63, 224, 206, 1);
}

.serviceBox:nth-child(6) .serviceBtn{
  background: rgba(114, 133, 188, 1);
}

/* ========= PROJECTS ========= */

#projects h1{
  font-size: 2.5rem;
  font-weight: 500;
}

#projects h2{
  font-size: 1.2rem;
  margin-top: 15px;
}

.projects-container{
  max-width: 100%;
  padding: 40px 0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

article{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

.projects-card{
  background: rgba(255,255,255,0.05);
  padding: 20px 20px 50px;
  width: 40%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 700ms;
  margin: 10px;
}

.projects-card:hover{
  background: rgba(255,255,255,0.1);
  padding: 20px 20px 50px;
  width: 41%;
  height: 102%;
  transition: 700ms;
  cursor: none;
}

.projects-card img{
  width: 100%;
  height: 100%;
  position: relative;
  margin: 40px;
  border: 1vh solid var(--light-text);
  border-radius: 5px;
}

.projects-card span{
  color: #808387;
  font-size: 20px;
}

.projects-card .data{
  color: var(--light-text);
  font-size: 14px;
  top: 30px;
}

.projects-card h3{
  color: var(--text-color);
  font-size: 26px;
  font-weight: 600;
}

.projects-card p{
  font-size: 18px;
}

.space{
  height: 10px;
}

/* ========= TEAM ========= */

.teams h1{
  font-weight: 500;
  font-size: 2.5rem;
}

.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
  margin-top: 40px;
}

.slide-content{
  margin: 0 40px;
  overflow: hidden;
}

.card-wrapper{
  display: grid;
  grid-template-columns: repeat(2,70%);
  gap: 20px;
}

.card{
  border-radius: 10px;
  position: relative;
}

.card:hover{
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
}

.card .quotesImg{
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 40%;
  width: 60px;
  user-select: none;
}

.image-content, .card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content{
  padding: 25px 0;
}

.card-image{
  position: relative;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card-content span{
  color: #1e90ff;
  font-size: 14px !important;
  margin-bottom: 15px;
}

.name{
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
}

.description{
  font-size: 14px;
  color: var(--text-color);
  text-align: center;
}

.card-content button{
  border: none;
  font-size: 14px;
  padding: 8px 16px;
  margin: 14px;
  margin-bottom: 20px;
  border-radius: 3px;
}

.card-content button:hover{
  transition-duration: 500ms;
  background: #1e90ff;
}

/* Swiper pagination bullets */
.swiper-pagination-bullet{
  background-color: #1e90ff;
  opacity: 1;
}

.swiper-pagination-bullet-active{
  background-color: #fff !important;
}

/* ========= CONTACT US ========= */

#contact{
  position: relative;
}

#contact form{
  position: relative;
  background: repeating-conic-gradient(from var(--a), #1e90ff 0%, transparent 10%, transparent 50%);
  animation: animateForm 6s linear infinite;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: fit-content;
  margin: auto;
  z-index: 1;
  padding: 60px;
  color: var(--text-color);
}

@property --a{
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes animateForm {
  0%{
    --a:0deg;
  }100%{
    --a:360deg;
  }
}

#contact form::before{
  content: '';
  position: absolute;
  inset: 2px;
  border: 2px solid var(--main-bg);
  background: #222;
  z-index: -1;
}

#contact h1{
  font-size: 2.6em;
  text-align: center;
}

#contact p{
  color: var(--light-text);
  margin-bottom: 30px;
  text-align: center;
  max-width: 500px;
  margin: auto;
  padding-bottom: 30px;
}

#contact h1, #contact form h2{
  font-weight: 500;
}

.inputBox{
  position: relative;
  width: 280px;
  margin: 16px 0 0 0;
}

.inputBox input, .inputBox textarea{
  width: 100%;
  padding: 5px 0;
  border: none;
  border-bottom: 2px solid #1e90ff;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 14px;
  cursor: none;
  transition: .5s;
  font-family: 'Poppins', sans-serif;
  resize: none;
}

.inputBox span{
  position: absolute;
  left: 0;
  pointer-events: none;
  font-size: 1em;
  color: rgba(255, 255, 255, .25);
  transition: .5s;
  font-family: 'Poppins', sans-serif;
}

.inputBox input:valid ~ span,
.inputBox input:focus ~ span,
.inputBox textarea:valid ~ span,
.inputBox textarea:focus ~ span{
  color: #1e90ff;
  transform: translateY(-10px);
  font-size: 0.65em;
}

#contact form input[type="submit"]{
  width: 100%;
  background: #1e90ff;
  color: var(--text-color);
  border: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 12px;
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 20px;
  cursor: none;
}

#contact .backgroundObj{
  width: 60px;
  height: 60px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(#fff2, rgba(112,60,60,.2));
}

/* ALERT BOX */

.alertBox{
  position: fixed;
  bottom: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 9999;
  background: rgb(31,31,31);
}

.alertBox p{
  color: white;
  margin: 8px 0;
}

.alertBox.animAlert{
  animation: popUpAlert 3s linear;
}

@keyframes popUpAlert {
  0%{
    bottom: -60px;
  }10%{
    bottom: 0px
  }90%{
    bottom: 0px;
  }100%{
    bottom: -60px;
  }
}

/* FOOTER */

#footer{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  background: linear-gradient(rgb(31,31,31));
  padding: 30px 6%;
}

#footer div{
  display: flex;
  flex-direction: column;
  margin-top: -20px;
}

#footer div h1{
  font-family: 'BankGothic Lt BT';
  margin-bottom: 10px;
}

#footer ul{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
}

#footer ul li{
  margin: 5px 0;
}

#footer ul li a{
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  cursor: none;
  transition: 500ms;
}

#footer ul li a:hover{
  color: #1e90ff;
  transition: 500ms;
}

#social-midia{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#social-midia h2{
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

/* Font Awesome ícones sociais */
#icon-social .fa{
  margin: 30px 0px;
  font-size: 50px;
  width: 100px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 500ms;
}

#icon-social .fa:hover {
  color: #1e90ff;
  transition: 500ms;
}

.fa-linkedin{
  width: 40px;
  height: 40px;
}

#closeMenu{
  display: none;
}

/* =============== RESPONSIVO =============== */

/* Telas muito grandes */
@media (min-width:2500px){
  section{
    max-width: 2200px;
  }

  .header_txt{
    margin-top:-115%;
  }

  .absoluteHero h1{
    top: 50%;
  }

  .absoluteHero .absoluteTxt{
    margin-bottom: -120px;
  }
}

/* Ajuste para ícones sociais em telas grandes */
@media (min-width:1500px){
  #icon-social .fa{
    width: 0px;
  }
}

/* Até 900px */

@media (max-width:900px){
  .header_txt #heroHead{
    font-size: 3rem !important;
  }

  .absoluteTxt{
    margin-top: 60px;
  }

  #icon-social .fa{
    margin: 30px -20px 20px -15px; 
  }

  nav{
    padding: 10px 3%;
  }

  .absoluteHero h1{
    left: -350px;
  }

  .absoluteHero h6{
    top: 60%;
    right: 340px;
  }

  .absoluteHero .absoluteTxt{
    margin-bottom: 20px;
  }

  .card-wrapper{
    display: grid;
    grid-template-columns: repeat(2,60%);
    gap: 100px;
    text-align: center;
  }

  .warning span{
    display: none;
  }
}

/* Até 800px */

@media (max-width:800px){
  .hearder{
    height: auto;
  }

  .absoluteHero h1{
    left: -330px;
  }

  .playButton{
    width: 180px;
  }

  .absoluteHero h6{
    top: 60%;
    right: 215px;
  }

  .absoluteHero .absoluteTxt{
    margin-bottom: 20px;
  }

}

/* Até 750px - MENU MOBILE */

@media (max-width:750px) {
  #humburger{
    display: flex;
  }

  .cursor{
    display: none !important;
  }

  #navbar ul{
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding: 20px 8%;
    text-align: center;
    box-sizing: border-box;
    background-color: var(--main-bg);
    transition: .3s;
  }

  #closeMenu{
    display: flex;
  }

  .parallaxDiv{
    display: none;
  }

  .card-wrapper{
    display: grid;
    grid-template-columns: repeat(1,100%);
    gap: 100px;
    text-align: center;
  }

  .absoluteHero h1{
    font-size: 180px;
    left: -280px;
  }

  #navul.activated{
    right: 0%;
  }

  #navbar ul li{
    width: fit-content;
    margin: 12px auto;
  }

  #navbar ul li a{
    color: white;
    font-weight: 500;
    font-size:1rem;
  }

  #navbar ul span#closeMenu{
    color: white;
    position: absolute;
    top: 25px;
    right: 22px;
    font-size: 40px;
  }

  .hearder{
    align-items:start;
    flex-direction: column;
  }

  .header_txt{
    margin-top: 30px;
    width: 90% !important;
  }

  .header_txt #heroHead{
    line-height: normal;
    font-size: 2.2em !important;
    padding-top: 100px;
  }

  .header_txt .playButton{
    max-width: 180px;
    margin-top: 30px;
  }

  .parallaxDiv img{
    width: 130%;
  }

  .playButton img{
    width: 35px;
  }

  .playButton p{
    font-size: 16px;
  }

  .absoluteHero{
    height: 60vh;
  }

  .absoluteHero h1{
    top: 0%;
    left: 20%;
    font-size: 150px;
  }

  .absoluteHero h6{
    display: none;
  }

  #scrollDown{
    left: 80%;
  }

  #footer{
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(1,auto);
    width: 100%;
    background: var(--main-bg);
    text-align: center;
  }

  .projects-card{
    width: 100%;
  }

  .aboutBox .about_txt{
    width: 100%;
  }
}

/* Até 560px */

@media(max-width:560px){
  #contact form{
    padding: 50px;
    width: 100%;
  }

  #contact .inputBox{
    width: 100%;
  }
}
