/* page top | categorias */

.categoriasProd {
	background-color: blueviolet;
	width: 100%;
	font-size: 1.1em;
	text-align: center;
	color: #fff;
    border-top: 5px dotted #fff;
}
.categoriasProd div {
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
    font-weight: bold;
}

.categ2 {
	display: inline-block;
	padding: 20px 15px 20px;
	text-align: center;
}

.categ2 img {
	width: 60px;
	height: 60px;
	border-radius: 40px;
	border: 2px dotted blueviolet;
}

.categ2 img:hover {
	border-radius: 40px;
	border: 2px dotted #fff;
}

.categ2 a {
	color: #fff;
	font-weight: bold;
	line-height: 2;
    font-size: 0.8em;
}

.categ2 a:hover {
	text-decoration: underline;
}


/* container produtos */

.container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    background-color: #FAF7FA;
    padding-bottom: 50px;
}


/* itens produtos */

article {
    background-color: rgba(138, 43, 226, 0.8);
    color: #fff;
    font-size: 1em;
    height: auto;
    width: 200px;
    text-align: center;
    margin: 20px;
}

article img {
    width: 180px;
    height: 180px;
    margin: 10px auto 0;
}

article p {
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: bold;
}

button {
    margin-top: 5px;
	background-color: blueviolet;
	font-family: nerkoOne;
	font-size: 1em;
	text-transform: uppercase;
	color: #fff;
	width: 180px;
	height: 30px;
    border: 1px solid blueviolet;
	box-shadow: 0 0 1px blueviolet;
}

button:hover {
	box-shadow: 0 0 5px #fff;
}

.botao2 {
    margin-bottom: 10px;
}