@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS from index.html */
:root {
            --primary-color: #730302;
            --secondary-color: #F9F1CD;
            --bg-color: #FFFFFF;
            --card-bg: #FFFFFF;
            --text-dark: #0A0A0A;
            --text-light: #555555;
            --border-color: #e0e0e0;
            --placeholder-bg: #F9F1CD;
            --placeholder-text: #730302;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* UtilitÃ¡rio para Placeholders de Imagem */
        .img-placeholder {
            background-color: var(--placeholder-bg);
            color: var(--placeholder-text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            width: 100%;
            height: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Top Bar */
        .top-bar { 
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-size: 0.85rem;
            text-align: center;
            padding: 8px 0;
         font-weight: 700; }

        /* Header */
        header {
            background-color: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 500;
            /* Aumentado para sobrepor o submenu quando rolado */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .logo-area {
            width: 180px;
            height: 60px;
            flex-shrink: 0;
        }

        .search-area {
            flex-grow: 1;
            max-width: 600px;
            display: flex;
        }

        .search-area input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .search-area input:focus {
            border-color: var(--primary-color);
        }

        .search-area button {
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: #ffffff;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .search-area button:hover {
            background-color: #520201;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Mega Menu */
        .sub-menu {
            background-color: var(--bg-color);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            position: relative;
            z-index: 100;
            /* Reduzido para passar por baixo do header fixo */
            backface-visibility: hidden;
            transform: translateZ(0);
            will-change: transform, opacity;
        }

        .sub-menu .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mega-wrapper {
            position: relative;
        }

        .mega-wrapper>a,
        .sub-menu .simple-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
            padding: 8px 15px;
            white-space: nowrap;
        }

        .mega-wrapper:hover>a,
        .sub-menu .simple-link:hover {
            color: var(--primary-color);
        }

        .mega-wrapper>a i,
        .sub-menu .simple-link i {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* Painel Dropdown */
        .megamenu {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
            width: 580px;
            /* Reduzido para encaixar melhor no card maior */
            padding: 20px 25px 25px;
            z-index: 500;
            display: grid;
            grid-template-columns: 190px 1fr;
            gap: 25px;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            backface-visibility: hidden;
            transform: translateZ(0);
            will-change: opacity, visibility;
        }

        .mega-wrapper:nth-last-child(-n+2) .megamenu {
            left: auto;
            right: 0;
        }

        .mega-wrapper:hover .megamenu {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        /* Ponte invisÃ­vel que preenche o espaÃ§o entre o link e o painel */
        .mega-wrapper::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            display: none;
        }

        .mega-wrapper:hover::after {
            display: block;
        }

        /* Overlay Global para Mega Menu */
        .mega-global-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 90;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            pointer-events: none;
        }
        
        .mega-global-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mega-links h3 {
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 8px;
        }

        .mega-links ul {
            list-style: none;
            max-height: 420px; /* Aproximadamente 15 itens */
            overflow-y: auto;
            padding-right: 10px; /* Espaço para o scroll */
        }
        
        /* Scrollbar discreto para as subcategorias */
        .mega-links ul::-webkit-scrollbar {
            width: 5px;
        }
        .mega-links ul::-webkit-scrollbar-track {
            background: #f4f4f4; 
            border-radius: 4px;
        }
        .mega-links ul::-webkit-scrollbar-thumb {
            background: #dcdcdc; 
            border-radius: 4px;
        }
        .mega-links ul::-webkit-scrollbar-thumb:hover {
            background: #c0c0c0; 
        }

        .mega-links ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.88rem;
            line-height: 1.3;
            margin-bottom: 10px;
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }

        .mega-links ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .mega-sub-group {
            margin-bottom: 14px;
        }

        .mega-sub-group-title {
            font-weight: 700;
            font-size: 0.88rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .mega-sub-group ul li a {
            padding-left: 12px;
            color: var(--text-light);
        }

        /* Slider de Produtos */
        .mega-products {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow: hidden;
            min-width: 0;
        }

        .mega-slider-wrap {
            width: 240px;
            flex: none;
            overflow: hidden;
            scroll-snap-type: x mandatory;
        }

        .mega-slider {
            display: flex;
            gap: 12px;
            transition: transform 0.35s ease;
        }

        .mega-product-card {
            min-width: 240px;
            max-width: 240px;
            text-align: center;
            text-decoration: none;
            color: var(--text-dark);
            flex-shrink: 0;
            scroll-snap-align: start;
        }

        .mega-product-img {
            height: 240px;
            /* Aumentado de 185px para 240px */
            border: 1px solid var(--border-color);
            border-radius: 6px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .mega-product-name {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1.3;
            display: block;
        }

        .mega-slider-btn {
            background: white;
            border: 1px solid var(--border-color);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--primary-color);
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .mega-slider-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Main Content */
        main {
            padding-bottom: 60px;
        }

        /* Hero Banner Slider */
        .hero-slider-section {
            width: 100%;
            height: 450px;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
        }

        .hero-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .hero-slide {
            width: 100%;
            height: 100%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .hero-slide:nth-child(1) {
            background-color: var(--primary-color);
        }

        .hero-slide:nth-child(2) {
            background-color: #5a0201;
        }

        .hero-slide:nth-child(3) {
            background-color: #400101;
        }

        .hero-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--primary-color);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .hero-btn:hover {
            background: #fff;
        }

        .hero-prev {
            left: 20px;
        }

        .hero-next {
            right: 20px;
        }

        .hero-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .hero-dot.active,
        .hero-dot:hover {
            background: #fff;
        }

        /* Top Bar */
        .top-bar {
            background-color: #ffffff;
        }

        /* Shipping Banner */
        .shipping-banner {
            background-color: var(--primary-color);
            color: #ffffff;
            text-align: center;
            padding: 10px 0;
            font-size: 0.85rem;
        }

        /* Features / Diferenciais */
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin: 35px 0 45px 0;
            padding: 24px 30px;
            background: #ffffff;
            border: 1px solid var(--border-color, #eee);
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            min-width: 220px;
        }

        .feature-icon {
            width: 54px;
            height: 54px;
            min-width: 54px;
            background-color: #f7eed8;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color, #730302);
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary-color, #730302);
        }

        .feature-icon i {
            font-size: 1.85rem;
            color: var(--primary-color, #730302);
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-item:hover .feature-icon {
            transform: translateY(-3px);
            background-color: #eee0bc;
        }

        .feature-text {
            display: flex;
            flex-direction: column;
        }

        .feature-text strong {
            font-size: 1.05rem;
            color: var(--text-dark, #222);
            font-weight: 700;
            line-height: 1.3;
        }

        .feature-text span {
            font-size: 0.86rem;
            color: var(--text-light, #777);
            font-weight: 400;
            margin-top: 2px;
        }

        /* Marcas - Carrossel Infinito */
        .brands-section {
            margin-top: 60px;
            margin-bottom: 90px;
            overflow: hidden;
        }

        .brands-wrap {
            width: 100%;
            overflow: hidden;
            cursor: grab;
            padding: 10px 0;
        }

        .brands-wrap:active {
            cursor: grabbing;
        }

        .brands-grid {
            display: flex;
            gap: 30px;
            width: max-content;
        }

        .brand-item {
            width: 150px;
            height: 100px;
            flex-shrink: 0;
            /* Impede encolhimento no flex */
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            transition: transform 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            /* Impede seleÃ§Ã£o de texto ao arrastar */
            -webkit-user-drag: none;
            /* Impede arrastar a imagem/link do elemento no Safari/Chrome */
        }

        .brand-item:hover {
            transform: scale(1.05);
        }

        /* Categories Section */
        .section-title {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 40px;
            color: var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 10px auto 0;
        }

        .categories-wrap {
            width: 100%;
            overflow: hidden;
            cursor: grab;
            padding-bottom: 20px;
        }

        .categories-wrap:active {
            cursor: grabbing;
        }

        .categories-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            width: max-content;
            margin-left: auto;
            margin-right: auto;
            padding: 10px;
        }

        .category-item {
            flex-shrink: 0;
            user-select: none;
            -webkit-user-drag: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--text-dark);
        }

        .category-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-item:hover .category-image {
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .category-item span {
            font-weight: 600;
            font-size: 1rem;
        }

        /* Products Grid */
        .products-section {
            margin-bottom: 70px;
            position: relative;
        }

        .products-nav-btn {
            position: absolute;
            top: 55%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            color: var(--text-light);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .products-nav-btn:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .products-prev {
            left: -20px;
        }

        .products-next {
            right: -20px;
        }

        .products-grid-wrap {
            position: relative;
            z-index: 2;
        }

        .products-grid {
            display: flex;
            gap: 25px;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .product-card {
            flex: 0 0 calc((100% - 100px) / 5);
            /* Exibe exatamente 5 itens */
            margin-top: 10px;
            /* Garante espaÃ§o fÃ­sico acima do card dentro do scroll */
            margin-bottom: 35px;
            /* Garante espaÃ§o fÃ­sico abaixo para a sombra */
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            box-sizing: border-box;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #ccc;
        }

        .product-image {
            height: 240px;
            margin-bottom: 20px;
            border-radius: 4px;
            overflow: hidden;
        }

        .product-info {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-category {
            font-size: 0.8rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
            word-break: break-word;
        }

        .btn-details {
            margin-top: auto;
            display: block;
            text-align: center;
            padding: 10px 0;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .product-card:hover .btn-details {
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }

        /* Banner Split */
        .banner-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 70px;
        }

        .banner-box {
            height: auto;
            border-radius: 8px;
            overflow: hidden;
        }

        /* Tarja de Frete */
        .shipping-banner-2 {
            background-color: #F9F1CD;
            color: #7E0302 !important;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            background-color: #68332D;
            color: var(--secondary-color);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-area {
            margin-bottom: 20px;
            width: auto;
            max-width: 220px;
            height: auto;
            background-color: transparent;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(249, 241, 205, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--secondary-color);
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: rgba(249, 241, 205, 0.7);
        }

        .footer-bottom {
            border-top: 1px solid rgba(249, 241, 205, 0.2);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(249, 241, 205, 0.5);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }

            .search-area {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .features {
                flex-direction: column;
                gap: 25px;
            }

            .banner-split {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
                /* Em um projeto real, viraria um menu hambÃºrguer */
            }

            .sub-menu {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .categories-grid {
                gap: 20px;
            }

            .category-image {
                width: 90px;
                height: 90px;
            }
        }

/* CSS from catalogo.html */


        

        

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .img-placeholder {
            background-color: var(--placeholder-bg);
            color: var(--placeholder-text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            width: 100%;
            height: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Top Bar */
        .top-bar { 
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-size: 0.85rem;
            text-align: center;
            padding: 8px 0;
         font-weight: 700; }

        /* Header */
        header {
            background-color: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 500;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .logo-area {
            width: 180px;
            height: 60px;
            flex-shrink: 0;
        }

        .search-area {
            flex-grow: 1;
            max-width: 600px;
            display: flex;
        }

        .search-area input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .search-area input:focus {
            border-color: var(--primary-color);
        }

        .search-area button {
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .search-area button:hover {
            background-color: #520201;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Mega Menu */
        .sub-menu {
            background-color: var(--bg-color);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            position: relative;
            z-index: 100;
        }

        .sub-menu .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mega-wrapper { position: relative; }

        .mega-wrapper > a,
        .sub-menu .simple-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
            padding: 8px 15px;
            white-space: nowrap;
        }

        .mega-wrapper:hover > a,
        .sub-menu .simple-link:hover { color: var(--primary-color); }

        .mega-wrapper > a i,
        .sub-menu .simple-link i { color: var(--primary-color); font-size: 1.1rem; }

        .megamenu {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
            width: 580px;
            padding: 20px 25px 25px;
            z-index: 500;
            display: grid;
            grid-template-columns: 190px 1fr;
            gap: 25px;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .mega-wrapper:hover .megamenu {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        .mega-wrapper::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            display: none;
        }

        .mega-wrapper:hover::after {
            display: block;
        }

        .mega-links h3 {
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 8px;
        }

        .mega-links ul { list-style: none; }

        .mega-links ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.88rem;
            line-height: 1.3;
            margin-bottom: 10px;
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }

        .mega-links ul li a:hover { color: var(--primary-color); padding-left: 5px; }
        .mega-sub-group { margin-bottom: 14px; }
        .mega-sub-group-title { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 2px; }
        .mega-sub-group ul li a { padding-left: 12px; color: var(--text-light); }

        .mega-products { display: flex; align-items: center; gap: 8px; overflow: hidden; min-width: 0; }
        .mega-slider-wrap { width: 240px; flex: none; overflow: hidden; scroll-snap-type: x mandatory; }
        .mega-slider { display: flex; gap: 12px; }

        .mega-product-card {
            min-width: 240px; max-width: 240px;
            text-align: center; text-decoration: none;
            color: var(--text-dark); flex-shrink: 0;
            scroll-snap-align: start;
        }

        .mega-product-img {
            height: 240px;
            border: 1px solid var(--border-color);
            border-radius: 6px; margin-bottom: 8px; overflow: hidden;
        }

        .mega-product-name {
            font-size: 0.72rem; font-weight: 600;
            text-transform: uppercase; line-height: 1.3; display: block;
        }

        .mega-slider-btn {
            background: white; border: 1px solid var(--border-color);
            width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; color: var(--primary-color); flex-shrink: 0; transition: all 0.2s;
        }

        .mega-slider-btn:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }

        /* Main Content */
        main {
            padding-bottom: 60px;
        }

        .breadcrumb {
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* CatÃ¡logo Styles */
        .catalog-container {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
            margin: 40px 0 70px;
        }

        /* Sidebar / Filtros */
        .sidebar {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px 20px;
            align-self: start;
        }

        .filter-group {
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px dashed var(--border-color);
        }

        .filter-group:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .filter-title {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .filter-list {
            list-style: none;
        }

        .filter-list li {
            margin-bottom: 10px;
        }

        .filter-list label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.2s;
        }

        .filter-list label:hover {
            color: var(--text-dark);
        }

        .filter-list input[type="checkbox"] {
            accent-color: var(--primary-color);
            width: 16px;
            height: 16px;
            cursor: pointer;
        }


        /* Ã rea de Produtos */
        .catalog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .catalog-header h1 {
            font-size: 1.8rem;
            color: var(--text-dark);
        }

        .catalog-sort {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .catalog-sort label {
            font-weight: 500;
            color: var(--text-light);
        }

        .catalog-sort select {
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            outline: none;
            font-size: 0.95rem;
        }

        .products-grid-catalog {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            box-sizing: border-box;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #ccc;
        }

        .product-image {
            height: 240px;
            margin-bottom: 12px;
            border-radius: 4px;
            overflow: hidden;
        }

        .product-info {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-category {
            font-size: 0.8rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 2px;
        }

        .product-title {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }

        .btn-details {
            margin-top: auto;
            display: block;
            text-align: center;
            padding: 10px 0;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .product-card:hover .btn-details {
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }

        /* PaginaÃ§Ã£o */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: all 0.3s;
        }

        .page-link:hover, .page-link.active {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border-color: var(--primary-color);
        }

        /* Tarja de Frete */
        .shipping-banner-2 {
            background-color: #F9F1CD;
            color:#7E0302 !important;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            background-color: #68332D;
            color: var(--secondary-color);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-area {
            margin-bottom: 20px;
            width: auto;
            max-width: 220px;
            height: auto;
            background-color: transparent;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(249, 241, 205, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--secondary-color);
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: rgba(249, 241, 205, 0.7);
        }

        .footer-bottom {
            border-top: 1px solid rgba(249, 241, 205, 0.2);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(249, 241, 205, 0.5);
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .products-grid-catalog {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }
            .search-area {
                order: 3;
                max-width: 100%;
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .sub-menu {
                display: none;
            }
            .catalog-container {
                grid-template-columns: 1fr;
            }
            .products-grid-catalog {
                grid-template-columns: repeat(2, 1fr);
            }
            .catalog-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .products-grid-catalog {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

/* CSS from produto.html */


        

        

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .img-placeholder {
            background-color: var(--placeholder-bg);
            color: var(--placeholder-text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            width: 100%;
            height: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Top Bar */
        .top-bar { 
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-size: 0.85rem;
            text-align: center;
            padding: 8px 0;
         font-weight: 700; }

        /* Header */
        header {
            background-color: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 500;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .logo-area {
            width: 180px;
            height: 60px;
            flex-shrink: 0;
        }

        .search-area {
            flex-grow: 1;
            max-width: 600px;
            display: flex;
        }

        .search-area input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .search-area input:focus {
            border-color: var(--primary-color);
        }

        .search-area button {
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .search-area button:hover {
            background-color: #520201;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Mega Menu */
        .sub-menu {
            background-color: var(--bg-color);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            position: relative;
            z-index: 100;
        }

        .sub-menu .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mega-wrapper {
            position: relative;
        }

        .mega-wrapper>a,
        .sub-menu .simple-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
            padding: 8px 15px;
            white-space: nowrap;
        }

        .mega-wrapper:hover>a,
        .sub-menu .simple-link:hover {
            color: var(--primary-color);
        }

        .mega-wrapper>a i,
        .sub-menu .simple-link i {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .megamenu {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
            width: 580px;
            padding: 20px 25px 25px;
            z-index: 500;
            display: grid;
            grid-template-columns: 190px 1fr;
            gap: 25px;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .mega-wrapper:hover .megamenu {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        /* Ponte invisÃ­vel que preenche o espaÃ§o entre o link e o painel */
        .mega-wrapper::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            display: none;
        }

        .mega-wrapper:hover::after {
            display: block;
        }

        .mega-links h3 {
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 8px;
        }

        .mega-links ul {
            list-style: none;
        }

        .mega-links ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.88rem;
            line-height: 1.3;
            margin-bottom: 10px;
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }

        .mega-links ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .mega-sub-group {
            margin-bottom: 14px;
        }

        .mega-sub-group-title {
            font-weight: 700;
            font-size: 0.88rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .mega-sub-group ul li a {
            padding-left: 12px;
            color: var(--text-light);
        }

        .mega-products {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow: hidden;
            min-width: 0;
        }

        .mega-slider-wrap {
            width: 240px;
            flex: none;
            overflow: hidden;
            scroll-snap-type: x mandatory;
        }

        .mega-slider {
            display: flex;
            gap: 12px;
        }

        .mega-product-card {
            min-width: 240px;
            max-width: 240px;
            text-align: center;
            text-decoration: none;
            color: var(--text-dark);
            flex-shrink: 0;
            scroll-snap-align: start;
        }

        .mega-product-img {
            height: 240px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            margin-bottom: 8px;
            overflow: hidden;
        }

        .mega-product-name {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1.3;
            display: block;
        }

        .mega-slider-btn {
            background: white;
            border: 1px solid var(--border-color);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--primary-color);
            flex-shrink: 0;
            transition: all 0.2s;
        }

        .mega-slider-btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Main Content */
        main {
            padding-bottom: 60px;
        }

        /* Product Detail Styles */
        .breadcrumb {
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .product-detail-section {
            margin-top: 40px;
            margin-bottom: 70px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .product-gallery .img-placeholder {
            height: 500px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .product-info-panel h1 {
            font-size: 2.2rem;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .product-info-panel .product-category {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 5px;
        }

        .product-info-panel .product-price {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
            margin: 20px 0;
        }

        .product-info-panel .product-description {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
        }

        .product-specs {
            margin-top: 40px;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .product-specs h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .product-specs ul {
            list-style: none;
            padding: 0;
        }

        .product-specs li {
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-color);
            display: flex;
            justify-content: space-between;
            color: var(--text-light);
        }

        .product-specs li span {
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Products Grid */
        .section-title {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 40px;
            color: var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 10px auto 0;
        }

        .products-section {
            margin-bottom: 70px;
            position: relative;
        }

        .products-nav-btn {
            position: absolute;
            top: 55%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            color: var(--text-light);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .products-nav-btn:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .products-prev {
            left: -20px;
        }

        .products-next {
            right: -20px;
        }

        .products-grid-wrap {
            position: relative;
            z-index: 2;
        }

        .products-grid {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
        }

        .product-card {
            flex: 0 0 calc((100% - 100px) / 5);
            /* Exibe exatamente 5 itens */
            margin-top: 10px;
            margin-bottom: 35px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            box-sizing: border-box;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #ccc;
        }

        .product-image {
            height: 240px;
            margin-bottom: 20px;
            border-radius: 4px;
            overflow: hidden;
        }

        .product-info {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-category {
            font-size: 0.8rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }

        .btn-details {
            margin-top: auto;
            display: block;
            text-align: center;
            padding: 10px 0;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .product-card:hover .btn-details {
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }

        /* Tarja de Frete */
        .shipping-banner-2 {
            background-color: #F9F1CD;
            color: #7E0302 !important;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            background-color: #68332D;
            color: var(--secondary-color);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-area {
            margin-bottom: 20px;
            width: auto;
            max-width: 220px;
            height: auto;
            background-color: transparent;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(249, 241, 205, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--secondary-color);
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: rgba(249, 241, 205, 0.7);
        }

        .footer-bottom {
            border-top: 1px solid rgba(249, 241, 205, 0.2);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(249, 241, 205, 0.5);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }

            .search-area {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .product-card {
                flex: 0 0 calc((100% - 75px) / 4);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .sub-menu {
                display: none;
            }

            .product-detail-section {
                grid-template-columns: 1fr;
            }

            .product-gallery .img-placeholder {
                height: 350px;
            }

            .product-card {
                flex: 0 0 calc((100% - 50px) / 3);
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .product-card {
                flex: 0 0 calc((100% - 25px) / 2);
            }
        }

/* CSS from sobre-nos.html */


        

        

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .img-placeholder {
            background-color: var(--placeholder-bg);
            color: var(--placeholder-text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            width: 100%;
            height: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Top Bar */
        .top-bar { 
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-size: 0.85rem;
            text-align: center;
            padding: 8px 0;
         font-weight: 700; }

        /* Header */
        header {
            background-color: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 500;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .logo-area {
            width: 180px;
            height: 60px;
            flex-shrink: 0;
        }

        .search-area {
            flex-grow: 1;
            max-width: 600px;
            display: flex;
        }

        .search-area input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .search-area input:focus {
            border-color: var(--primary-color);
        }

        .search-area button {
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .search-area button:hover {
            background-color: #520201;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Mega Menu */
        .sub-menu {
            background-color: var(--bg-color);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            position: relative;
            z-index: 100;
        }

        .sub-menu .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mega-wrapper { position: relative; }

        .mega-wrapper > a,
        .sub-menu .simple-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
            padding: 8px 15px;
            white-space: nowrap;
        }

        .mega-wrapper:hover > a,
        .sub-menu .simple-link:hover { color: var(--primary-color); }

        .mega-wrapper > a i,
        .sub-menu .simple-link i { color: var(--primary-color); font-size: 1.1rem; }

        .megamenu {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
            width: 580px;
            padding: 20px 25px 25px;
            z-index: 500;
            display: grid;
            grid-template-columns: 190px 1fr;
            gap: 25px;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .mega-wrapper:hover .megamenu {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        .mega-wrapper::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            display: none;
        }

        .mega-wrapper:hover::after {
            display: block;
        }

        .mega-links h3 {
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 8px;
        }

        .mega-links ul { list-style: none; }

        .mega-links ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.88rem;
            line-height: 1.3;
            margin-bottom: 10px;
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }

        .mega-links ul li a:hover { color: var(--primary-color); padding-left: 5px; }
        .mega-sub-group { margin-bottom: 14px; }
        .mega-sub-group-title { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 2px; }
        .mega-sub-group ul li a { padding-left: 12px; color: var(--text-light); }

        .mega-products { display: flex; align-items: center; gap: 8px; overflow: hidden; min-width: 0; }
        .mega-slider-wrap { width: 240px; flex: none; overflow: hidden; scroll-snap-type: x mandatory; }
        .mega-slider { display: flex; gap: 12px; }

        .mega-product-card {
            min-width: 240px; max-width: 240px;
            text-align: center; text-decoration: none;
            color: var(--text-dark); flex-shrink: 0;
            scroll-snap-align: start;
        }

        .mega-product-img {
            height: 240px;
            border: 1px solid var(--border-color);
            border-radius: 6px; margin-bottom: 8px; overflow: hidden;
        }

        .mega-product-name {
            font-size: 0.72rem; font-weight: 600;
            text-transform: uppercase; line-height: 1.3; display: block;
        }

        .mega-slider-btn {
            background: white; border: 1px solid var(--border-color);
            width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; color: var(--primary-color); flex-shrink: 0; transition: all 0.2s;
        }

        .mega-slider-btn:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }

        /* Main Content */
        main {
            padding-bottom: 60px;
        }

        .breadcrumb {
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* Sobre NÃ³s Styles */
        .section-title {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 40px;
            color: var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 10px auto 0;
        }

        .about-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin: 50px 0;
        }

        .about-image {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            height: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .about-content h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .about-content strong {
            color: var(--text-dark);
        }

        .values-section {
            background-color: var(--secondary-color);
            padding: 60px 0;
            margin: 60px 0;
            border-radius: 8px;
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .value-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .value-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 70px;
        }

        .mv-card {
            padding: 40px;
            border-radius: 8px;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: border-color 0.3s;
        }

        .mv-card:hover {
            border-color: var(--primary-color);
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 5px; height: 100%;
            background-color: var(--primary-color);
            border-radius: 8px 0 0 8px;
        }

        .mv-card h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .mv-card p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* Tarja de Frete */
        .shipping-banner-2 {
            background-color: #F9F1CD;
            color: #7E0302 !important;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            background-color: #68332D;
            color: var(--secondary-color);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-area {
            margin-bottom: 20px;
            width: auto;
            max-width: 220px;
            height: auto;
            background-color: transparent;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(249, 241, 205, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--secondary-color);
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: rgba(249, 241, 205, 0.7);
        }

        .footer-bottom {
            border-top: 1px solid rgba(249, 241, 205, 0.2);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(249, 241, 205, 0.5);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }

            .search-area {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .sub-menu {
                display: none;
            }
            
            .about-hero, .mission-vision {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

/* CSS from contato.html */


        

        

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .img-placeholder {
            background-color: var(--placeholder-bg);
            color: var(--placeholder-text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            width: 100%;
            height: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Top Bar */
        .top-bar { 
            background-color: var(--primary-color);
            color: var(--secondary-color);
            font-size: 0.85rem;
            text-align: center;
            padding: 8px 0;
         font-weight: 700; }

        /* Header */
        header {
            background-color: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 500;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .logo-area {
            width: 180px;
            height: 60px;
            flex-shrink: 0;
        }

        .search-area {
            flex-grow: 1;
            max-width: 600px;
            display: flex;
        }

        .search-area input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .search-area input:focus {
            border-color: var(--primary-color);
        }

        .search-area button {
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .search-area button:hover {
            background-color: #520201;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Mega Menu */
        .sub-menu {
            background-color: var(--bg-color);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            position: relative;
            z-index: 100;
        }

        .sub-menu .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mega-wrapper { position: relative; }

        .mega-wrapper > a,
        .sub-menu .simple-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
            padding: 8px 15px;
            white-space: nowrap;
        }

        .mega-wrapper:hover > a,
        .sub-menu .simple-link:hover { color: var(--primary-color); }

        .mega-wrapper > a i,
        .sub-menu .simple-link i { color: var(--primary-color); font-size: 1.1rem; }

        .megamenu {
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
            width: 580px;
            padding: 20px 25px 25px;
            z-index: 500;
            display: grid;
            grid-template-columns: 190px 1fr;
            gap: 25px;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .mega-wrapper:hover .megamenu {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        /* Ponte invisÃ­vel que preenche o espaÃ§o entre o link e o painel */
        .mega-wrapper::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px;
            display: none;
        }

        .mega-wrapper:hover::after {
            display: block;
        }

        .mega-links h3 {
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 8px;
        }

        .mega-links ul { list-style: none; }

        .mega-links ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.88rem;
            line-height: 1.3;
            margin-bottom: 10px;
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }

        .mega-links ul li a:hover { color: var(--primary-color); padding-left: 5px; }
        .mega-sub-group { margin-bottom: 14px; }
        .mega-sub-group-title { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 2px; }
        .mega-sub-group ul li a { padding-left: 12px; color: var(--text-light); }

        .mega-products { display: flex; align-items: center; gap: 8px; overflow: hidden; min-width: 0; }
        .mega-slider-wrap { width: 240px; flex: none; overflow: hidden; scroll-snap-type: x mandatory; }
        .mega-slider { display: flex; gap: 12px; }

        .mega-product-card {
            min-width: 240px; max-width: 240px;
            text-align: center; text-decoration: none;
            color: var(--text-dark); flex-shrink: 0;
            scroll-snap-align: start;
        }

        .mega-product-img {
            height: 240px;
            border: 1px solid var(--border-color);
            border-radius: 6px; margin-bottom: 8px; overflow: hidden;
        }

        .mega-product-name {
            font-size: 0.72rem; font-weight: 600;
            text-transform: uppercase; line-height: 1.3; display: block;
        }

        .mega-slider-btn {
            background: white; border: 1px solid var(--border-color);
            width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.75rem; color: var(--primary-color); flex-shrink: 0; transition: all 0.2s;
        }

        .mega-slider-btn:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }

        /* Main Content */
        main {
            padding-bottom: 60px;
        }

        .breadcrumb {
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* Contact Styles */
        .contact-section {
            margin: 50px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info-panel h1 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .contact-info-panel p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.05rem;
        }

        .contact-details {
            list-style: none;
            margin-bottom: 40px;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            color: var(--text-dark);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-text p, .contact-text a {
            color: var(--text-light);
            text-decoration: none;
        }

        .contact-text a:hover {
            color: var(--primary-color);
        }

        .contact-form-panel {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .contact-form-panel h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary-color);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .btn-submit:hover {
            background-color: #520201;
        }
        
        .map-section {
            margin-bottom: 70px;
        }
        
        .section-title {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 40px;
            color: var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 10px auto 0;
        }

        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        /* Tarja de Frete */
        .shipping-banner-2 {
            background-color: #F9F1CD;
            color: #7E0302 !important;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            background-color: #68332D;
            color: var(--secondary-color);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-area {
            margin-bottom: 20px;
            width: auto;
            max-width: 220px;
            height: auto;
            background-color: transparent;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(249, 241, 205, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--secondary-color);
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: rgba(249, 241, 205, 0.7);
        }

        .footer-bottom {
            border-top: 1px solid rgba(249, 241, 205, 0.2);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(249, 241, 205, 0.5);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }

            .search-area {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .sub-menu {
                display: none;
            }

            .contact-section {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(249, 241, 205, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--secondary-color);
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: rgba(249, 241, 205, 0.7);
        }

        .footer-bottom {
            border-top: 1px solid rgba(249, 241, 205, 0.2);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(249, 241, 205, 0.5);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }

            .search-area {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .sub-menu {
                display: none;
            }

            .contact-section {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }




/* Top Bar */
.top-bar { font-weight: 700; }


/* Categorias Section Spacing */
.categories-section { margin-bottom: 70px; }

/* Textos de Avisos (Faixas) e Rodapé */
.top-bar, 
.top-bar *, 
.shipping-banner, 
.shipping-banner * {
    color: #ffffff !important;
}

footer, 
footer p, 
footer li, 
footer a, 
footer .footer-brand p, 
footer .contact-info li, 
footer .footer-bottom, 
footer .footer-bottom p {
    color: #ffffff !important;
}

/* Títulos do rodapé (h4) e ícones sociais ajustados */
/* footer .footer-col h4 removido daqui para ser branco */

.footer-social a:hover i {
    transform: translateY(-2px);
    opacity: 0.85;
}

footer a,
footer a:hover,
footer .footer-col ul a,
footer .footer-col ul a:hover,
footer .footer-bottom a,
footer .footer-bottom a:hover {
    text-decoration: none !important;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Banner Principal (Hero) 100% Largura e Proporcional 1920x640px (Aspect-Ratio 3:1 sem cortes) */
.hero-slider-section {
    width: 100% !important;
    aspect-ratio: 1920 / 640;
    height: auto !important;
    max-height: none !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 1920 / 640;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Category Circle Image - Full 100% Fit */
.category-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* Footer Custom Styles - Titles with Underline & Social Media Buttons */
footer .footer-col h4,
footer h4 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-bottom: 22px !important;
    position: relative !important;
    padding-bottom: 10px !important;
}

footer .footer-col h4::after,
footer h4::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 48px !important;
    height: 3px !important;
    background-color: var(--primary-color, #730302) !important;
    border-radius: 2px !important;
}

footer .footer-social {
    margin-top: 25px !important;
    display: flex !important;
    gap: 14px !important;
}

footer .footer-social a.social-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    background-color: var(--primary-color, #730302) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    font-size: 1.45rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
}

footer .footer-social a.social-btn i {
    color: #ffffff !important;
}

footer .footer-social a.social-btn:hover {
    transform: translateY(-3px) !important;
    background-color: #520202 !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.4) !important;
}

/* Facebook Icon Special Style (White Circle with Dark Red 'f') */
footer .footer-social a.social-facebook i {
    background: #ffffff !important;
    color: var(--primary-color, #730302) !important;
    border-radius: 50% !important;
    width: 26px !important;
    height: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
}

/* Altura padrão dos cards e alinhamento dos textos */
.product-card {
    height: 460px !important;
}

.products-grid-catalog .product-card {
    height: 420px !important;
}

.product-card .product-category {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.4 !important;
    height: 2.8em !important; /* Garante exatamente 2 linhas de altura */
}

.product-card .product-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.4 !important;
    height: 2.8em !important; /* Garante exatamente 2 linhas de altura */
}

/* Contact page: single column (sem formulário) */
.contact-section--single {
    display: block !important;
    grid-template-columns: unset !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mapa 100% largura (sai do container) */
.map-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 70px;
}

.map-section .section-title {
    padding: 0 20px;
}

.map-section .map-container {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    height: 450px !important;
    padding: 0 !important;
}

.map-section .map-container iframe {
    width: 100% !important;
    height: 450px !important;
    display: block !important;
    border: 0 !important;
}

/* Sidebar / Filtro Catalogo (Wireframe Layout) */
.filter-sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #f2f2f2;
}

.filter-sidebar .filter-group {
    margin-bottom: 24px;
}

.filter-sidebar .filter-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.filter-sidebar .filter-list,
.filter-sidebar .filter-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-sidebar .filter-list > li {
    margin-bottom: 12px;
}

.filter-sidebar .filter-sublist {
    padding-left: 28px;
    margin-top: 12px;
}

.filter-sidebar .filter-sublist > li {
    margin-bottom: 12px;
}

.custom-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    user-select: none;
}

.custom-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-radio {
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    margin-right: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.custom-radio-label:hover .custom-radio {
    border-color: var(--primary-color);
}

.custom-radio-label input:checked ~ .custom-radio {
    border-color: var(--primary-color);
    border-width: 5px; /* Cria o ponto interno diminuindo o espaco vazio do background */
}

.custom-radio-label .radio-text {
    color: #555;
    transition: color 0.2s ease;
}

.custom-radio-label input:checked ~ .radio-text {
    color: #333;
}

.sub-arrow {
    color: #a0a0a0;
    margin-right: 2px;
    font-size: 1rem;
    display: inline-block;
}

.filter-divider {
    border-top: 1px dashed #e0e0e0;
    margin: 30px 0;
}

.filter-scroll-container {
    max-height: calc(10 * 36px);
    overflow-y: auto;
    padding-right: 4px;
}
.filter-scroll-container::-webkit-scrollbar {
    width: 5px;
}
.filter-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.filter-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.filter-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.filter-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: opacity 0.2s;
}
.filter-back-link:hover {
    opacity: 0.8;
}

.filter-count {
    font-size: 0.85rem;
    color: #888;
    margin-left: 4px;
    font-weight: 400;
}

.filter-search-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #eedada;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.filter-search-input::placeholder {
    color: #b3b3b3;
}

.filter-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-search-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    transition: background-color 0.2s;
}

.filter-search-btn:hover {
    background-color: #5a0201; /* darker shade of primary */
}

/* Product Detail Column Structure (Wireframe Alignment) */
.product-info-panel .product-category {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.product-detail-title {
    font-size: 1.9rem !important;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-ref-code {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 25px;
    font-weight: 500;
}

.product-actions-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.btn-whatsapp-full {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.btn-whatsapp-full:hover {
    background-color: #1eb857;
}

.btn-share-full {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #f8f9fa;
    color: #333333;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-share-full:hover {
    background-color: #edf2f7;
    border-color: #cbd5e0;
}

.product-specs {
    margin-top: 30px;
}

.product-specs h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececec;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    padding: 14px 0;
    border-bottom: 1px solid #f4f4f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-specs .spec-label {
    color: #777777;
    font-size: 0.95rem;
    font-weight: 400;
}

.product-specs .spec-value {
    color: #111111;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
}

/* Modern Contact Page Styles */
.contact-header {
    text-align: center;
    max-width: 750px;
    margin: 40px auto 45px auto;
}

.contact-header .contact-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-header .contact-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(115, 3, 2, 0.08);
    border-color: rgba(115, 3, 2, 0.2);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-icon-wa {
    background: #e8fadf;
    color: #25D366;
}

.contact-icon-phone {
    background: #fdf0f0;
    color: var(--primary-color);
}

.contact-icon-email {
    background: #fdf0f0;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.98rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-card-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card-link:hover {
    color: var(--primary-color);
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-wa-action {
    background: #25D366;
    color: #fff !important;
}

.btn-wa-action:hover {
    background: #1eb857;
}

.btn-phone-action, .btn-email-action {
    background: #f8f9fa;
    color: var(--text-dark) !important;
    border: 1px solid #e2e8f0;
}

.btn-phone-action:hover, .btn-email-action:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
}

/* =========================================
   SOBRE NÓS PAGE (Wireframe Layout)
========================================= */

.about-hero-section {
    margin-bottom: 80px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-content p,
.about-hero-full-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
}

.about-hero-content strong,
.about-hero-full-text strong {
    color: var(--primary-color);
}

.about-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-height: 480px;
}

@media (max-width: 768px) {
    .about-hero-image img {
        margin-bottom: 15px;
        margin-top: -22px;
    }
}

.about-differentials-wrapper {
    background-color: #F8F7F5;
    padding: 70px 0;
    margin-bottom: 80px;
}

.about-section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.about-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.about-differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.diff-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fdf0f0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px auto;
}

.diff-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.diff-card p {
    font-size: 0.95rem;
    color: #777777;
    line-height: 1.6;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card-new {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 45px 40px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.mv-card-new h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mv-card-new p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.mv-bg-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    color: #f5f5f5;
    z-index: 1;
}

/* Reponsividade Sobre Nós */
@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    .about-differentials-grid {
        grid-template-columns: 1fr;
    }
    .about-mission-vision {
        grid-template-columns: 1fr;
    }
}

/* ========================================================
   IMPLEMENTAÇÃO MOBILE FIRST (RESPONSIVIDADE EXCLUSIVA)
   Nenhuma regra fora destes Media Queries deve alterar 
   o layout original do Desktop.
======================================================== */

/* Elementos exclusivos do Mobile - Ocultos no Desktop */
.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu-drawer,
.mobile-filter-btn,
.filter-overlay,
.mobile-filter-header {
    display: none;
}

/* --- AJUSTES PARA TABLETS E SMARTPHONES (Até 992px) --- */
@media (max-width: 992px) {
    /* Esconder Menu Desktop e Buscar Desktop */
    .nav-links,
    .sub-menu,
    .header-content .search-area {
        display: none !important;
    }

    /* Mostrar Toggle e ajustar Header Content */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .header-content {
        justify-content: center; /* Centralizar Logo */
        align-items: center;
        position: relative;
        padding: 6px 0;
        min-height: 56px; /* Reduzido para diminuir a área branca */
    }
    
    .header-content .logo-area {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .header-content .logo-area img {
        max-height: 70px !important; /* Ajuste visual equilibrado */
        display: block;
    }
    
    /* Overlay e Drawer Mobile */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100%;
        height: 100dvh;
        background: #fff;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }
    .mobile-menu-drawer.active {
        left: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
    }
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
    }
    
    .mobile-menu-body {
        padding: 20px;
        flex: 1;
        overflow-y: auto;
    }
    
    /* Mobile Search */
    .mobile-search-form {
        display: flex;
        margin-bottom: 25px;
    }
    .mobile-search-form input {
        flex: 1;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px 0 0 4px;
        font-size: 1rem;
        min-width: 0; /* Impede o input de empurrar o botão */
    }
    .mobile-search-form button {
        padding: 12px 15px;
        background: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 0 4px 4px 0;
        font-size: 1rem;
        cursor: pointer;
        flex-shrink: 0; /* Impede o botão de ser cortado/encolhido */
    }
    
    /* Mobile Nav Main */
    .mobile-nav-main {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 25px;
    }
    .mobile-nav-main a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-dark);
        font-size: 1.1rem;
        font-weight: 500;
        text-decoration: none;
    }
    .mobile-nav-main a i {
        color: var(--primary-color);
        width: 20px;
        text-align: center;
    }
    
    /* Mobile Accordion */
    .mobile-menu-categories-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 15px;
    }
    .mobile-accordion-item {
        border-bottom: 1px solid #eee;
    }
    .mobile-accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
    }
    .mobile-accordion-header a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-dark);
        font-weight: 500;
        text-decoration: none;
        flex: 1;
    }
    .mobile-accordion-header a i {
        color: var(--primary-color);
        width: 18px;
        text-align: center;
        font-size: 0.95rem;
    }
    .mobile-accordion-toggle {
        background: none;
        border: none;
        font-size: 1rem;
        color: #666;
        padding: 5px;
        cursor: pointer;
    }
    .mobile-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-left: 28px;
    }
    .mobile-accordion-content a {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        padding: 5px 0;
    }
    .mobile-accordion-content a.ver-todos-link {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 10px;
    }
}

/* --- AJUSTES EXCLUSIVOS PARA SMARTPHONES (Até 768px) --- */
@media (max-width: 768px) {
    /* Prevenção de overflow horizontal em toda a página */
    body {
        overflow-x: hidden;
    }
    .container {
        padding: 0 15px;
        box-sizing: border-box;
        max-width: 100%;
    }

    /* Top Bar */
    .top-bar {
        font-size: 0.75rem;
        text-align: center;
        padding: 8px 10px;
    }

    /* Reduzir padding do header branco no mobile */
    header {
        padding: 4px 0;
    }

    /* Home: Hero Banner */
    .hero-slider-section {
        height: auto !important;
        aspect-ratio: 1920 / 640; /* Padrão Desktop */
        margin-bottom: 30px;
        overflow: hidden;
        position: relative;
    }
    .hero-slider-section.hero-mobile-active {
        aspect-ratio: 4 / 3 !important; /* Proporção 600x450px para mobile */
    }
    .hero-slide {
        font-size: 1.2rem;
    }
    .hero-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    /* Slider Desktop oculto em mobile quando existem banners mobile */
    .hero-slides-desktop.has-mobile-version {
        display: none !important;
    }
    /* Slider Mobile: exibido apenas em telas menores */
    .hero-slides-mobile {
        display: flex !important;
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .hero-slides-mobile .hero-slide {
        min-width: 100%;
        height: 100%;
        flex-shrink: 0;
        aspect-ratio: unset !important; /* Desfaz o aspect-ratio 1920/640 herdado do desktop */
    }

    /* Ajuste de espaçamento entre seções da Home no Mobile */
    .products-section {
        margin-bottom: 20px !important;
    }

    /* Home: Diferenciais (Features) como Carrossel */
    .features {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 10px 15px;
        gap: 15px;
        margin: 20px 0 30px 0;
        align-items: center;
    }
    .feature-item {
        flex: 0 0 100%;
        scroll-snap-align: center;
        justify-content: center;
        padding: 15px;
        box-sizing: border-box;
    }

    /* Home: Categorias (Scroll Horizontal) */
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    .categories-wrap {
        padding-bottom: 10px;
    }
    .categories-grid {
        justify-content: flex-start;
        gap: 20px;
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100%;
    }
    .category-item {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    .category-image {
        width: 90px;
        height: 90px;
    }
    .category-item span {
        font-size: 0.9rem;
    }

    /* Home: Produtos Destaque (Scroll Horizontal) */
    .products-grid-wrap {
        padding-bottom: 15px;
    }
    .products-grid {
        justify-content: flex-start;
        align-items: flex-start; /* Cada card assume sua altura natural, sem esticar */
        padding: 0 15px;
        overflow-x: auto !important; /* Sobrescreve o global hidden */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        width: 100%;
        gap: 15px;
    }
    /* Largura dos cards: calc para que 2 caibam visiveis, mesmo visual do catálogo */
    .products-grid .product-card {
        scroll-snap-align: start;
        width: calc(50vw - 25px);
        flex: 0 0 calc(50vw - 25px) !important;
        height: auto !important;   /* Impede esticamento pela altura do vizinho */
        padding: 10px;
        box-sizing: border-box;
        min-width: 140px;
        max-width: 200px;
    }
    /* product-info não cresce infinitamente — botão fica logo após o título */
    .products-grid .product-card .product-info {
        flex-grow: 0;
    }
    /* Imagem compacta, mesma proporção do catálogo no mobile */
    .products-grid .product-card .product-image {
        height: 200px;
        margin-bottom: 8px;
    }
    .products-nav-btn {
        display: none; /* Esconder botões de slide no mobile, usar swipe */
    }

    /* Home: Banner Split */
    .banner-split {
        flex-direction: column;
        height: auto;
        gap: 15px;
        margin-top: 20px !important;
        margin-bottom: 70px !important;
    }
    .banner-box {
        height: auto;
    }

    /* Home: Marcas */
    .brands-section {
        margin-top: 20px !important;
        margin-bottom: 90px !important;
    }
    .brands-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .brand-item {
        scroll-snap-align: start;
        width: 120px;
        height: 80px;
    }

    /* Catálogo: Botão Flutuante/Fixo de Filtro */
    .mobile-filter-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 12px;
        background: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 20px;
        cursor: pointer;
    }

    /* Catálogo: Grid em 1 coluna e filtro como drawer */
    .catalog-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto 1fr;
        gap: 0;
        margin: 20px 0 40px;
        box-sizing: border-box;
        width: 100%;
        overflow: hidden;
    }
    /* A sidebar no catálogo: oculta via position:fixed fora da tela, ativa ao abrir */
    .filter-sidebar {
        position: fixed !important;
        bottom: -100% !important;
        left: 0;
        width: 100%;
        height: 85vh;
        background: #fff;
        z-index: 2001;
        padding: 0;
        border-radius: 20px 20px 0 0;
        transition: bottom 0.3s ease-out;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
        display: flex !important; /* Flex para layout interno do drawer */
        flex-direction: column;
        overflow-y: auto; /* Permite scroll no drawer */
    }
    .filter-sidebar.active {
        bottom: 0 !important;
    }

    .filter-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.6);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .filter-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #eee;
        background: #fff;
        border-radius: 20px 20px 0 0;
        position: sticky;
        top: 0;
        z-index: 2002;
    }
    .mobile-filter-header h3 {
        margin: 0;
        font-size: 1.2rem;
        color: var(--text-dark);
    }
    .mobile-filter-header button {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
    }

    .filter-group {
        padding: 20px;
        overflow-y: auto;
    }
    
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .catalog-sort select {
        width: 100%;
        padding: 10px;
    }
    
    .search-mobile-fixed {
        position: sticky;
        bottom: 0;
        background: #fff;
        z-index: 2002;
        margin-bottom: 0 !important;
        padding-bottom: 30px !important; /* Espaço extra p/ barra do iOS */
        border-top: 1px solid #eee;
        flex-shrink: 0;
    }

    /* Catálogo: Grid em 2 Colunas */
    .products-grid-catalog {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Produto Card ajustes (geral) para caber bem em 2 colunas */
    .product-card {
        padding: 10px;
        box-sizing: border-box;
    }
    .products-grid-catalog .product-card {
        width: 100% !important;  /* Sobrepõe a largura fixa do card de home */
        flex: none !important;   /* Sobrepõe o flex do card de home */
        min-width: 0 !important;
    }
    .product-title {
        font-size: 0.95rem;
    }
    .btn-details {
        font-size: 0;
        padding: 6px 12px;
    }
    .btn-details::after {
        content: "Detalhes";
        font-size: 0.85rem;
    }
    .shipping-banner {
        font-size: 0.75rem;
    }

    /* Página do Produto */
    .product-detail-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .product-gallery {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .product-info-panel {
        width: 100% !important;
        padding: 0 10px;
    }

    .product-detail-title {
        font-size: 1.5rem !important;
        margin-bottom: 10px;
    }

    .product-actions-stack {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .btn-whatsapp-full {
        font-size: 1.1rem;
        padding: 16px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
    }
    
    .btn-share-full {
        font-size: 1rem;
        padding: 14px;
        border-radius: 8px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-full-description {
        padding: 20px !important;
    }
    .product-full-description h2 {
        font-size: 1.2rem !important;
    }

    /* Rodapé (Footer) - Alinhamentos e empilhamento */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-brand,
    .footer-col {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Banners Hero Mobile — desktop slider oculto, mobile slider ativo */
    .hero-slides-desktop.has-mobile-version {
        display: none !important;
    }
}

/* ====== Fora dos @media queries: globais para todos os viewports ====== */

/* Ocultar slider mobile no Desktop tratado via media query abaixo */

/* Desktop-only: ocultar slider de desktop quando houver versão mobile cadastrada */
@media (min-width: 769px) {
    .hero-slides-desktop.has-mobile-version {
        display: flex;
    }
    .hero-slides-mobile {
        display: none !important;
    }
}

/* Ocultar scrollbar nativa (webkit) nas seções de rolagem horizontal da Home e Mobile */
.categories-grid::-webkit-scrollbar,
.brands-wrap::-webkit-scrollbar,
.products-grid::-webkit-scrollbar,
.features::-webkit-scrollbar {
    display: none;
}
.categories-grid,
.brands-wrap,
.products-grid,
.features {
    -ms-overflow-style: none;  /* IE e Edge */
    scrollbar-width: none;     /* Firefox */
}

/* ===================================================================
   PADRONIZAÇÃO DE COMPONENTES NATIVOS — SITE PÚBLICO
   Segue rigorosamente a paleta, tipografia e bordas do Design System.
   =================================================================== */

/* --- Focus Ring Universal --- */
:focus-visible {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px rgba(115, 3, 2, 0.18);
}
:focus:not(:focus-visible) { outline: none; }

/* --- accent-color global para checkboxes/radios nativos --- */
input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* --- Select aprimorado --- */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 34px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
select:hover { border-color: #aaa; }
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(115, 3, 2, 0.12);
}
select:disabled {
    background-color: #f5f5f5;
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.7;
}

/* --- Inputs textuais do site público --- */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input[type="text"]:hover,
input[type="search"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
textarea:hover { border-color: #aaa; }
input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(115, 3, 2, 0.12);
}

/* Placeholder */
::placeholder {
    color: #b0b7c3;
    font-style: normal;
}

/* Search: remover botões nativos do webkit */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* Number: setas discretas */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { opacity: 0.4; }

/* --- Fieldset & Legend --- */
fieldset {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
}
legend {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0 8px;
}

/* --- Details & Summary --- */
details {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    background: #fff;
}
details[open] { border-color: var(--primary-color); }
summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
details[open] summary::after { transform: rotate(180deg); }

/* --- Disabled global --- */
:disabled,
[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ---- Custom Dropdown Component ---- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
/* Ocultação acessível (visually hidden), preservando required e foco nativo */
.custom-select-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    top: 50% !important;
    left: 50% !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--card-bg, #fff);
    color: var(--text-dark);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    min-height: 38px;
}
.custom-select-trigger:focus,
.custom-select-wrapper.is-open .custom-select-trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(115, 3, 2, 0.1);
    outline: none;
}
.custom-select-trigger .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--text-light);
}
.custom-select-wrapper.is-open .custom-select-trigger .arrow {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
}
.custom-select-options.open-up {
    transform: translateY(-5px);
}
.custom-select-wrapper.is-open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-select-option {
    padding: 10px 12px;
    font-size: 0.875rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.custom-select-option:hover,
.custom-select-option.is-highlighted {
    background-color: rgba(115, 3, 2, 0.05);
    color: var(--primary-color);
}
.custom-select-option.is-selected {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}
.custom-select-wrapper.is-disabled .custom-select-trigger {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: var(--border-color);
}

@media (min-width: 993px) {
    .product-actions-stack {
        flex-direction: row;
        justify-content: space-between;
    }
    .btn-whatsapp-full {
        width: 85%;
    }
    .btn-share-full {
        width: calc(15% - 12px);
        padding: 0;
    }
    .btn-share-full .share-text {
        display: none;
    }
    .btn-share-full i {
        margin: 0;
        font-size: 1.2rem;
    }
}

/* Alteração global: Todos os botões com cor de fundo #730302 devem ter texto #FFFFFF */
.btn-primary, .btn-primary:hover, .btn-buy, .btn-buy:hover, .mobile-filter-btn, .mobile-filter-btn:hover, .search-area button, .search-area button:hover, button[style*="background: var(--primary-color)"], button[style*="background-color: var(--primary-color)"], button[style*="background: #730302"], button[style*="background-color: #730302"], a[style*="background: var(--primary-color)"], a[style*="background-color: var(--primary-color)"], a[style*="background: #730302"], a[style*="background-color: #730302"],
button[style*="background: var(--primary-color)"]:hover, button[style*="background-color: var(--primary-color)"]:hover, button[style*="background: #730302"]:hover, button[style*="background-color: #730302"]:hover, a[style*="background: var(--primary-color)"]:hover, a[style*="background-color: var(--primary-color)"]:hover, a[style*="background: #730302"]:hover, a[style*="background-color: #730302"]:hover {
    color: #FFFFFF !important;
}

/* Alteração global: Botão de detalhes do produto deve ter texto branco no hover */
.product-card:hover .btn-details, .btn-details:hover {
    color: #FFFFFF !important;
}

/* Ajuste de tamanho da fonte para subcategorias, marcas e contadores no filtro */
.filter-sidebar .sub-text,
.filter-sidebar .brand-text {
    font-size: 0.85rem;
}

.filter-sidebar .filter-count {
    font-size: 0.9em;
    opacity: 0.8;
}

/* ---- Home Institutional Section ---- */
.home-institutional-section {
    background-color: #F6F4F1;
    padding: 100px 0;
    margin-top: 60px;
    margin-bottom: 0;
}
.home-inst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-inst-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}
.home-inst-content {
    padding-right: 40px;
}
.home-inst-title {
    font-size: 2.4rem;
    color: #4A0E17;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}
.home-inst-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
}
.home-inst-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home-inst-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.home-inst-features i {
    font-size: 1.2rem;
    color: #4A0E17;
    margin-top: 4px;
}
.home-inst-features strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.home-inst-features span {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 992px) {
    .home-inst-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .home-inst-content {
        padding-right: 0;
    }
    .home-institutional-section {
        padding: 100px 20px;
    }
    .home-inst-title {
        font-size: 2rem;
        margin-top: -15px;
    }
}

/* ---- Custom Dropdown Component ---- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
/* Ocultação acessível (visually hidden), preservando required e foco nativo */
.custom-select-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    top: 50% !important;
    left: 50% !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--card-bg, #fff);
    color: var(--text-dark);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    min-height: 38px;
}
.custom-select-trigger:focus,
.custom-select-wrapper.is-open .custom-select-trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(115, 3, 2, 0.1);
    outline: none;
}
.custom-select-trigger .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--text-light);
}
.custom-select-wrapper.is-open .custom-select-trigger .arrow {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
}
.custom-select-options.open-up {
    transform: translateY(-5px);
}
.custom-select-wrapper.is-open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-select-option {
    padding: 10px 12px;
    font-size: 0.875rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.custom-select-option:hover,
.custom-select-option.is-highlighted {
    background-color: rgba(115, 3, 2, 0.05);
    color: var(--primary-color);
}
.custom-select-option.is-selected {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}
.custom-select-wrapper.is-disabled .custom-select-trigger {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: var(--border-color);
}

@media (min-width: 993px) {
    .product-actions-stack {
        flex-direction: row;
        justify-content: space-between;
    }
    .btn-whatsapp-full {
        width: 85%;
    }
    .btn-share-full {
        width: calc(15% - 12px);
        padding: 0;
    }
    .btn-share-full .share-text {
        display: none;
    }
    .btn-share-full i {
        margin: 0;
        font-size: 1.2rem;
    }
}

/* Alteração global: Todos os botões com cor de fundo #730302 devem ter texto #FFFFFF */
.btn-primary, .btn-primary:hover, .btn-buy, .btn-buy:hover, .mobile-filter-btn, .mobile-filter-btn:hover, .search-area button, .search-area button:hover, button[style*="background: var(--primary-color)"], button[style*="background-color: var(--primary-color)"], button[style*="background: #730302"], button[style*="background-color: #730302"], a[style*="background: var(--primary-color)"], a[style*="background-color: var(--primary-color)"], a[style*="background: #730302"], a[style*="background-color: #730302"],
button[style*="background: var(--primary-color)"]:hover, button[style*="background-color: var(--primary-color)"]:hover, button[style*="background: #730302"]:hover, button[style*="background-color: #730302"]:hover, a[style*="background: var(--primary-color)"]:hover, a[style*="background-color: var(--primary-color)"]:hover, a[style*="background: #730302"]:hover, a[style*="background-color: #730302"]:hover {
    color: #FFFFFF !important;
}

/* Alteração global: Botão de detalhes do produto deve ter texto branco no hover */
.product-card:hover .btn-details, .btn-details:hover {
    color: #FFFFFF !important;
}

/* Ajuste de tamanho da fonte para subcategorias, marcas e contadores no filtro */
.filter-sidebar .sub-text,
.filter-sidebar .brand-text {
    font-size: 0.85rem;
}

.filter-sidebar .filter-count {
    font-size: 0.9em;
    opacity: 0.8;
}

/* ---- Home Institutional Section ---- */
.home-institutional-section {
    background-color: #F6F4F1;
    padding: 100px 0;
    margin-top: 60px;
    margin-bottom: 0;
}
.home-inst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.home-inst-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}
.home-inst-content {
    padding-right: 40px;
}
.home-inst-title {
    font-size: 2.4rem;
    color: #4A0E17;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}
.home-inst-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
}
.home-inst-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.home-inst-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.home-inst-features i {
    font-size: 1.2rem;
    color: #4A0E17;
    margin-top: 4px;
}
.home-inst-features strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.home-inst-features span {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 992px) {
    .home-inst-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .home-inst-content {
        padding-right: 0;
    }
    .home-institutional-section {
        padding: 100px 20px;
    }
    .home-inst-title {
        font-size: 2rem;
        margin-top: -15px;
    }
}

/* --- Age Gate Modal --- */
.age-gate-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.age-gate-overlay.active {
    visibility: visible;
    opacity: 1;
}
.age-gate-modal {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 4px solid var(--primary-color);
}
.age-gate-modal h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .age-gate-modal h2 {
        line-height: 1.2;
    }
}
.age-gate-modal p {
    margin-bottom: 30px;
    color: var(--text-dark);
}
.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.btn-age-yes {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: filter 0.2s;
}
.btn-age-yes:hover {
    filter: brightness(1.1);
}
.btn-age-no {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-age-no:hover {
    background: #f5f5f5;
    color: var(--text-dark);
}

/* --- Tarja de Privacidade --- */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9998; /* Abaixo do Age Gate */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.privacy-banner.active {
    transform: translateY(0);
}
.privacy-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    flex-grow: 1;
}
.privacy-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}
.btn-privacy-more {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-privacy-more:hover {
    background: var(--primary-color);
    color: #ffffff;
}
.btn-privacy-ok {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: filter 0.2s;
}
.btn-privacy-ok:hover {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .privacy-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .privacy-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .btn-privacy-more, .btn-privacy-ok {
        width: 100%;
    }
}

/* --- Politica de Privacidade --- */
.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto 80px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .privacy-policy-content {
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        margin-bottom: 40px;
    }
}

/* --- Gold Footer Override --- */
footer p, footer li, footer a, footer .footer-brand p, footer .contact-info li, footer .footer-bottom p, footer .footer-bottom a {
    color: #e4c585 !important;
}

footer .footer-col h4, footer h4 {
    color: #e4c585 !important;
}

footer .footer-col h4::after, footer h4::after {
    background: linear-gradient(to right, #b48530, #fceeb5, #b48530) !important;
}

footer .contact-info li i {
    background: linear-gradient(to bottom right, #b48530, #fceeb5, #b48530) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}

footer .footer-social a.social-btn {
    background: linear-gradient(to bottom right, #b48530, #fceeb5, #b48530) !important;
    border-radius: 12px !important;
    border: none !important;
}

footer .footer-social a.social-btn i, footer .footer-social a.social-facebook i {
    color: #68332D !important;
    -webkit-text-fill-color: #68332D !important;
    background: none !important;
}

footer .footer-col ul a:hover, footer .footer-bottom a:hover {
    color: #fceeb5 !important;
    text-shadow: 0 0 5px rgba(252, 238, 181, 0.4);
}
footer .footer-bottom {
    border-top: 1px solid rgba(228, 197, 133, 0.4) !important;
}
