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

body{
background:#0f0f0f;
color:#ffffff;
}


 html{
    scroll-padding-top:70px;
  }

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

header{
  background:#111;
  border-bottom:1px solid #222;
  position:sticky;
  top:0;
  z-index:100;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
transition: 0.3s;
}


nav a:hover{
color:#f59e0b;

}


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


.hero{
text-align:center;
padding:120px 40px;
background:url("https://images.unsplash.com/photo-1550547660-d9450f859349?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.6);
}

.hero h1,
.hero p,
.hero .btn{
position:relative;
z-index:1;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

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

.btn{
background:#f59e0b;
color:black;
padding:12px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:0.3s;
margin-top: 25px;
}

.btn:hover{
background:#fbbf24;
transform:translateY(-2px) scale(1.02);
}

.menu{
padding:80px 40px;
text-align:center;
}

.menu h2{
margin-bottom:40px;
font-size:32px;
}

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

.card{
background:#1a1a1a;
border-radius:10px;
overflow:hidden;
width:280px;
transition:0.3s;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
}

.card h3{
margin:15px 0 10px 0;
}

.card p{
padding:0 15px 20px 15px;
color:#bbb;
}

.card:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 15px 35px rgba(0,0,0,0.7);
}

.sobre{
padding:80px 40px;
text-align:center;
max-width:800px;
margin:auto;
}


.avaliacoes{
padding:80px 40px;
text-align:center;
background:#111;
}

.reviews{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.review{
max-width:350px;
background:#1a1a1a;
padding:25px;
border-radius:10px;
transition:0.3s;
}


.review:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.stars{
color:#f59e0b;
font-size:20px;
margin-bottom:10px;
}


.contato{
padding:80px 40px;
text-align:center;
background:#111;
}

footer{
text-align:center;
padding:25px;
background:#000;
margin-top:40px;
}

.social{
margin:20px 0;
}

.social{
margin:20px 0;
}

.social a{
font-size:22px;
margin:0 10px;
text-decoration:none;
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:#ffffff;
  text-shadow: 1px 1px 0 #25F4EE, -1px -1px 0 #FE2C55;
}

.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:white;
  font-size:32px;
  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.4);
  text-decoration:none;
  transition:0.3s;
  z-index:999;
}

.whatsapp-float i{
color:white;
font-size:26px;
}

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




/* responsivo */

@media (max-width:768px){

.container{
flex-direction:column;
gap:15px;
}

.menu-toggle{
  display:block;
}


nav{
  display:none;
  flex-direction:column;
  background:#111;
  position:absolute;
  top:70px;
  right:20px;
  padding:20px;
  border-radius:10px;
  box-shadow:0 15px 40px rgba(0,0,0,0.8);
  border:1px solid rgba(255,255,255,0.05);
}
nav.active{
  display:flex;
}

nav a{
  margin:10px 0;
}


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

.hero{
padding:80px 20px;
}

.hero h1{
font-size:34px;
}

.cards{
flex-direction:column;
align-items:center;
}

.card{
width:90%;
}

 html{
    scroll-padding-top:70px;
  }



}