*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#0f0f0f;
    color:#f5f5f5;
    line-height:1.6;
}

header{
    background:#111;
    padding:20px 10%;
    position:sticky;
    top:0;
    z-index:1000;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h2{
    color:#d4a15a;
}

nav ul{
    list-style:none;
    display:flex;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
}

nav a:hover{
    color:#d4a15a;
}

.hero{
    text-align:center;
    padding:80px 20px;
    background:linear-gradient(to bottom,#111,#1b1b1b);
}

.logo{
    width:220px;
    margin-bottom:20px;
}

.hero h1{
    font-size:3rem;
    color:#d4a15a;
    margin-bottom:15px;
}

.hero-text{
    max-width:700px;
    margin:auto;
    margin-top:20px;
}

.badge{
    display:inline-block;
    margin-top:25px;
    background:#d4a15a;
    color:#000;
    padding:12px 24px;
    border-radius:30px;
    font-weight:bold;
}

.section{
    padding:80px 10%;
}

.section h2{
    text-align:center;
    color:#d4a15a;
    margin-bottom:30px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.product-card{
    background:#1b1b1b;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    padding-bottom:20px;
}

.product-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.product-card h3{
    margin:20px 0 10px;
    color:#d4a15a;
}

.product-card span{
    display:block;
    margin-top:15px;
    font-weight:bold;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.feature{
    background:#1b1b1b;
    padding:25px;
    border-radius:10px;
    text-align:center;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    border-radius:10px;
}

.contact{
    text-align:center;
}

.whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:30px;
    font-weight:bold;
}

footer{
    text-align:center;
    padding:25px;
    background:#111;
    color:#999;
}

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2rem;
    }
}