.products-hero {
            background-image: linear-gradient(90deg, rgba(4, 13, 27, .92) 0%, rgba(4, 13, 27, .74) 34%, rgba(4, 13, 27, .20) 64%, rgba(4, 13, 27, .04) 100%), var(--hero-bg);
            background-size: cover;
            background-position: right center;
            background-color: #040d1b;
            color: #fff;
            padding: 130px 0 60px;
            position: relative;
        }
        .products-hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #8b9eb5;
            margin-bottom: 30px;
        }
        .hero-breadcrumb a {
            color: #c7d3e2;
            text-decoration: none;
            font-weight: 600;
        }
        .hero-breadcrumb svg {
            width: 14px;
            height: 14px;
        }
        .products-hero-text {
            max-width: 600px;
            margin-bottom: 40px;
        }
        .hero-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .05em;
            color: #7fb1ff;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .products-hero h1 {
            font-size: clamp(32px, 4vw, 35px);
            font-weight: 600;
            line-height: 1.15;
            margin: 0 0 20px;
            color: #fff;
        }
        .products-hero p {
            font-size: 16px;
            line-height: 1.6;
            color: #c7d3e2;
            margin: 0;
        }
        .products-hero-features {
            display: flex;
            gap: 40px;
            padding: 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 800px;
        }
        .ph-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.4;
            color: #e2e8f0;
        }
        .ph-feature svg {
            width: 28px;
            height: 28px;
            color: #7fb1ff;
            stroke-width: 1.5;
        }
        
        .products-list-section {
            padding: 60px 0;
            background: #f8fafc;
        }

        .catalog-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            align-items: start;
        }

        /* SIDEBAR */
        .catalog-sidebar {
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            padding: 24px;
            position: sticky;
            top: 100px;
        }
        .sidebar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar-header h3 {
            margin: 0;
            font-size: 14px;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: 0.05em;
        }
        .btn-clear-filters {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            color: var(--blue);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
        }
        .btn-clear-filters svg { width: 14px; height: 14px; }
        .btn-clear-filters:hover { text-decoration: underline; }

        .filter-group { margin-bottom: 30px; }
        .filter-group:last-of-type { margin-bottom: 24px; }
        .filter-title {
            margin: 0 0 16px;
            font-size: 12px;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: 0.05em;
        }
        .filter-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .filter-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            color: #475569;
            cursor: pointer;
            transition: .2s;
        }
        .filter-item:hover { color: var(--blue); }
        .filter-count {
            font-size: 12px;
            color: #94a3b8;
            background: #f1f5f9;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        /* Custom Checkbox */
        .filter-checkbox {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #475569;
            cursor: pointer;
            position: relative;
            user-select: none;
        }
        .filter-checkbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        .filter-checkbox .checkmark {
            height: 18px;
            width: 18px;
            background-color: #fff;
            border: 2px solid #cbd5e1;
            border-radius: 4px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s;
        }
        .filter-checkbox:hover input ~ .checkmark { border-color: var(--blue); }
        .filter-checkbox input:checked ~ .checkmark {
            background-color: var(--blue);
            border-color: var(--blue);
        }
        .filter-checkbox .checkmark svg {
            width: 12px;
            height: 12px;
            opacity: 0;
        }
        .filter-checkbox input:checked ~ .checkmark svg { opacity: 1; }
        .filter-checkbox .label-text { flex: 1; }
        
        .filter-accordion {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .fa-item {
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 8px;
        }
        .fa-item:last-child { border-bottom: none; }
        .fa-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: #475569;
            cursor: pointer;
            padding: 4px 0;
        }
        .fa-header svg { width: 14px; height: 14px; color: #94a3b8; }
        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .ftag {
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            color: #475569;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: .2s;
        }
        .ftag:hover {
            border-color: #cbd5e1;
            background: #e2e8f0;
        }
        .ftag-count { color: #94a3b8; font-weight: 400; }
        
        .sidebar-summary {
            background: #eff6ff;
            border: 1px solid #bfdbfe;
            border-radius: 8px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #1e3a8a;
            font-weight: 600;
            font-size: 13px;
            margin-top: 24px;
        }
        .sidebar-summary svg { width: 20px; height: 20px; color: #3b82f6; flex-shrink: 0; }

        /* TOP BAR */
        .catalog-top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            padding: 16px 24px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            margin-bottom: 30px;
        }
        .ctb-search { flex: 1; max-width: 400px; }
        .ctb-search form { position: relative; }
        .ctb-search input {
            width: 100%;
            height: 44px;
            padding: 0 16px 0 44px;
            font-size: 14px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 22px;
            outline: none;
            transition: .2s;
        }
        .ctb-search input:focus {
            background: #fff;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        .ctb-search .cs-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            color: #94a3b8;
        }
        .ctb-controls {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .ctb-sort, .ctb-per-page {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #475569;
            font-weight: 600;
        }
        .ctb-controls select {
            appearance: none;
            background: #fff url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%23475569" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat right 12px center / 14px;
            border: 1px solid #e2e8f0;
            padding: 8px 36px 8px 16px;
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            border-radius: 8px;
            outline: none;
            cursor: pointer;
        }
        .ctb-views {
            display: flex;
            align-items: center;
            gap: 4px;
            background: #f1f5f9;
            padding: 4px;
            border-radius: 8px;
        }
        .view-btn {
            background: transparent;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            cursor: pointer;
            transition: .2s;
        }
        .view-btn.active {
            background: #fff;
            color: var(--blue);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .view-btn svg { width: 18px; height: 18px; }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }
        
        .products-grid.list-view {
            grid-template-columns: 1fr;
        }
        .products-grid.list-view .product-card {
            flex-direction: row;
            align-items: center;
        }
        .products-grid.list-view .pc-media {
            width: 250px;
            aspect-ratio: 1/1;
            flex-shrink: 0;
            border-bottom: none;
            border-right: 1px solid #f1f5f9;
        }
        .products-grid.list-view .pc-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .products-grid.list-view .pc-footer {
            margin-top: 16px;
        }

        .product-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: .3s ease;
        }
        .product-card:hover {
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            transform: translateY(-4px);
            border-color: #cbd5e1;
        }
        .pc-media {
            aspect-ratio: 4/3;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            position: relative;
        }

        
        .pc-media img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .pc-body {
            padding: 0 24px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .pc-category {
            font-size: 11px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: block;
        }
        .pc-body h3 {
            margin: 0 0 12px;
            font-size: 16px;
            font-weight: 600;
            color: #0f172a;
            line-height: 1.4;
        }
        .pc-supplier {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .pc-supplier svg {
            width: 14px;
            height: 14px;
        }
        .pc-body p {
            margin: 0 0 16px;
            font-size: 13px;
            line-height: 1.5;
            color: #64748b;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .pc-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .pc-tag {
            background: #f1f5f9;
            color: #3b82f6;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }
        .pc-footer {
            margin-top: auto;
            border-top: 1px solid #f1f5f9;
            padding-top: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .pc-add-cart {
            background: var(--blue);
            color: #fff;
            border: none;
            height: 36px;
            padding: 0 20px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: .2s;
            display: flex;
            align-items: center;
        }
        .pc-add-cart:hover {
            background: #2563eb;
        }
        .pc-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--blue);
            font-size: 13px;
            font-weight: 600;
        }
        .pc-link svg {
            width: 14px;
            height: 14px;
            stroke-width: 2.5;
        }
        .products-help-cta {
            background: #f8fafc;
            border-radius: 12px;
            padding: 40px;
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 24px;
        }
        .phc-icon {
            width: 80px;
            height: 80px;
            background: #e6effc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            flex-shrink: 0;
        }
        .phc-icon svg {
            width: 40px;
            height: 40px;
        }
        .phc-text {
            flex: 1;
        }
        .phc-eyebrow {
            display: block;
            font-size: 11px;
            font-weight: 800;
            color: var(--blue);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .phc-text h2 {
            margin: 0 0 6px;
            font-size: 24px;
            font-weight: 800;
            color: #0f172a;
        }
        .phc-text p {
            margin: 0;
            font-size: 15px;
            color: #475569;
            line-height: 1.5;
        }
        .phc-btn {
            background: var(--blue);
            color: #fff;
            height: 52px;
            padding: 0 32px;
            font-size: 16px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .products-bottom-features {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            margin-bottom: 80px;
        }
        .pbf-item {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            flex: 1;
            justify-content: center;
        }
        .pbf-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 30px;
            width: 1px;
            background: #e2e8f0;
        }
        .pbf-icon {
            color: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pbf-icon svg {
            width: 28px;
            height: 28px;
        }
        .pbf-item span {
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.3;
        }
        
        .empty-state {
            padding: 60px 0;
            text-align: center;
            color: #64748b;
            font-size: 15px;
        }

        .catalog-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
            margin-bottom: 60px;
        }
        .page-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            transition: .2s;
        }
        .page-btn:hover {
            border-color: #cbd5e1;
            color: #0f172a;
        }
        .page-btn.active {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff;
        }
        .page-btn svg { width: 18px; height: 18px; }
        .page-dots {
            color: #94a3b8;
            font-weight: 600;
            padding: 0 4px;
        }

        @media (max-width: 1024px) {
            .catalog-layout { grid-template-columns: 1fr; }
            .catalog-sidebar { display: none; /* Em mobile teria um botão offcanvas para abrir */ }
            .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .products-bottom-features { flex-wrap: wrap; gap: 20px; }
            .pbf-item { width: calc(50% - 10px); }
        }
        @media (max-width: 768px) {
            .products-hero { padding: 90px 0 30px; }
            .products-list-section { padding-top: 20px; }
            .products-hero-features { display: none; }
            .hero-breadcrumb { display: none; }
            .products-hero h1 { font-size: 18px; margin-bottom: 12px; line-height: 1.25; }
            .products-hero p { font-size: 12px; }
            
            .catalog-top-bar { flex-direction: column; align-items: stretch; gap: 16px; padding: 16px; }
            .ctb-search { max-width: 100%; }
            .ctb-controls { flex-wrap: wrap; justify-content: space-between; }
            
            .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            
            .products-help-cta { display: none; }
            
            .pbf-item:not(:last-child)::after { display: none; }
            .products-bottom-features { padding: 20px; gap: 16px; flex-direction: column; align-items: flex-start; margin-bottom: 0; }
            .pbf-item { width: 100%; justify-content: flex-start; }
        }
        @media (max-width: 500px) {
            .products-grid { grid-template-columns: 1fr; }
            .pbf-item { width: 100%; }
            .ctb-controls { flex-direction: column; align-items: stretch; }
            .ctb-sort, .ctb-per-page { justify-content: space-between; }
            .ctb-views { justify-content: center; }
        }


.products-p-1 { display: none; text-align: center; padding: 40px 0; color: #64748b; font-size: 16px; }
.products-div-2 { display: none; text-align: center; margin-top: 40px; margin-bottom: 60px; }
.products-button-3 { padding: 12px 32px; font-weight: bold; border-radius: 8px; }
