/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* 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-1497366216548-37526070297c?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 8%;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-content h1{
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 1.1rem;
  color: #d6d6d6;
}

/* SOBRE */

.sobre{
  width: 100%;
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-texto span,
.titulo-galeria span{
  color: #ff7a00;
  font-size: .9rem;
  letter-spacing: 2px;
}

.sobre-texto h2,
.titulo-galeria h2{
  font-size: 2.8rem;
  margin: 15px 0 25px;
}

.sobre-texto p{
  color: #bdbdbd;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sobre-imagem img{
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* GALERIA */

.galeria{
  padding: 0 8% 120px;
}

.carousel{
  margin-top: 40px;
  overflow: hidden;
  border-radius: 24px;
}

.slides{
  display: flex;
  gap: 20px;
  animation: slide 15s infinite linear;
}

.slides img{
  width: 500px;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

@keyframes slide{
  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(-500px);
  }
}

/* CARDS */

.valores{
  width: 100%;
  padding: 0 8% 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card{
  background: #121212;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 24px;
  transition: .4s;
}

.card:hover{
  transform: translateY(-10px);
  border-color: #ff7a00;
}

.card h3{
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #ff7a00;
}

.card p{
  color: #ffffff;
  line-height: 1.7;
}

/* CTA */

.cta{
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, #ff9d3f, #ff5e00);
}

.cta h2{
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta p{
  margin-bottom: 35px;
  font-size: 1.1rem;
}

.cta a{
  display: inline-block;
  padding: 16px 38px;
  background: white;
  color: #ff7300;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: .3s;
}

.cta a:hover{
  transform: scale(1.05);
}

/* RESPONSIVO */

@media(max-width: 980px){

  .sobre{
    grid-template-columns: 1fr;
  }

  .valores{
    grid-template-columns: 1fr;
  }

  .hero-content h1{
    font-size: 2.7rem;
  }

  .sobre-texto h2,
  .titulo-galeria h2,
  .cta h2{
    font-size: 2rem;
  }

  .slides img{
    width: 350px;
    height: 250px;
  }

  .menu{
    gap: 18px;
  }

}