/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --primary: #000000;
            --secondary: #d4af37; /* Gold */
            --text: #333333;
            --light: #f9f9f9;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Lato', sans-serif; color: var(--text); line-height: 1.6; background: var(--white); }
        h1, h2, h3, h4 { font-family: 'Cinzel', serif; color: var(--primary); }

        /* Utilities */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 100px 0; }
        .bg-light { background: var(--light); }
        .text-center { text-align: center; }
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            transition: 0.3s;
            border: 1px solid var(--primary);
        }
        .btn:hover { background: transparent; color: var(--primary); }
        .btn-gold { background: var(--secondary); border-color: var(--secondary); }
        .btn-gold:hover { background: transparent; color: var(--secondary); }

        /* Header */
        header { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; }
        .nav { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.8rem; font-weight: 700; color: var(--primary); text-decoration: none; letter-spacing: 2px; font-family: 'Cinzel', serif; }
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { color: var(--text); text-decoration: none; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; }
        .nav-links a:hover { color: var(--secondary); }
        .mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

        /* Hero */
        .hero {
            height: 85vh;
            background: url('https://images.unsplash.com/photo-1570222094114-28a9d8894b74?q=80&w=2070&auto=format&fit=crop') center/cover;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
        .hero-content { position: relative; z-index: 1; background: rgba(255,255,255,0.9); padding: 60px; max-width: 500px; margin-left: 10%; }
        .hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
        .hero p { font-size: 1.1rem; margin-bottom: 30px; color: #666; }
        .badge { display: inline-block; background: var(--secondary); color: white; padding: 5px 10px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }

        /* Collections */
        .collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
        .collection-item { position: relative; height: 500px; overflow: hidden; group; cursor: pointer; }
        .collection-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .collection-item:hover img { transform: scale(1.1); }
        .collection-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
        .collection-item:hover .collection-overlay { background: rgba(0,0,0,0.5); }
        .collection-title { color: white; font-size: 2rem; text-transform: uppercase; letter-spacing: 3px; border: 2px solid white; padding: 15px 30px; font-family: 'Cinzel', serif; }

        /* Features/Services */
        .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; margin-top: 50px; }
        .feature-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
        .feature-item h3 { margin-bottom: 10px; font-size: 1.1rem; letter-spacing: 1px; }
        .feature-item p { font-size: 0.9rem; color: #666; }

        /* Brands */
        .brands { background: var(--primary); color: white; padding: 60px 0; }
        .brands-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; opacity: 0.7; }
        .brand-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; font-family: 'Cinzel', serif; }

        /* Contact */
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .contact-details { margin-top: 30px; }
        .contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; }
        .contact-item i { color: var(--secondary); }

        /* Footer */
        footer { background: #111; color: #888; padding: 60px 0; text-align: center; font-size: 0.8rem; }

        /* Floating Button */
        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; transition: 0.3s; }
        .whatsapp-float:hover { transform: scale(1.1); }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero-content { margin: 0; max-width: 100%; padding: 40px; }
            .collections-grid, .features-grid, .contact-grid { grid-template-columns: 1fr; }
            .collection-item { height: 300px; }
            .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; text-align: center; border-bottom: 1px solid #eee; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            .brands-grid { justify-content: center; }
        }