/* servicos.css */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

/* HEADER */

.header{
  width: 100%;
  padding: 22px 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 999;

  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* LOGO */

.logo img{
  width: 220px;
  display: block;
}

/* MENU */

.menu{
  display: flex;
  align-items: center;
  gap: 35px;
}

.menu a{
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;

  transition: .3s ease;
}

.menu a:hover{
  color: #ff7a00;
}

/* LINK ATIVO */

.menu .active{
  color: #ff7a00;
}

/* BOTÃO */

.btn-contato{
  background: linear-gradient(135deg, #ff9d3f, #ff5e00);

  padding: 14px 28px;
  border-radius: 999px;

  color: white !important;
  font-weight: 600;

  transition: .3s ease;
}

.btn-contato:hover{
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(255,122,0,0.35);
}

/* RESPONSIVO */

@media(max-width: 768px){

  .header{
    padding: 18px 5%;
  }

  .logo img{
    width: 115px;
  }

  .menu{
    gap: 18px;
  }

  .menu a{
    font-size: .85rem;
  }

  .btn-contato{
    padding: 10px 18px;
  }

}

/* HERO */

.hero{
  height: 100vh;

  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  text-align: center;

  padding: 0 8%;
}

.overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content span,
.intro-text span,
.titulo span,
.diferencial span{
  color: #ff9d3f;
  letter-spacing: 2px;
  font-size: .9rem;
}

.hero-content h1{
  font-size: 4rem;
  line-height: 1.1;
  margin: 20px 0;
}

.hero-content p{
  color: #d1d1d1;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* INTRO */

.intro{
  width: 100%;
  padding: 120px 8%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2,
.titulo h2,
.diferencial h2{
  font-size: 2.8rem;
  margin: 18px 0 25px;
}

.intro-text p,
.diferencial p{
  color: #bdbdbd;
  line-height: 1.9;
  margin-bottom: 20px;
}

.intro-image img{
  width: 100%;
  border-radius: 24px;
}

/* SERVIÇOS */

.servicos{
  padding: 0 8% 120px;
}

.titulo{
  text-align: center;
  margin-bottom: 60px;
}

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card{
  background: #121212;
  border-radius: 24px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.06);

  transition: .4s;
}

.card:hover{
  transform: translateY(-10px);
  border-color: #ff7a00;
}

.card img{
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card h3{
  padding: 25px 25px 10px;
  font-size: 1.3rem;
}

.card p{
  padding: 0 25px 30px;
  color: #bdbdbd;
  line-height: 1.8;
}

/* DIFERENCIAL */

.diferencial{
  padding: 120px 8%;
  text-align: center;

  background: #101010;
}

.diferencial-content{
  max-width: 850px;
  margin: auto;
}

/* CTA */

.cta{
  padding: 120px 8%;

  text-align: center;

  background: linear-gradient(135deg, #ff9d3f, #ff5e00);
}

.cta h2{
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p{
  max-width: 700px;
  margin: 0 auto 35px;

  line-height: 1.8;
}

.cta a{
  display: inline-block;

  padding: 16px 36px;

  background: white;
  color: #ff5e00;

  text-decoration: none;
  border-radius: 999px;

  font-weight: 600;

  transition: .3s;
}

.cta a:hover{
  transform: scale(1.05);
}

/* RESPONSIVO */

@media(max-width: 980px){

  .hero-content h1{
    font-size: 2.7rem;
  }

  .intro{
    grid-template-columns: 1fr;
  }

  .cards{
    grid-template-columns: 1fr;
  }

  .intro-text h2,
  .titulo h2,
  .diferencial h2,
  .cta h2{
    font-size: 2rem;
  }

  .menu{
    gap: 18px;
  }

}