.icone-carregando,
.icone-cesta-vazia,
.icone-emoji-sorrindo {
	width: 1.5em;
	margin-right: 10px;
}

#mensagem-carregando,
#sem-correspondencia,
#mensagem-acabou-resultados {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 100px 0;
}

#mensagem-acabou-resultados { font-size: 1.3em; }

/*

	Banner

 */
#banner {
	position: relative;
	width: 100%;
}

#banner img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
}

#banner h1 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10%;
	color: #406DBC;
	font-size: 3em;
	text-align: right;
	max-width: 80%;
}

/*

	Lista de produtos

 */
#lista-produtos {
	margin-top: 30px;
	margin-bottom: 50px;
}

#lista-produtos > header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#lista-produtos > header .titulo-traco { margin-bottom: 0; }

#lista-produtos > header .titulo { width: 100%; }

#lista-produtos > header .ordenacao { margin-top: 15px; }

#lista-produtos > header .ordenacao label {
	display: block;
	margin-bottom: 5px;
}

/*

	Media queries

 */
@media screen and (min-width: 576px) {}

@media screen and (min-width: 768px) {

	#banner h1 { right: 17%; }

	/*

		Lista de produtos

	 */
	#lista-produtos > header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	#lista-produtos > header .ordenacao {
		margin-left: 50px;
		margin-top: 0;
	}
}

@media screen and (min-width: 1024px) {
	/*

		Cards

	 */
	.cards { justify-content: space-between; }
}

@media screen and (min-width: 1200px) {}

@media screen and (min-width: 1400px) {
	/*

		Cards

	 */
	.card { max-width: 300px; }

	.card header img { height: 280px; }
}

@media screen and (hover: hover) and (pointer: fine) {
	/* Devices com mouse ou touch pad */

	/*

		Cards

	 */
	.card header img { transition: transform .3s linear; }

	.card:hover header img { transform: scale(1.05); }

	.card .corpo { margin-bottom: 5px; }

	.card .btn-detalhes {
		position: absolute;
		transform: translateY(20px);
		transition: transform .3s linear;
	}

	.card:hover .btn-detalhes { transform: translateY(-50px); }
}