/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-body: #FAFAFA;
            --text-main: #1A1A1A;
            --text-muted: #666666;
            --accent: #D4AF37; /* Gold */
            --accent-dark: #AA8C2C;
            --surface: #FFFFFF;
            --border: #E5E5E5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            color: var(--text-main);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography Utilities */
        .display-1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; }
        .display-2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.2; }
        .text-gold { color: var(--accent); }
        .text-center { text-align: center; }
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 3rem; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s ease;
            border: 1px solid var(--text-main);
            background: transparent;
            color: var(--text-main);
            cursor: pointer;
        }

        .btn-primary {
            background: var(--text-main);
            color: var(--surface);
            border-color: var(--text-main);
        }

        .btn-primary:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--surface);
        }

        .btn-outline {
            border-color: var(--text-main);
        }

        .btn-outline:hover {
            background: var(--text-main);
            color: var(--surface);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: 0.3s;
            background: rgba(250, 250, 250, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-main);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: 0.3s;
        }

        .nav-links a:hover::after { width: 100%; }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: var(--surface);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            transform: translateY(-100%);
            transition: 0.5s ease-in-out;
        }

        .mobile-menu-overlay.active { transform: translateY(0); }

        .mobile-menu-overlay a {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--text-main);
            text-decoration: none;
        }

        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1600172454557-4d5d36d170a7?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
            z-index: -1;
        }

        .hero-content {
            width: 50%;
            padding-right: 50px;
        }

        /* Services */
        .services-section { padding: 120px 0; }
        
        .service-item {
            border-top: 1px solid var(--border);
            padding: 40px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
            cursor: pointer;
        }

        .service-item:last-child { border-bottom: 1px solid var(--border); }

        .service-item:hover {
            background: #fff;
            padding-left: 20px;
            padding-right: 20px;
            border-color: var(--accent);
        }

        .service-item h3 { font-size: 2rem; margin: 0; }
        .service-item p { color: var(--text-muted); max-width: 400px; }
        .service-icon { font-size: 1.5rem; color: var(--accent); opacity: 0; transition: 0.3s; }
        .service-item:hover .service-icon { opacity: 1; }

        /* About */
        .about-section {
            padding: 120px 0;
            background: var(--surface);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            display: block;
            filter: grayscale(100%);
            transition: 0.5s;
        }

        .about-image:hover img { filter: grayscale(0%); }

        /* Team Section */
        .team-section { padding: 120px 0; }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .team-card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 30px;
            text-align: center;
            transition: 0.3s;
        }

        .team-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
        }

        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            filter: grayscale(100%);
            transition: 0.3s;
        }

        .team-card:hover .team-img { filter: grayscale(0%); }

        .team-card h3 { font-size: 1.2rem; margin-bottom: 5px; }
        .team-card span { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

        /* Gallery Section */
        .gallery-section { padding: 120px 0; background: var(--surface); }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 60px;
        }

        .gallery-item {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .gallery-item:hover img { transform: scale(1.1); }

        /* FAQ Section */
        .faq-section { padding: 120px 0; }
        
        .faq-container { max-width: 800px; margin: 0 auto; }
        
        .faq-item {
            border-bottom: 1px solid var(--border);
            margin-bottom: 20px;
        }

        .faq-question {
            padding: 20px 0;
            font-size: 1.2rem;
            font-family: 'Playfair Display', serif;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: 0.3s;
            color: var(--text-muted);
        }

        .faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }
        .faq-item.active .faq-question { color: var(--accent); }

        /* Contact Section */
        .contact-section { padding: 120px 0; background: var(--text-main); color: white; }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 { color: white; margin-bottom: 30px; }
        .contact-info p { color: #aaa; margin-bottom: 15px; display: flex; gap: 15px; }
        .contact-info i { color: var(--accent); }

        .map-container {
            height: 400px;
            background: #222;
            border: 1px solid #333;
        }

        /* Testimonials */
        .reviews-section { padding: 120px 0; text-align: center; }
        
        .review-card {
            max-width: 800px;
            margin: 0 auto;
        }

        .review-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--text-main);
        }

        .review-author {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
        }

        /* Footer */
        footer {
            background: var(--text-main);
            color: #fff;
            padding: 80px 0;
            border-top: 1px solid #333;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-col h4 {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col a { color: #aaa; text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: #fff; }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: 0.3s;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.active { display: flex; opacity: 1; }

        .modal-content {
            background: white;
            padding: 50px;
            width: 90%;
            max-width: 500px;
            position: relative;
            transform: translateY(50px);
            transition: 0.3s;
        }

        .modal-overlay.active .modal-content { transform: translateY(0); }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 10px; font-size: 0.9rem; font-weight: 600; }
        .form-group input, .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            background: #f9f9f9;
            font-family: inherit;
        }
        .form-group input:focus { outline: none; border-color: var(--accent); }

        /* Mobile */
        @media (max-width: 768px) {
            .hero { 
                flex-direction: column; 
                justify-content: center;
                min-height: 90vh; 
                padding-top: 80px;
                text-align: center;
                position: relative;
            }
            
            .hero-bg { 
                position: absolute; 
                top: 0; 
                left: 0;
                width: 100%; 
                height: 100%; 
                margin-top: 0;
                opacity: 0.15; /* Background subtle texture */
                z-index: -1;
            }
            
            .hero-content { 
                width: 100%; 
                padding-right: 0; 
                padding-left: 0;
                z-index: 2;
            }

            .hero-content div {
                flex-direction: column;
                width: 100%;
            }

            .hero-content .btn {
                width: 100%;
            }

            .display-1 { font-size: 2.8rem; line-height: 1.15; }
            
            .about-grid, .team-grid, .gallery-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }

            /* Mobile Optimizations */
            .services-section, .about-section, .team-section, .gallery-section, .faq-section, .contact-section, .reviews-section {
                padding: 60px 0;
            }
            .display-2 { font-size: 2rem; }
            .mb-5 { margin-bottom: 2rem; }
            .service-item h3 { font-size: 1.5rem; }
            .modal-content { padding: 30px; width: 95%; }
        }

        /* WhatsApp */
        .wa-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: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: 0.3s;
            z-index: 999;
        }
        .wa-float:hover { transform: translateY(-5px); }