/* ============================================
           VARIÁVEIS E RESET
           ============================================ */
        :root {
            /* Palette Premium */
            --primary-color: #0055ff;
            --primary-dark: #003bb3;
            --primary-light: #e6f0ff;
            --accent-color: #d4af37; /* Dourado */
            --accent-glow: rgba(212, 175, 55, 0.4);
            
            /* Neutros */
            --bg-body: #ffffff;
            --bg-surface: #f8fafc;
            --text-main: #1e293b;
            --text-body: #475569;
            --text-muted: #94a3b8;
            
            /* Efeitos */
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: 1px solid rgba(255, 255, 255, 0.3);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-body);
            background-color: var(--bg-body);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-main);
            line-height: 1.2;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
           NAVBAR (GLASSMORPHISM)
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.95);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo {
            height: 70px;
            width: auto;
            margin-right: -15px;
            margin-bottom: -10px;
        }

        .company-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }

        .company-name span { color: var(--primary-color); }

        .nav-menu {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-link {
            color: var(--text-body);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-link:hover::after { width: 100%; }

        .btn-contact-nav {
            padding: 10px 24px;
            background: var(--text-main);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
        }

        .btn-contact-nav:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-main);
            transition: var(--transition);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #000;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            opacity: 0.6; /* Vídeo mais sutil */
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            color: white;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #fff 0%, #b4b4b4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 540px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(0, 85, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* ============================================
           SECTIONS GENERAL
           ============================================ */
        section { padding: 100px 0; }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-tag {
            color: var(--primary-color);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.875rem;
            display: block;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-body);
        }

        /* ============================================
           SERVICES (CARDS MODERNOS)
           ============================================ */
        .bg-surface { background-color: var(--bg-surface); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .service-card {
            background: white;
            padding: 40px 32px;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(0, 85, 255, 0.1);
        }

        /* Accent line on hover */
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .service-card:hover::after { transform: scaleX(1); }

        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--primary-color);
            color: white;
        }

        .service-icon svg { width: 32px; height: 32px; }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-body);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ============================================
           CLIENTS & TOOLS
           ============================================ */
        .client-card {
            background: white;
            padding: 32px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            border: 1px solid #f1f1f1;
            transition: var(--transition);
        }

        .client-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-color);
        }

        .client-logo-wrapper {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .client-logo-wrapper img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .rating { color: var(--accent-color); margin-top: 16px; font-size: 1.2rem; }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .tool-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition);
            cursor: pointer;
        }

        .tool-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }

        .tool-img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            border-radius: 8px;
        }

        .tool-img-v2 {
            width: 120px;
            height: 120px;
            object-fit: contain;
            border-radius: 8px;
        }

        /* ============================================
           ABOUT (SIDE BY SIDE)
           ============================================ */
        .about-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .stat-box {
            background: var(--bg-surface);
            padding: 24px;
            border-radius: 12px;
            text-align: center;
            border-bottom: 3px solid var(--primary-color);
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .about-decoration {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, var(--bg-surface) 0%, #edf2f7 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .about-logo-large {
            width: 170px;
            opacity: 0.7;
            filter: grayscale(50%)
        }

        /* ============================================
           CONTACT (FLOATING)
           ============================================ */
        .contact-section {
            background: linear-gradient(to bottom, white 0%, var(--bg-surface) 100%);
        }

        .contact-container {
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
        }

        .contact-info-panel {
            background: var(--text-main);
            color: white;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .contact-info-panel::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.2;
        }

        .info-row {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            align-items: flex-start;
        }

        .info-row svg { 
            width: 24px; 
            height: 24px; 
            color: var(--accent-color);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .contact-form-panel {
            padding: 60px 40px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-surface);
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
            color: var(--text-main);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            background: white;
            box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
        }

        .full-width { grid-column: 1 / -1; }

        textarea.form-control { resize: vertical; min-height: 120px; }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #0f172a; /* Dark Navy */
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
        }

        .footer-brand p {
            color: #94a3b8;
            margin-top: 16px;
            max-width: 300px;
        }

        .footer-col h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 24px;
        }

        .footer-links { list-style: none; }
        
        .footer-links li { margin-bottom: 12px; }
        
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover { color: var(--accent-color); padding-left: 5px; }

        .footer-bottom {
            text-align: center;
            color: #64748b;
            font-size: 0.875rem;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 992px) {
            .hero-title { font-size: 2.5rem; }
            .about-wrapper { grid-template-columns: 1fr; }
            .about-decoration { display: none; }
            .contact-container { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .navbar-container { padding: 0 20px; }
            .nav-menu {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 30px;
                box-shadow: var(--shadow-lg);
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                z-index: -1;
            }
            .nav-menu.active { transform: translateY(0); }
            .hamburger { display: flex; }
            .btn-contact-nav { display: none; }
            
            .hero-content { padding: 0 20px; text-align: center; }
            .hero-buttons { justify-content: center; }
            .hero-title { font-size: 2rem; }
            
            .form-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }