*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:rgba(255, 255, 255, 0.9);
    
    
}

html, body {
  overflow-x: hidden;
}

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}
body{
    background-color:#020115;
    
}

.nav{
    width: 100%;
   display: flex;
   justify-content: space-between;
   padding: 16px;
   
   
 
}
.nav a{
    text-decoration: none;
}

.nav-menu li a {
  position: relative;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 2px;
  background: #ff6a00;

  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}
.logo {
    width: 139px;
    height: 89px;
}



.nav-menu{
    display: flex;
    gap: 18px;
    list-style-type: none;
    text-decoration: none;
    padding: 4vh 4vh;
}

.hero {
  height: 100vh;

  background-image:
    linear-gradient(
      to bottom,
      rgba(2,1,21,0.90) 0%,
      rgba(2,1,21,0.75) 70%,
      #020115 100%
    ),
    url("./img/soldadorBackground\ 2.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
}

.hero-title{
    text-align: center;
     letter-spacing: 2px;
    line-height: 1.3;
    padding-top: 10vh;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    
    
    
}

.hero-subtitle{
       display: flex;
    justify-content: center;
    align-items: center;
   padding-top: 22px;

}


.btn-primary {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;

  padding: 16px 32px;
  border-radius: 32px;

  background: linear-gradient(to bottom right, #F97316, #EA580C);
  color: white;
  text-decoration: none;

  box-shadow: 0 0 30px rgba(255, 106, 0, 0.35);
 margin-top: 22px;
  cursor: pointer;

  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
background: linear-gradient(to bottom right, #FF7A1A, #FF3D00);
  box-shadow: 0 0 40px rgba(255, 80, 0, 0.55);
   transform: scale(1.04);
}
.hero::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  background: #0047ff;

  filter: blur(180px);

  opacity: 0.25;

  top: -100px;
  left: -100px;

  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  background: #ff6a00;

  filter: blur(180px);

  opacity: 0.2;

  bottom: -100px;
  right: -100px;

  z-index: 1;
}

.section-header {
  padding-top: 12vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  gap: 2vh;
  
  
}
.section-header h2{
  font-size: 10vh;
  letter-spacing: 2px;
    line-height: 1.3;
}
.section-header p{
  font-size: 4vh;
  
}

.services {
  background: linear-gradient(
    to bottom,
    #020115 0%,
    #07041f 30%,
    #0b082b 100%
  );
}
.cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8vh;
  cursor: pointer;
}
.card {
  width: 290px;

  padding: 32px 24px;

  border-radius: 24px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);

  border-color: rgba(249,115,22,0.4);

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.card {
  min-height: 200px;
  gap: 4px;
}

.card {
  text-align: left;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.card img {
  width: 42px;
  height: 42px;

  padding: 10px;

  background: #F97316;

  border-radius: 12px;

  margin-bottom: 18px;

  object-fit: contain;
}

.diferenciais{
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8vh;


   background:
    linear-gradient(
      to bottom,
      #0b082b 0%,
      #020115 25%
    );

    

  
}


ul li img{
    width: 20px;

  
}

ul{
    list-style: none;
    padding: 0;
    
}

.diferenciais-cta{
  text-align: center;
  padding-top: 20px;

}

.text-soluction{
  margin-top: -22vh;
}
.experience{
  margin-top: 20px;
}

.diferenciais-text{
  padding-left: 10vh;
  padding-top: 8vh;
  
}


.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
   position: relative;
   top: -78px;
  gap: 18px;
}

.social-links img {
  width: 32px;
  height: auto;

  cursor: pointer;

  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

.copyright{
    text-align: right;
    margin-top: -6vh;
    font-weight: 100;
}

.logo-2{
  padding-left: 8vh;
  width: 30vh;
   
  }

.hero-title {
  white-space: pre-line;
}


@media screen and (max-width: 1024px){

 
  .nav-menu{
    font-size: 24px;
       
  }


  .logo{
    width: 180px;
    height: auto;
  }
  .hero-title{
    font-size: 4vh;
  }

  .hero-subtitle{
    font-size: 1.7vh;
    text-align: center;
    padding-top: 22px;

  }
  .hero .btn-primary{
      margin-top: 38px;
      
}

 
  .section-header p{
    font-size: 2.5vh;
    font-weight: 700;
    text-align: center;
    width: 100%;
  }
  .cards{
    flex-direction: column;
    align-items: center;
   
   
  }
  .card {
  gap: 8px;
     width: 50%;
      max-width: 500px;
}
  .diferenciais-text{
    align-items: center;
    text-align: center;
      margin: 0 auto;
  transform: translateX(-50px);
 
  }

  .diferenciais-text li{
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 14px;
}

.diferenciais-text ul{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2.5vh;
}

.diferenciais-text h2{
  font-size: 8vh;
  letter-spacing: 2px;
  padding-bottom: 2vh;
  line-height: 1.3;
  text-align: center;
  margin-top: -58px;
  
  
}
.diferenciais-text{
  display: flex;
  flex-direction: column;
  align-items: center;
}
  .text-soluction{
   font-size: 2.5vh;
    margin-top: 20px;
    font-weight: 400;
    padding-bottom: 14px;
  }

  .logo-2{
 width: 280px;
  padding-right: 0;
  margin-bottom: 52px;
    
  }



  footer{
   padding-bottom: 14vh;
  }
  .copyright{
    margin-top: 4px;
    font-size: 22px;
    text-align: center;
  }

.social-links {
  margin-top: -6vh;
}

.social-links img{
   width: 42px;
}
.btn-primary{
   padding: 16px 36px;
   font-size: 1rem;
}
.experience{
  padding: 26px;
  font-size: vh;
}

}

@media screen and (max-width: 768px) {

 
  .logo{
    width: 126px;
    height: 64px;
    margin-top: 32px;
  }
  .nav-menu{
    font-size: 2vh;
     
     padding-top: 52px;
     transform: translateX(-18px)
     
  }
  
  .hero-title{
    font-size: 2.7vh;
    z-index: 10;
    line-height: 1.2;
    
  }

  .btn-primary{
   padding: 18px 32px;
   font-size: 16px;
   transform: translateY(-22px);
   display: flex;
   justify-content: center;
   align-items: center;

   text-align: center;
}
  .hero-subtitle {
    text-align: center;
    font-weight: 400;
    font-size: 1.5vh;
    transform: translateY(-12px);
    line-height: 1.4;
   
  }
   .section-header h2{
    font-size: 8vh;
   }
  .section-header p {
    font-size: 2.8vh;
    text-align: center;
    font-weight: 400;
    line-height: 1.3;
  }
  .card{
   width: 70%;
    
}

  .diferenciais-text h2 {
    width: 100%;
    font-size: 6vh;
    text-align: center;

    
  }

  .text-soluction {
    font-size: 2.5vh;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 400;
      line-height: 1.3;
  }

 .logo-2 {
    width: 162px;
    position: relative;
   top: 18px;
  
  transform: translateX(-38px);
}



.btn-primary{
  transition: transform 0.2s ease;
  padding: 14px 24px;
  display: block;
 
}
.experience h2{
display: flex;
justify-content: center;
margin-top: -32px;
}

.display p{
  display: flex;
  justify-content: center;
}

 .hero::before {
  width: 350px;
  height: 350px;
  filter: blur(140px);
  opacity: 0.18;

  position: absolute;
  top: -100px;
  left: -100px;
}
  .hero::after {
  width: 420px;
  height: 420px;
  filter: blur(140px);
  opacity: 0.15;

  position: absolute;
  bottom: -120px;
  right: -120px;
}


  .section-header {
  position: relative;
}


.social-links img {
  width: 32px;
  padding-top: 18px;
  margin-top: 38px;
}



}