*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f8f8;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#111;
}

.logo{
color:#ffb703;
font-size:1.5rem;
font-weight:700;
}

nav{
display:flex;
gap:20px;
}

nav a{
color:white;
text-decoration:none;
}

.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('banner.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.hero h1{
font-size:4rem;
}

.hero p{
margin:20px 0;
}

.btn{
background:#ffb703;
color:#111;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

section{
padding:80px 8%;
}

h2{
text-align:center;
margin-bottom:40px;
}

.categorias{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.categorias button{
padding:12px 25px;
border:none;
background:#ffb703;
border-radius:30px;
cursor:pointer;
}

.produtos{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.produto{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.produto img{
width:100%;
height:250px;
object-fit:cover;
}

.produto h3,
.produto p,
.produto span{
padding:10px 20px;
}

.produto span{
display:block;
font-weight:bold;
color:#ff6b00;
}

.pedido{
display:block;
background:#111;
color:white;
text-align:center;
padding:15px;
text-decoration:none;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:15px;
text-align:center;
}

#contato{
background:#111;
color:white;
text-align:center;
}

footer{
background:#000;
color:white;
padding:20px;
text-align:center;
}