* {
    margin: 0;
	font-family: 'Montserrat', sans-serif;
}

/* cabecalho */
header {
    background-color: #BBBBBB;
    padding: 20px 0px;
}

.cabecalho {
	position: relative;
	width: 940px;
	margin: 0 auto;
}

nav {
	position: absolute;
	top: 110px;
	right: 0;
}

nav li {
	display: inline;
	margin: 0 0 0 15px;
}

nav a {
	text-transform: uppercase;
	color: #000000;
	font-weight: bold;
	font-size: 22px;
	text-decoration: none;
}

nav a:hover {
	color: green;
	text-decoration: underline;
}

/* principal */
.produtos li {
    display: inline-block;
    text-align: center;
    width: 30%;
    vertical-align: top;
    margin: 0 1.5%;
    padding: 30px 20px;
    box-sizing: border-box;
    border: 2px solid #000000;
    border-radius: 10px;
}

.produtos{
    width: 940px;
    margin: 0 auto;
    padding: 50px 0;
}

.produtos h2 {
    font-size: 25px;
    font-weight: bold;
}

.preco {
    font-size: 20px;
    font-weight: bold;
}

.descricao {
    font-size: 17px;
    padding-bottom: 10px;
}

.produtos li:hover {
    border-color: orange;
}

.produtos li:active {
    border-color: green;
}

.produtos li:hover h2 {
    font-size: 31px;
}

/* responsividade */
@media screen and (max-width: 480px) {
	.cabecalho {
		width: auto;
        background-color: 100% ;
	}
	h1 {
		text-align: center;
	}
	nav {
		position: static;
		text-align: center;
    }
    .produtos li {
        display: block;
        margin: 0 0 15px 15px;
    }
}

/* rodapé */
footer {
	text-align: center;
	background: url("imagens/background.jpg");
	padding: 40px 0;
}

.copyright {
	color: #FFFFFF;
	font-size: 13px;
	margin: 20px 0 0;
}