.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
        }

        .filtros {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .campo-busca {
            flex: 1;
            min-width: 250px;
        }

        .campo-busca input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .campo-busca input:focus {
            outline: none;
            border-color: #667eea;
        }

        .campo-categoria {
            min-width: 200px;
        }

        .campo-categoria select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            background: white;
            transition: border-color 0.3s;
        }

        .campo-categoria select:focus {
            outline: none;
            border-color: #667eea;
        }

        .produtos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .produto-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #f0f0f0;
        }

        .produto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .produto-imagem-container {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .produto-imagem-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .no-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 60px;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
            border-radius: 4px;
        }

        .slider-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .slider-btn.prev {
            left: 10px;
        }

        .slider-btn.next {
            right: 10px;
        }

        .slider-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: white;
        }

        .produto-info {
            padding: 20px;
        }

        .produto-nome {
            font-size: 1.3em;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .produto-categoria {
            display: inline-block;
            padding: 5px 12px;
            background: #f0f0f0;
            color: #666;
            border-radius: 20px;
            font-size: 0.85em;
            margin-bottom: 10px;
        }

        .produto-descricao {
            color: #666;
            font-size: 0.95em;
            margin-bottom: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .produto-preco {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

        .preco-valor {
            font-size: 1.5em;
            font-weight: bold;
            color: #16a34a;
        }
        .produto-acoes { margin-top: 12px; }

        .sem-produtos {
            text-align: center;
            padding: 60px 20px;
            color: #999;
            font-size: 1.2em;
            grid-column: 1 / -1;
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #667eea;
            font-size: 1.1em;
        }

        /* Modal de imagem */
        .modal-imagem {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-imagem.active {
            display: flex;
            animation: fadeIn 0.3s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
            }
            to {
                opacity: 0;
            }
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-imagem-slider {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-slide {
            display: none;
            max-width: 100%;
            max-height: 90vh;
        }

        .modal-slide.active {
            display: block;
        }

        .modal-slide img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .modal-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 20px 25px;
            font-size: 30px;
            cursor: pointer;
            z-index: 10000;
            transition: background 0.3s;
            border-radius: 4px;
        }

        .modal-btn:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .modal-btn.prev {
            left: 20px;
        }

        .modal-btn.next {
            right: 20px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10001;
        }

        .modal-close:hover {
            color: #ccc;
        }

        @media (max-width: 768px) {
            .filtros {
                flex-direction: column;
            }

            .campo-busca, .campo-categoria {
                min-width: 100%;
            }

            .modal-btn {
                padding: 15px 20px;
                font-size: 24px;
            }

            .modal-btn.prev {
                left: 10px;
            }

            .modal-btn.next {
                right: 10px;
            }
        }
        /* NavBar */
.navbar { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:10px 16px; background:#111827; color:#fff; border-bottom:1px solid #1f2937; position:fixed; top:0; left:0; right:0; z-index:1000; }
.navbar a { color:#fff; text-decoration:none; }
.navbar__logo { font-weight:700; letter-spacing:.2px; }
.navbar__center { display:flex; align-items:center; justify-content:center; flex:1; }
.navbar__right { display:flex; align-items:center; gap:10px; }

/* Reset básico para encostar a NavBar no topo */
html, body { margin: 0; padding: 0; }
/* CTA "Mais detalhes" */
.detalhes-cta { display:flex; justify-content:flex-end; margin-bottom:16px; }
.btn-detalhes { display:inline-block; padding:10px 16px; border:2px solid #16a34a; color:#16a34a; background:#f0fdf4; border-radius:8px; font-weight:600; cursor:pointer; transition:background .2s ease, color .2s ease; text-decoration:none; }
.btn-detalhes:hover { background:#16a34a; color:#fff; }
/* Tipografia base do site */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  color: #111827;
  background: #f9fafb;
  letter-spacing: 0.2px;
}