body{
font-family:Arial,sans-serif;
background:#f5f5f5;
margin:0;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
padding:20px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.topo{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.logo h1{
font-size:38px;
color:#ee4d2d;
margin:0;
}

.busca form{
display:flex;
gap:10px;
}

.busca input{
padding:14px;
width:300px;
border:1px solid #ccc;
border-radius:10px;
}

.busca button{
background:#ee4d2d;
color:white;
border:none;
padding:14px 20px;
border-radius:10px;
cursor:pointer;
}

.hero{
background:linear-gradient(90deg,#ee4d2d,#ff7a2f);
color:white;
padding:80px 20px;
text-align:center;
}

.hero h2{
font-size:48px;
}

.categorias{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
padding:40px 0;
}

.categoria{
background:white;
padding:12px 20px;
border-radius:12px;
text-decoration:none;
color:#333;
font-weight:bold;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

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

.card-content{
padding:20px;
}

.badge{
background:red;
color:white;
display:inline-block;
padding:6px 12px;
border-radius:20px;
font-size:12px;
margin-bottom:15px;
}

.preco{
font-size:34px;
font-weight:bold;
color:#ee4d2d;
}

.preco-antigo{
color:#999;
text-decoration:line-through;
}

.btn-comprar{
display:inline-block;
background:#ee4d2d;
color:white;
padding:16px 24px;
border-radius:12px;
text-decoration:none;
margin-top:20px;
font-weight:bold;
}

footer{
background:#222;
color:#ccc;
text-align:center;
padding:50px 20px;
margin-top:80px;
}

.produto-container{
padding:60px 0;
}

.produto{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
background:white;
padding:40px;
border-radius:20px;
}

.produto-imagem{
width:100%;
border-radius:20px;
}

.descricao{
margin:20px 0;
line-height:1.7;
}

@media(max-width:768px){

.produto{
grid-template-columns:1fr;
}

.hero h2{
font-size:36px;
}

.busca form{
flex-direction:column;
}

.busca input{
width:100%;
}

}
