* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Segoe UI’, sans-serif;
}
body {
background: #fff;
color: #333;
}
header {
background: #f8f8f8;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: bold;
color: #b48e5c;
}
nav a {
margin-left: 20px;
text-decoration: none;
color: #444;
}
.hero {
background: url(‘https://via.placeholder.com/1200×400’) no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
}
.hero h1 {
font-size: 48px;
margin-bottom: 10px;
}
.hero p {
font-size: 20px;
margin-bottom: 20px;
}
.btn {
background: #b48e5c;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
}
.produtos {
padding: 40px 20px;
text-align: center;
}
.produtos .grid {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 20px;
}
.produto {
background: #f5f5f5;
padding: 20px;
border-radius: 8px;
width: 250px;
}
.produto img {
width: 100%;
border-radius: 4px;
}
.sobre {
background: #fff3e6;
padding: 40px 20px;
text-align: center;
}
footer {
background: #222;
color: #eee;
text-align: center;
padding: 20px;
}