header {
	font-family: "Inter", sans-serif !important;
	font-weight: 500;

	box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.4);

	background-color: #fff;
	border-top: 5px solid #1c274c;
}

header .c-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .col-logo {
	width: 30%;
}

header .menu-container {
	width: 100%;
	padding: 0;
}

header .menu-topo-link {
	width: 100%;
	padding: 0;
	margin: 0;

	color: #1a1a1a !important;
}

header .menu-container ul {
	width: 100%;

	list-style: none;

	display: flex;
	justify-content: space-between;
}

header .c-header-nav {
	width: 35%;
}

header #slide {
	display: none;
}

header .logo img {
	margin-top: 15px;
	margin-bottom: 15px;
}

header .list-atalho {
	width: 30%;
}

header .list-atalho ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	float: right;
}

header .list-atalho ul li {
	float: left;
	padding: 5px 0;
}

header .list-atalho ul li a {
	display: block;
	padding: 15px;
	color: #fff;
	font-size: 20px;
}

header .list-atalho ul li a:hover {
	color: #666;
}

header .list-atalho ul li .carrinho {
	position: relative;
}

header .list-atalho ul li .carrinho span {
	width: 15px;
	background-color: #c00;
	font-size: 9px;
	color: #fff;
	border-radius: 100%;
	display: block;
	height: 15px;
	text-align: center;
	position: absolute;
	top: 20px;
	right: 5px;
	padding-top: 2px;
}

header .search {
	padding-top: 15px;
	font-size: 12px;
	float: right;
}

header .search .inSearch {
	background: transparent;
	border-radius: 0;
	border: none;
	border-bottom: 1px #fff solid;
	font-size: 12px;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 100%;
	line-height: 35px;
	outline: none;
	color: black;
	/* IE10+ */
}

header .search .inSearch:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border-color: #e21d85;
}

header .search .inSearch::-webkit-input-placeholder {
	color: #fff;
}

header .search .inSearch::-moz-placeholder {
	color: #fff;
}

header .search .inSearch:-moz-placeholder {
	color: #fff;
}

header .search .inSearch::-ms-input-placeholder {
	color: #fff;
}

header .search .btSubmit {
	background: transparent;
	border: none;
	color: #fff;
	line-height: 35px;
	font-size: 20px;
	position: absolute;
	bottom: 0px;
	right: 15px;
	outline: none;
}

#super-menu {
	display: none;
}

#super-menu .menu-topo-link {
	display: flex;
	flex-direction: column;
	color: #191919;
	position: relative; /* Garante que o dropdown seja relativo ao pai */
}

.menu-sub a {
	color: #191919 !important;
}

/* Adiciona seta ao lado do link pai que tem filhos */
header .menu-topo-link .has-children > a::after {
	content: "▼";
	margin-left: 5px;
}

/* Dropdown básico escondido inicialmente */
header .menu-topo-link .has-children ul {
	display: none;
	list-style: none;
	padding: 10px 0;
	position: absolute;
	top: 100%; /* Exibe logo abaixo do item pai */
	left: 0; /* Alinha à esquerda do item pai */
	background-color: #fff;
	z-index: 100;
	width: 150px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Exibe o dropdown ao passar o mouse sobre o item pai */
header .menu-topo-link .has-children:hover ul {
	display: block;
}

/* Garante que o dropdown seja exibido corretamente abaixo do pai */
header .menu-topo-link .has-children {
	position: relative;
}

/* Alinhamento do dropdown */
header .menu-topo-link .has-children ul li {
	padding: 5px 10px;
	white-space: nowrap;
	width: 100%;
	height: 100%;
}

/* Estilo dos links */
header .menu-topo-link .has-children ul li a {
	color: #191919;
	text-decoration: none;
}

/* Estilo quando o mouse passa sobre os itens do dropdown */
header .menu-topo-link .has-children ul li a:hover {
	color: #003366 !important;
	text-decoration: none;
}

@media (max-width: 1024px) {
	header .c-header {
		gap: 20px;
	}

	.list-atalho {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		width: 33% !important;
	}

	.col-logo {
		width: 33% !important;
	}

	.c-header-nav {
		width: 33% !important;
	}

	.list-atalho ul {
		display: flex;
		align-items: center;
	}

	.search {
		padding: 0 !important;
		margin: 0 !important;
	}

	header .col-logo {
		width: 100px;
	}
}
@media (max-width: 768px) {
	.menu-topo-link {
		font-size: 1rem;
	}
}

@media (max-width: 634px) {
	header #slide {
		display: inline-block;
		font-size: 27px;
		padding: 7px 0 0 0;
		color: #1c274c;
	}

	header .c-header-nav {
		display: none;
	}

	header .list-atalho {
		display: flex;
		justify-content: space-between;
		padding: 0;
		flex-direction: row;
		align-items: center;
		width: 60% !important;
		font-size: 25px;
	}

	header .search {
		width: 50% !important;
	}

	#super-menu {
		display: block;
		background: rgba(0, 0, 0, 0.9);
		position: fixed;
		height: 100%;
		z-index: 1000;
		width: 0;
		overflow: hidden;
		-webkit-transition: all 0.2s linear;
		transition: all 0.2s linear;
	}
	#super-menu.open {
		width: 70%;
	}
	#super-menu .close {
		position: absolute;
		right: 20px;
		top: 20px;
		color: #fff !important;
		font: 30px;
		opacity: 1;
	}
	#super-menu ul {
		padding: 0;
		margin: 20px;
	}
	#super-menu ul li {
		display: block;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	#super-menu ul li a {
		color: #fff;
	}
}
