/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --gold: #d4af37;
            --gold-light: #f3e5ab;
            --dark: #050505;
            --dark-secondary: #111111;
            --text: #e5e5e5;
            --text-muted: #a3a3a3;
            --accent: #c0c0c0; /* Silver */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, .brand-font {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Utility */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .text-gold { color: var(--gold); }
        .section-padding { padding: 80px 0; }
        
        /* Buttons */
        .btn-gold {
            background: linear-gradient(45deg, var(--gold), #b4941f);
            color: #000;
            padding: 15px 35px;
            border: none;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
            clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }
        .btn-outline:hover {
            background: var(--gold);
            color: #000;
        }

        /* Header */
        header {
            background: rgba(5, 5, 5, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }
        .logo span { color: var(--gold); }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--dark)), 
                        url('../images/e7c4d5385a383d134e252bd13973bad6.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content {
            max-width: 800px;
            padding-top: 60px;
        }
        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #ccc;
            max-width: 600px;
        }
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gold);
            animation: bounce 2s infinite;
        }

        /* Value Proposition */
        .value-prop {
            background: var(--dark-secondary);
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 10px;
        }
        .stat-item p {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .service-card {
            background: #0f0f0f;
            padding: 40px;
            border: 1px solid #222;
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: 0.4s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            border-color: #333;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .price-tag {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 2px;
        }

        /* Technical Section */
        .tech-section {
            background: linear-gradient(to right, #050505, #111);
            position: relative;
        }
        .tech-flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        .tech-content { flex: 1; min-width: 300px; }
        .tech-visual { 
            flex: 1; 
            min-width: 300px;
            position: relative;
        }
        .tech-visual img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid #333;
        }
        .layer-list {
            margin-top: 30px;
            list-style: none;
        }
        .layer-list li {
            margin-bottom: 20px;
            display: flex;
            gap: 15px;
        }
        .layer-icon {
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 10px;
        }
        .gallery-item {
            height: 300px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
            filter: brightness(0.7);
        }
        .gallery-overlay {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, black, transparent);
            transition: 0.3s;
            opacity: 0;
        }
        .gallery-item:hover .gallery-overlay {
            bottom: 0;
            opacity: 1;
        }

        /* Footer */
        footer {
            background: #000;
            border-top: 1px solid #222;
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; color: #888; }
        .footer-col ul li i { color: var(--gold); margin-right: 10px; width: 20px; }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: 0.3s;
            text-decoration: none;
        }
        .whatsapp-float:hover { transform: scale(1.1); }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-10px) translateX(-50%);}
            60% {transform: translateY(-5px) translateX(-50%);}
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .section-padding { padding: 50px 0; }
        }

        /* Process Steps */
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        .step-item {
            flex: 1;
            min-width: 150px;
            text-align: center;
            position: relative;
            padding: 20px 10px;
        }
        .step-number {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(255,255,255,0.03);
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
            line-height: 1;
        }
        .step-item h4 {
            color: var(--gold);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            margin-top: 20px;
        }
        .step-item p {
            font-size: 0.85rem;
            color: #888;
            position: relative;
            z-index: 1;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid #222;
            margin-bottom: 15px;
        }
        .faq-question {
            padding: 20px 0;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }
        .faq-question:hover { color: var(--gold); }
        .faq-answer {
            padding-bottom: 20px;
            color: #999;
            display: none;
            line-height: 1.6;
        }
        .faq-item.active .faq-answer { display: block; }
        .faq-item.active .faq-question i { transform: rotate(45deg); }