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

html{
    scroll-behavior:smooth;
}

body{
    background:#0b0b0b;
    color:#fff;
    font-family:'Montserrat', sans-serif;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(8,8,8,0.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(212,175,55,0.18);
}

.navbar{
    max-width:1320px;
    margin:auto;
    padding:22px 34px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#d4af37;
    letter-spacing:2px;
}

.menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.menu a{
    color:#f5f1e8;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1.4px;
    text-transform:uppercase;
    transition:0.3s;
}

.menu a:hover{
    color:#d4af37;
}

.menu-btn{
    border:1px solid #d4af37;
    padding:10px 18px;
    border-radius:30px;
    color:#d4af37 !important;
}

.hero{
    min-height:100vh;
    position:relative;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.45), rgba(0,0,0,0.78)),
        url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?q=80&w=1800&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:130px 34px 80px;
}

.hero-content{
    max-width:820px;
    margin-left:8%;
}

.tagline,
.section-title span,
.about-content span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2.5px;
    font-size:13px;
    font-weight:600;
}

.hero h1{
    font-family:'Playfair Display', serif;
    font-size:76px;
    line-height:1.05;
    margin:22px 0;
    color:#fffaf0;
}

.hero p{
    max-width:640px;
    font-size:19px;
    line-height:1.8;
    color:#e8e0d1;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:16px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-primary{
    background:#d4af37;
    color:#050505;
}

.btn-secondary{
    border:1px solid #d4af37;
    color:#d4af37;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}

.trust-bar{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    background:#14100c;
    border-top:1px solid rgba(212,175,55,0.25);
    border-bottom:1px solid rgba(212,175,55,0.25);
}

.trust-bar div{
    padding:22px;
    text-align:center;
    color:#e8d7a2;
    font-size:14px;
    letter-spacing:1px;
    border-right:1px solid rgba(212,175,55,0.18);
}

.section{
    max-width:1320px;
    margin:auto;
    padding:100px 34px;
}

.section-title{
    text-align:center;
    margin-bottom:58px;
}

.section-title h2{
    font-family:'Playfair Display', serif;
    font-size:54px;
    color:#fffaf0;
    margin-top:12px;
}

.section-title p{
    margin-top:16px;
    color:#cfc2ad;
}

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

.category-card{
    min-height:230px;
    background:linear-gradient(145deg,#17120f,#0d0d0d);
    border:1px solid rgba(212,175,55,0.22);
    border-radius:24px;
    padding:34px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    transition:0.35s;
}

.category-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.category-card h3{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#d4af37;
    margin-bottom:10px;
}

.category-card p{
    color:#d8cfbd;
}

.produto-card{
    background:#141414;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.07);
    transition:0.35s;
}

.produto-card:hover{
    transform:translateY(-10px);
    border-color:rgba(212,175,55,0.75);
}

.produto-img{
    height:390px;
    overflow:hidden;
}

.produto-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.produto-card:hover img{
    transform:scale(1.06);
}

.produto-info{
    padding:26px;
}

.produto-info h3{
    font-family:'Playfair Display', serif;
    font-size:26px;
    color:#fffaf0;
    margin-bottom:12px;
}

.produto-info p{
    color:#bdb5a7;
    line-height:1.7;
    margin-bottom:22px;
}

.produto-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
}

.preco{
    color:#d4af37;
    font-size:23px;
    font-weight:700;
}

.produto-footer a{
    color:#050505;
    background:#d4af37;
    padding:10px 18px;
    border-radius:24px;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

.empty-message{
    grid-column:1 / -1;
    text-align:center;
    padding:60px;
    background:#141414;
    border-radius:24px;
    border:1px solid rgba(212,175,55,0.22);
}

.about{
    background:
        linear-gradient(rgba(20,12,12,0.92), rgba(20,12,12,0.92)),
        linear-gradient(135deg,#2a0f16,#0b0b0b);
    padding:100px 34px;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content h2{
    font-family:'Playfair Display', serif;
    font-size:50px;
    line-height:1.2;
    margin:18px 0;
    color:#fffaf0;
}

.about-content p{
    color:#d7cbbc;
    font-size:18px;
    line-height:1.8;
}

.footer{
    padding:42px 34px;
    max-width:1320px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:28px;
    color:#cfc2ad;
    border-top:1px solid rgba(212,175,55,0.2);
}

.footer h3{
    font-family:'Playfair Display', serif;
    color:#d4af37;
    font-size:28px;
}


@media(max-width:768px){
    .menu{
        display:none;
    }

    .hero{
        text-align:center;
        justify-content:center;
    }

    .hero-content{
        margin-left:0;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-actions{
        justify-content:center;
    }

    .trust-bar{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-content h2{
        font-size:36px;
    }

    .footer{
        flex-direction:column;
        text-align:center;
    }
}

.top-bar{
    height:38px;
    background:#120f0b;
    color:#d4af37;
    border-bottom:1px solid rgba(212,175,55,0.25);
    display:flex;
    justify-content:center;
    align-items:center;
    gap:90px;
    font-size:13px;
    font-weight:600;
}

.header{
    top:38px;
}

.hero{
    padding-top:168px;
}

.footer{
    padding:60px 34px 36px;
    max-width:1320px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr 1.2fr;
    gap:38px;
    color:#cfc2ad;
    border-top:1px solid rgba(212,175,55,0.25);
}

.footer h3{
    font-family:'Playfair Display', serif;
    color:#d4af37;
    font-size:32px;
    margin-bottom:12px;
}

.footer h4{
    color:#d4af37;
    margin-bottom:14px;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.footer p,
.footer a{
    display:block;
    color:#cfc2ad;
    text-decoration:none;
    margin-bottom:9px;
    font-size:14px;
}

.footer a:hover{
    color:#d4af37;
}

.footer-bottom{
    text-align:center;
    padding:18px;
    color:#9f927d;
    border-top:1px solid rgba(212,175,55,0.15);
    font-size:13px;
}

@media(max-width:768px){
    .top-bar{
        height:auto;
        padding:10px;
        flex-direction:column;
        gap:6px;
    }

    .header{
        top:82px;
    }

    .hero{
        padding-top:210px;
    }

    .footer{
        grid-template-columns:1fr;
        text-align:center;
    }
}