*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;

}

body{

color:#fff;
 background:#0b0b0b;
 scroll-margin-top:100px;
}

section{
  padding:90px 40px;

scroll-margin-top:110px;

}

h2{
  font-size:34px;
  margin-bottom:20px;
}


p{
  line-height:1.7;
}
.container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
}

/* HEADER */

header{
background:#000;
position:sticky;
top:0;
z-index:100;
}

.nav-menu a{
color:#fff;
text-decoration:none;
margin-left:25px;
transition:0.3s;
}

.nav-menu a:hover{
color:#d4af37;
}



/* Hamburguer */



.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}





/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:url("https://images.unsplash.com/photo-1512690459411-b9245aed614b?w=1600") center/cover no-repeat;
position:relative;



}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
}

.hero-content{
position:relative;
z-index:1;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
  font-weight:600;
  letter-spacing:1px;
}

.hero p{
margin-bottom:30px;
color:#ccc;
}

.btn{
background:#d4af37;
color:black;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;

  border-radius:8px;
  letter-spacing:0.5px;
}

.btn:hover{
  background:#c9a227;
  box-shadow:0 8px 20px rgba(212,175,55,0.4);
  transform:translateY(-2px) scale(1.03);
}

/* Serviços */

.servicos{
  padding:80px 40px;
  text-align:center;
  background:#0a0a0a;
}

.servicos h2{
  font-size:32px;
  margin-bottom:50px;
}

.cards{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.card{
  background:#111;
  padding:30px;
  border-radius:14px;
  width:260px;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.05);
}

.card i{
  font-size:35px;
  color:#d4af37;
  margin-bottom:15px;
  transition:0.3s;
}

.card h3{
  margin-bottom:10px;
}

.card p{
  color:#bbb;
font-size: 15px;
}



.card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 50px rgba(0,0,0,0.8);
}

.card:hover i{
  transform:scale(1.2);
  color:#f5d76e;
}




/* SOBRE */



.sobre{
  padding:80px 40px;
  background:#0f0f0f;
}

.sobre-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  max-width:1100px;
  margin:auto;
}

.sobre-img img{
  width:100%;
  max-width:450px;
  border-radius:12px;
}

.sobre-texto{
  max-width:500px;
}

.sobre-texto h2{
  font-size:32px;
  margin-bottom:20px;
}

.sobre-texto p{
  color:#bbb;
  margin-bottom:15px;
}


/* Depoimentos */


.depoimentos{
  padding:80px 40px;
  text-align:center;
  background:#0a0a0a;
}

.depoimentos h2{
  margin-bottom:40px;
}

.depoimentos-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.depoimento{
  background:#111;
  padding:25px;
  border-radius:12px;
  max-width:300px;
  transition:0.3s;
  border:1px solid rgba(255,255,255,0.05);
}

.depoimento p{
  font-style:italic;
  color:#bbb;
  margin-bottom:10px;
}

.depoimento strong{
  color:#d4af37;
}



.depoimento:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
}







.cta{
  padding:80px 40px;
  text-align:center;
  background:linear-gradient(135deg,#000,#111);

}

.cta h2{
  font-size:32px;
  margin-bottom:15px;
}

.cta p{
  color:#bbb;
  margin-bottom:0;
}

.cta .btn{
  display:inline-block;
  width:auto;
  margin-top:30px;
}

/* FOOTER */


footer{
  text-align:center;
  padding:30px;
  background:#000;
}

.social a{
  font-size:22px;
  margin:0 10px;
  transition:0.3s;
}

.social a:hover{
  transform:translateY(-3px);
}

.fa-instagram{
  background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.fa-facebook{
  color:#1877F2;
}

.fa-tiktok{
  color:#fff;
}




/* Whats */


.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:white;
  font-size:30px;
  width:65px;
  height:65px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 8px 25px rgba(0,0,0,0.5);
  text-decoration:none;
  transition:0.3s;
  z-index:9999;
}

.whatsapp-float i{
  color:white;
}

.whatsapp-float:hover{
  transform:scale(1.1);
  background:#1ebe5d;
}



/* responsivo */


@media (max-width:768px){

.sobre-container{
  flex-direction:column;
  text-align:center;
}

.sobre-img img{
  max-width:100%;
}




.menu-toggle{
  display:block;
}

.nav-menu{
  position:fixed;
  top:80px;
  right:20px;

  display:flex;
  flex-direction:column;
  gap:15px;

  background:#111;
  padding:20px;
  border-radius:12px;

  opacity:0;
  transform:translateY(-10px);
  pointer-events:none;
  visibility:hidden;

  transition:0.3s ease;
}

.nav-menu.active{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
  visibility:visible;
}
html{
    scroll-padding-top:10px;
  }


}




