 
        /* Estilo da navegação principal */
        .header-nav {
            background: linear-gradient(135deg, #ff5722 0%, #F44336 100%);
            padding: 10px 0;
        }

        /* Mensagem de boas-vindas */
        .header-welcome-message {
            color: #fff;
            margin: 0;
        }

        /* Container principal */
        .containerb {
            max-width: 1100px;
        }

        /* Estilo do menu de navegação */
        .menu-nav {
            display: flex;
            gap: 15px; /* Espaçamento uniforme */
            margin: 0;
            padding: 0;
            list-style: none;
        }

        /* Estilo de cada item do menu */
        .menu-item {
            color: #fff;
            font-weight: bold;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0 15px;
            border-right: 1px solid rgba(255, 255, 255, 0.3); /* Linha divisória sem muita opacidade */
        }

        /* Último item do menu sem borda */
        .menu-nav li:last-child .menu-item {
            border-right: none;
        }

        /* Hover para links do menu */
        .menu-item:hover {
            color: #ddd;
        }
		
		.menu-nav li {
    /* margin: 0 15px; */
}

.header-nav li {
    /* padding: 0 15px; */
    /* border-right: 1px solid #47494a; */
}
 
        .header-top {
            background-color: #fff;
            padding: 30px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-right-element {
            display: flex;
            gap: 15px;
        }
        .cart-info a {
            color: #333;
            font-size: 20px;
            padding: 0 10px;
            position: relative;
        }
        .cart-info a[data-number]::after {
            content: attr(data-number);
            position: absolute;
            top: -5px;
            right: -10px;
            background-color: #f44336;
            color: #fff;
            border-radius: 50%;
            padding: 2px 5px;
            font-size: 12px;
        }
   
        .header-top {
            background-color: #fff;
            padding: 30px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-right-element {
            display: flex;
            gap: 15px;
        }
        .cart-info a {
            color: #333;
            font-size: 20px;
            padding: 0 10px;
            position: relative;
        }
        .cart-info a[data-number]::after {
            content: attr(data-number);
            position: absolute;
            top: -5px;
            right: -10px;
            background-color: #f44336;
            color: #fff;
            border-radius: 50%;
            padding: 2px 5px;
            font-size: 12px;
  
        /* Estilo para o formulário de pesquisa */
        .search-element {
            max-width: 600px;
            width: 100%;
        }
        .search-category select {
            border-radius: 0.375rem 0 0 0.375rem;
            border-right: none;
        }
        .search-element input[type="text"] {
            border-radius: 0;
            border-left: none;
        }
        .search-element button {
            border-radius: 0 0.375rem 0.375rem 0;
            background-color: #f44336;
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 15px;
        }
        .search-element button:hover {
            background-color: #d32f2f;
        } 