*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:#f7f2e8;
color:#333;
line-height:1.6;
}

header{
background:#c9a227;
color:white;
padding:20px;
text-align:center;
}

.logo{
width:180px;
max-width:90%;
display:block;
margin:0 auto 15px;
}

.hero{
padding:80px 20px;
text-align:center;
background:#f7f2e8;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
color:#8b6b2e;
}

.hero p{
font-size:20px;
max-width:900px;
margin:auto;
}

.section{
padding:60px 20px;
max-width:1200px;
margin:auto;
}

.section h2{
text-align:center;
margin-bottom:30px;
color:#8b6b2e;
}

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

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

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

.product-card h3{
padding:15px;
text-align:center;
}

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

.feature{
background:white;
padding:20px;
border-radius:10px;
text-align:center;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.contact{
background:#1f2f46;
color:white;
padding:50px 20px;
text-align:center;
}

.contact a{
color:#f5d06f;
text-decoration:none;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}

footer{
background:#111;
color:white;
text-align:center;
padding:15px;
}

@media(max-width:768px){
.hero h1{
font-size:32px;
}
}
