:root {
    --bg-color: #0b0b0b;
    --card-bg: #141414;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --silver: #c0c0c0;
    --silver-light: #e0e0e0;
    --text-color: #f5f5f5;
    --text-muted: #aaaaaa;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, #111, #222, #111);
    color: var(--gold);
    font-size: 0.85rem;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* HEADER */
.header {
    background-color: rgba(11, 11, 11, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    color: #fff;
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-icons a:hover {
    color: var(--gold);
}

/* HERO SECTION */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.hero-content max-width {
    max-width: 800px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-gold {
    background-color: var(--gold);
    color: #0b0b0b;
}

.btn-gold:hover {
    background-color: var(--gold-light);
}

.btn-silver {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--silver);
}

.btn-silver:hover {
    background-color: var(--silver);
    color: #0b0b0b;
}

/* DEPARTMENTS BANNER */
.departments {
    padding: 60px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dept-card {
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    transition: var(--transition);
}

.dept-card:hover {
    transform: translateY(-5px);
}

.imports-bg {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent), url('https://images.unsplash.com/photo-1526738549149-8e07eca6c147?auto=format&fit=crop&q=80&w=800') center/cover;
    border-bottom: 3px solid var(--gold);
}

.perfume-bg {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent), url('https://images.unsplash.com/photo-1523293182086-7651a899d37f?auto=format&fit=crop&q=80&w=800') center/cover;
    border-bottom: 3px solid var(--silver);
}

.dept-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
}

.dept-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.link-arrow {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--gold);
}

/* PRODUCTS SECTIONS */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-top: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    border-color: #444;
    transform: translateY(-5px);
}

.badge-gold, .badge-silver {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
}

.badge-gold {
    background-color: var(--gold);
    color: #0b0b0b;
}

.badge-silver {
    background-color: var(--silver);
    color: #0b0b0b;
}

.product-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

/* Placeholders visuais customizados para simular produtos */
.placeholder-phone { background-image: url('https://images.unsplash.com/photo-1695048133142-1a20484d2569?auto=format&fit=crop&q=80&w=600'); }
.placeholder-watch { background-image: url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&q=80&w=600'); }
.placeholder-audio { background-image: url('https://images.unsplash.com/photo-1600294037681-c80b4cb5b434?auto=format&fit=crop&q=80&w=600'); }
.placeholder-perfume1 { background-image: url('https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format&fit=crop&q=80&w=600'); }
.placeholder-perfume2 { background-image: url('https://images.unsplash.com/photo-1523293182086-7651a899d37f?auto=format&fit=crop&q=80&w=600'); }
.placeholder-perfume3 { background-image: url('https://images.unsplash.com/photo-1547887537-6158d64c35b3?auto=format&fit=crop&q=80&w=600'); }

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.parcelamento {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-buy {
    width: 100%;
    padding: 10px;
    background-color: var(--gold);
    color: #0b0b0b;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy:hover {
    background-color: var(--gold-light);
}

.silver-btn {
    background-color: var(--silver);
}

.silver-btn:hover {
    background-color: var(--silver-light);
}

/* FOOTER */
.footer {
    background-color: #050505;
    border-top: 1px solid #222;
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .grid-2, .product-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
}
/* CORREÇÕES RESPONSIVAS PARA MOBILE */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    .menu-hamburguer-btn {
        display: flex !important;
    }
    .logo {
        font-size: 1.1rem !important;
        max-width: 180px;
        line-height: 1.2;
    }
    .nav-container {
        padding: 0 15px !important;
        justify-content: space-between !important;
    }
}

.menu-hamburguer-btn {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
}