        /* Estética NMRec - Sem Serifas ou Itálicos */
        * { font-style: normal !important; }
        
        .animated-grid {
            background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(ellipse at center, black 20%, transparent 85%);
        }

        .nav-scrolled {
            margin-top: 1rem !important; border-radius: 9999px !important;
            background: rgba(8, 31, 72, 0.95) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
            width: calc(100% - 2rem); max-width: 80rem;
        }

        /* Card de Produto - Engenharia de Push Ajustada */
        .product-card {
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            position: relative;
            background: #ffffff;
            border: 1px solid #f1f5f9;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1;
        }
        .product-card:hover { border-color: #f79e5c; transform: translateY(-5px); }
        
        .product-header-push { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
        .product-card:hover .product-header-push { transform: translateY(-160px); }
        
        .reveal-data {
            position: absolute; bottom: 2rem; left: 2.5rem; right: 2.5rem;
            opacity: 0; transform: translateY(20px); transition: all 0.6s ease;
        }
        .product-card:hover .reveal-data { opacity: 1; transform: translateY(0); }

        /* Gráfico RDC Simétrico */
        .aniso-left { left: calc(50% - 30px); height: 90px; background-color: rgba(247,158,92,0.3); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
        .aniso-right { right: calc(50% - 30px); height: 90px; background-color: rgba(247,158,92,0.3); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
        
        .group:hover .aniso-left { left: calc(50% - 70px); height: 130px; background-color: #f79e5c; box-shadow: 0 0 20px rgba(247,158,92,0.5); }
        .group:hover .aniso-right { right: calc(50% - 70px); height: 130px; background-color: #f79e5c; box-shadow: 0 0 20px rgba(247,158,92,0.5); }

        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .hide-scrollbar::-webkit-scrollbar { display: none; }
        .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
