:root{
	--cor-1: #0073E6; 
	--cor-2: #57CCFF;
	--cor-3: green;
}

.container{
	padding-right: 15%;
	padding-left: 15%;
	position: relative;
}

.produtos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 350px));
	gap: 3%;
	margin-top: 50px;
	margin-bottom: 50px;
}

.dropdown {
	position: relative;
	display: inline-block;
}
.dropdown-menu-categorias {
	display: none;
	margin-top: 10px;
	position: absolute;
	padding: 10px;
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 13%);
	z-index: 1;
	width: max-content;
}

/* Show the dropdown menu on hover */
@media screen and (min-width:992px) {
	
	.dropdown:hover .dropdown-menu-categorias {
		display: block;
	}
}

.dropdown-categoria, .dropdown-subcategoria {
		padding: 10px;
}
.dropdown-categoria a {
		color: #312F30;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 14.5px;
}
.dropdown-subcategoria {
	display: none;
	margin-top: -15px;
	position: absolute;
	padding: 10px;
	border-radius: 2px;
	background-color: #ffffff;
	box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 13%);
	z-index: 1;
	transform: translateX(-115%);
}

.dropdown-categoria a:hover {
		color: var(--cor-1);
}

.nav-produto {
		padding: 10px;
		
}
.nav-produto a {
	text-transform: uppercase;
		font-size: 14px;
		font-weight: 600;
}

@media screen and (max-width:992px) {
	.dropdown-menu-categorias {
		position: relative;
		width: 100%;
		margin: 0;
		background: unset;
		text-align: center;
		border-bottom: 1px solid white;
	}
	.dropdown-menu-categorias>li:hover .dropdown-subcategoria {
		display: none;
	}
	
	.dropdown-categoria a, .dropdown-categoria a:hover {
		color: white;
	}
	
}
.display-block {
	display: block;
}