
        /* --- COPIADO DO index.HTML PARA CONSISTÊNCIA TOTAL --- */
        :root {
            --cor-preto-principal: #1D1F21;
            --cor-preto-secundario: #1D1F21;
            --cor-preto-card: #1D1F21;
            --cor-laranja-destaque: #DD663F;
            --cor-laranja-hover: #DD663F;
            --cor-laranja-neon: #FC5E01;
            --cor-amarelo-neon: #FC5E01;
            --cor-branco-texto: #F3EDDD;
            --cor-cinza-texto: #c9c3c2;
            --cor-borda-sutil: #431c10;
            --fonte-titulo: 'Titillium Web', sans-serif;
            --fonte-corpo: 'Titillium Web', sans-serif;
            --glow-shadow: 0 0 15px rgba(221, 102, 63);
            --glow-shadow-intense: 0 0 25px rgba(221, 102, 63), 0 0 100px rgba(208, 102, 61, 0.5);
            --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            background-color: var(--cor-preto-principal);
            color: var(--cor-branco-texto);
            font-family: var(--fonte-corpo);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(208, 102, 61, 0.03) 2px, rgba(208, 102, 61, 0.03) 4px);
        }

        /* Tipografia e Títulos */
        h1, h2, h3, h4 { font-family: var(--fonte-titulo); font-weight: 700; margin-bottom: 20px; }
        
        h2 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            background: linear-gradient(135deg, var(--cor-laranja-destaque), var(--cor-amarelo-neon), var(--cor-branco-texto));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 4px;
            filter: drop-shadow(0 0 10px rgba(208, 102, 61, 0.3));
        }

        h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -15px;
            width: 0px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--cor-laranja-destaque), transparent);
            box-shadow: 0 0 20px var(--cor-laranja-destaque);
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        section.visible h2::after { width: 200px; }

        /* Links e Botões */
        a { color: var(--cor-laranja-destaque); text-decoration: none; transition: var(--transition-fast); }
        a:hover { color: var(--cor-laranja-hover); text-shadow: 0 0 10px var(--cor-laranja-hover); }

        .cta-button {
            background: linear-gradient(135deg, var(--cor-laranja-destaque), var(--cor-laranja-neon));
            color: var(--cor-branco-texto);
            padding: 12px 30px; /* Levemente menor para produtos */
            text-decoration: none;
            font-family: var(--fonte-titulo);
            font-weight: 700;
            border-radius: 50px;
            transition: all var(--transition-fast);
            font-size: 1.1rem;
            border: 2px solid transparent;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(208, 102, 61, 0.4);
            cursor: pointer;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%; width: 0; height: 0;
            border-radius: 50%;
            background: rgba(251, 251, 251, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before { width: 300px; height: 300px; }
        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: var(--glow-shadow-intense);
            border-color: var(--cor-amarelo-neon);
        }

        /* Layout Base */
        .container { width: 90%; max-width: 1200px; margin: 0 auto; }
        section { padding: 120px 0; border-bottom: 1px solid var(--cor-borda-sutil); overflow: hidden; position: relative; }

        /* Partículas */
        .particles-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; opacity: 0.3; }
        .particle { position: absolute; width: 2px; height: 2px; background: var(--cor-laranja-destaque); border-radius: 50%; animation: float-particle 10s linear infinite; }
        @keyframes float-particle {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }

        /* Animações de Scroll */
        [data-animation] { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
        [data-animation="fade-in"] { transform: translateY(40px); }
        .visible[data-animation] { opacity: 1; transform: translate(0, 0) scale(1); }

        /* --- PRELOADER (Igual ao Home) --- */
        #preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: #151515; z-index: 9999;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            transition: opacity 0.8s ease, visibility 0.8s ease; opacity: 1; visibility: visible;
        }
        .loading-logo { margin-bottom: 30px; }
        .loading-logo img { animation: pulse-logo 1.5s ease-in-out infinite; }
        @keyframes pulse-logo { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
        .loading-bar-container { width: 80%; max-width: 300px; height: 8px; background: #333; border-radius: 4px; overflow: hidden; margin-bottom: 20px; }
        #loading-bar { width: 0%; height: 100%; background: linear-gradient(90deg, var(--cor-laranja-destaque), var(--cor-amarelo-neon)); border-radius: 4px; transition: width 0.2s ease-out; }
        #loading-percentage { font-family: var(--fonte-titulo); font-size: 1.5rem; color: var(--cor-laranja-destaque); letter-spacing: 2px; }

        /* --- HEADER (Igual ao Home) --- */
        .header {
            background: linear-gradient(180deg, rgba(21, 21, 21, 0.95), rgba(21, 21, 21, 0.7));
            position: fixed; width: 100%; top: 0; left: 0; z-index: 1000;
            transition: all var(--transition-medium); backdrop-filter: blur(15px); border-bottom: 2px solid transparent; height: 90px;
        }
        .header.scrolled {
            background: linear-gradient(180deg, rgba(21, 21, 21, 0.98), rgba(21, 21, 21, 0.95));
            height: 75px; border-bottom-color: var(--cor-laranja-destaque); box-shadow: 0 5px 30px rgba(208, 102, 61, 0.3);
        }
        .navbar { display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 5%; gap: 2rem; }
        .logo { height: 55px; transition: all var(--transition-fast); filter: drop-shadow(0 0 10px rgba(208, 102, 61, 0.5)); }
        .header.scrolled .logo { height: 50px; }
        .logo:hover { transform: scale(1.15) rotate(-5deg); filter: drop-shadow(0 0 20px rgba(208, 102, 61, 0.9)); }
        .nav-menu { list-style: none; display: flex; gap: 30px; }
        .nav-link {
            color: var(--cor-branco-texto); text-decoration: none; font-family: var(--fonte-titulo);
            font-weight: 500; font-size: 1rem; position: relative; padding: 8px 0;
            text-transform: uppercase; letter-spacing: 1px; transition: color var(--transition-fast);
        }
        .nav-link::after {
            content: ''; position: absolute; width: 0; height: 3px;
            background: linear-gradient(90deg, var(--cor-laranja-destaque), var(--cor-amarelo-neon));
            bottom: -8px; left: 50%; transform: translateX(-50%);
            transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: 0 0 10px var(--cor-laranja-destaque);
        }
        .nav-link:hover, .nav-link.active { color: var(--cor-laranja-destaque); text-shadow: 0 0 10px rgba(208, 102, 61, 0.8); }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1002;
        }
        .bar {
            display: block;
            width: 28px;
            height: 3px;
            margin: 6px auto;
            transition: all var(--transition-medium);
            background: linear-gradient(90deg, var(--cor-laranja-destaque), var(--cor-amarelo-neon));
            border-radius: 2px;
            box-shadow: 0 0 5px var(--cor-laranja-destaque);
        }
        /* --- ESTILOS ESPECÍFICOS PARA PRODUTOS --- */
        
        /* Intro text styling */
        .products-intro {
            text-align: center;
            max-width: 800px;
            margin: -20px auto 60px;
            color: var(--cor-cinza-texto);
            font-size: 1.2rem;
        }

        .products-grid {
            display: grid;
            /* MUDANÇA CRUCIAL: 'auto-fill' evita que um único card estique a tela toda.
            minmax(280px, 1fr) define a largura mínima e máxima da caixinha */
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            justify-content: center; /* Centraliza o bloco de cards na tela */
        }

        /* Card do Produto - Baseado no estilo .team-member e .card-base */
        .product-card {
            background: #1D1F21; /* Cor sólida escura como na notícia */
            border: 1px solid rgba(221, 102, 63, 0.2); /* Borda laranja sutil */
            border-radius: 8px; /* Bordas levemente arredondadas, mais "tech" */
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%; /* Garante que todos tenham a mesma altura na linha */
            position: relative;
        }

        /* Efeito Hover no Card */
        /* Efeito ao passar o mouse: Sobe um pouco e brilha a borda */
        .product-card:hover {
            transform: translateY(-5px);
            border-color: var(--cor-laranja-destaque);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Badge (Mais vendido, Eco, etc.) */
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--cor-laranja-neon);
            color: #fff;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        /* Container da Imagem */
        .product-image {
            width: 100%;
            height: 220px; /* Altura fixa menor para não ficar uma "caixona" */
            background-color: #151515;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
            transition: transform 0.5s ease;
        }

        /* Zoom na imagem ao passar o mouse no card */
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        /* --- DETALHES (TEXTO) --- */
        .product-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-category {
            color: var(--cor-laranja-destaque);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 5px;
            text-align: center; 
            width: 100%;
        }

        .product-title {
            font-size: 1.3rem; /* Fonte um pouco menor para ficar elegante */
            margin-bottom: 10px;
            color: var(--cor-branco-texto);
            line-height: 1.3;
            font-weight: 700;
            text-align: center;
        }

        .product-description {
            font-size: 0.9rem;
            color: var(--cor-cinza-texto);
            margin-bottom: 20px;
            line-height: 1.5;
            flex-grow: 1; /* Empurra o rodapé do card para baixo */
        }

        /* --- RODAPÉ DO CARD (Preço + Botão) --- */
        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto; /* Cola no fundo do card */
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .product-price {
            font-family: var(--fonte-titulo);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--cor-amarelo-neon);
        }

        /* Botão redondo pequeno apenas com ícone (mais moderno) */
        .btn-buy-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--cor-laranja-destaque);
            color: var(--cor-laranja-destaque);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-buy-icon:hover {
            background: var(--cor-laranja-destaque);
            color: #fff;
            box-shadow: 0 0 15px rgba(221, 102, 63, 0.4);
            transform: rotate(15deg); /* Charmoso giro no ícone */
        }

        /* Badge de Novidade */
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--cor-laranja-neon);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }

        /* --- FOOTER & BACK TO TOP (Igual ao Home) --- */
        .footer {
            background-color: #151515; text-align: center; padding: 50px 20px;
            border-top: 4px solid var(--cor-laranja-destaque); box-shadow: 0 -5px 30px rgba(208, 102, 61, 0.3);
        }
        .social-links a {
            color: var(--cor-branco-texto); font-size: 2rem; margin: 0 20px; display: inline-block; transition: all var(--transition-fast);
        }
        .social-links a:hover {
            color: var(--cor-laranja-destaque); transform: translateY(-8px) scale(1.2); text-shadow: var(--glow-shadow);
        }
        .footer p { margin-top: 30px; }

        #back-to-top {
            position: fixed; bottom: 30px; right: 30px;
            background: linear-gradient(135deg, var(--cor-laranja-destaque), var(--cor-laranja-neon));
            color: #fbfbfb; width: 55px; height: 55px; border-radius: 50%;
            display: flex; justify-content: center; align-items: center; text-decoration: none;
            font-size: 1.8rem; opacity: 0; visibility: hidden; transition: all var(--transition-fast);
            z-index: 999; border: 2px solid var(--cor-amarelo-neon);
        }
        #back-to-top.show { opacity: 1; visibility: visible; }
        #back-to-top:hover { transform: scale(1.15) rotate(360deg); box-shadow: var(--glow-shadow-intense); }

        /* Media Queries */
        @media (max-width: 992px) {
            h2 { font-size: 2.8rem; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            h2 { font-size: 2.2rem; }
            .nav-menu {
            position: fixed;
            left: -100%; /* Começa escondido fora da tela à esquerda */
            top: 0;
            height: 100vh;
            gap: 0;
            flex-direction: column;
            background-color: rgba(21, 21, 21, 0.95);
            backdrop-filter: blur(15px);
            width: 100%;
            text-align: center;
            transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
            z-index: 1001;
            justify-content: center;
        }
            .nav-menu.active { left: 0; }
            .hamburger { display: block; }
            .nav-item {
            padding: 20px 0;
            width: 100%;
        }
            .hamburger.active .bar:nth-child(2) { opacity: 0; }
            .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
            .products-grid { grid-template-columns: 1fr; }
        }

        /* --- EFEITO DE TROCA DE IMAGEM (FRENTE/VERSO) --- */

        .product-image {
            position: relative; /* Necessário para posicionar a imagem de trás */
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease, transform 0.5s ease;
            display: block;
        }

        /* Imagem da Frente (Padrão) */
        .product-image .img-front {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease; /* Suaviza o desaparecimento */
            opacity: 1;
        }

        /* Imagem do Verso (Escondida inicialmente) */
        .product-image .img-back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 2;
        }

        /* A mágica: Ao passar o mouse no card, esconde a frente e mostra o verso */
        .product-card:hover .product-image .img-front {
            opacity: 0;
        }

        .product-card:hover .product-image .img-back {
            opacity: 1;
            transform: scale(1.05); /* Mantém o zoom elegante */
        }

        /* --- ESTILOS DOS CRÉDITOS (RODAPÉ) --- */

        .credits {
            margin-top: 15px;
            font-size: 0.85rem; /* Um pouco menor que o texto padrão para ficar sutil */
            color: var(--cor-cinza-texto); /* Usa a cor cinza do seu tema */
            letter-spacing: 0.5px;
            opacity: 0.8;
        }

        /* O Link dos Nomes */
        .dev-link {
            color: var(--cor-cinza-texto); /* Começa cinza (oculto) */
            text-decoration: none;
            font-weight: 700; /* Negrito para destacar levemente */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding-bottom: 2px;
        }

        /* Efeito Hover (Quando passa o mouse) */
        .dev-link:hover {
            color: var(--cor-laranja-destaque); /* Vira laranja */
            text-shadow: 0 0 10px rgba(221, 102, 63, 0.6); /* Brilho neon */
            cursor: pointer;
        }

        /* Sublinhado animado que aparece no hover */
        .dev-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--cor-laranja-destaque);
            transition: width 0.3s ease;
        }

        .dev-link:hover::after {
            width: 100%;
        }

        /* Estilo do separador "| DevOps" */
        .division-tag {
            font-size: 0.8rem;
            color: #666; /* Um cinza mais escuro para dar menos destaque que os nomes */
            margin-left: 5px;
            font-weight: 400;
        }