:root {
    --gold: #c5a059;
    --dark-bg: #121212;
    --glass: rgba(255, 255, 255, 0.05);
    --text-light: #f5f5f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #fff; 
    color: #1a1a1a; 
    overflow-x: hidden; 
}

/* HEADER */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 8%; transition: 0.5s;
}

header.scrolled { 
    background: #fff; 
    padding: 15px 8%; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; }

header.scrolled .logo { color: var(--dark-bg); }

.nav-links a { 
    color: #fff; 
    margin-left: 30px; 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    text-decoration: none; 
}

header.scrolled .nav-links a { color: var(--dark-bg); }

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1615529182904-14819c35db37?q=80&w=2070') no-repeat center center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}

.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 40px; opacity: 0.8; }

.btn-gold {
    padding: 18px 45px; border: 1px solid var(--gold); color: #fff;
    background: transparent; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; transition: 0.4s; cursor: pointer; text-decoration: none;
    display: inline-block;
}

.btn-gold:hover { background: var(--gold); color: #fff; }

/* SEÇÃO CATÁLOGO */
.catalog { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 10px; }

.grid-catalog { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }

.catalog-item { position: relative; overflow: hidden; height: 500px; border-radius: 4px; }
.catalog-item img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
.catalog-item:hover img { transform: scale(1.1); }

.item-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff;
}

.item-overlay h3 { font-size: 1.5rem; margin-bottom: 10px; }
.item-overlay span { color: var(--gold); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; }

/* LOCALIZAÇÃO E CONTATO */
.contact-section { padding: 100px 8%; background-color: #f9f9f9; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; }
.contact-info p { font-size: 1.1rem; margin-bottom: 30px; color: #555; }
.address-box { margin-bottom: 40px; }
.address-box div { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1rem; }
.address-box i { color: var(--gold); font-size: 1.2rem; }

.btn-whatsapp-large {
    background-color: #25D366; color: #fff; padding: 20px 40px; border-radius: 4px;
    text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    display: inline-flex; align-items: center; gap: 10px; transition: 0.3s;
}

.btn-whatsapp-large:hover { background-color: #1ebe57; transform: translateY(-3px); }

.map-container { height: 400px; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

/* FOOTER */
footer { background-color: var(--dark-bg); color: #888; padding: 60px 8% 30px; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 20px; }
.footer-links { margin-bottom: 30px; }
.footer-links a { color: #888; text-decoration: none; margin: 0 15px; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); }
.copyright { font-size: 0.8rem; border-top: 1px solid #222; padding-top: 30px; }

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed; bottom: 40px; right: 40px; background: #25D366;
    width: 65px; height: 65px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 30px;
    color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.2); z-index: 1000;
    text-decoration: none;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .contact-section { grid-template-columns: 1fr; text-align: center; }
    .address-box div { justify-content: center; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .nav-links { display: none; }
}