/* Folha de estilo */

* {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-family: Arial;
	/*font-weight: normal;*/
	box-sizing: border-box;
	outline: none;
}

body {
	background-image: url("imagens/fundo.jpg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;
}


header {
	width: 100%;		/* Largura do menu, essa propriedade fará que conforme a resolução diminua o header tbm */
}

a {
	text-decoration: none;		/* Tirando o sublinhado dos hiperlinks */
}

h2 {
	font-size: 200%;
	font-weight: bold;
	padding: 10px;
}

/* Classes: */

.cabecalho {
	width: 100%;		/* Largura */
	float: left;		
	padding: 50px 8%;
	background-color: pink;
}


.cabecalho form{
	width: 300px;
	float: right;
}

.cabecalho input[type="text"] {
	width: 85%;
	float: left;
	padding: 15px 10px;
}

.cabecalho button {
	width: 15%;
	padding: 15px 10px;
	background-color: #FF00FF;
	float: right;
}


/* Menu */


.menu {
	width: 100%;
	float: left;
    list-style-type: none;
	background-color: pink;
}

.menuitem {
    float: left;
	display: inline-block;
	border: 2px outset #FF0080;
	background-color: pink;
}

.menuitem a, .dropbtn {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menuitem a:hover, .menuitem:hover .dropbtn {
    background-color: #FF00BF;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FF00BF;
    min-width: 160px;
	border: 2px solid #FF0080;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
	background-color: pink;
}

.menuitem:hover .dropdown-content {
    display: block;
}

.rodape {
	background-color: pink;
	width: 100%;
	text-align: center;
	border: 1px solid black;
	padding: 10px;
	
}

.produto {
	width: 300px;
	padding: 15px;
	border: 3px solid rgba(255, 255, 255, 0.5);
	border-radius: 30px;
	text-align: center;
	margin: 15px;
	float: left;
}

.produto:hover {
	border-color: rgba(0, 0, 0, 0.25);
	border-style: solid;
	border-width: 3px;
}	

.produto img {
	width: 250px;
	height: 250px;
}


/* Formulário */

.formulario {
	width: 350px;
	background-color: rgba(200, 200, 200, 0.6);
	margin: 100px auto;
	padding: 10px;
	border-radius: 15px;
}

.formulario label {
	width: 100px;
	display:inline-block;
}

.formulario input, textarea {
	font-family: Arial;
	width: 200px; 
	border: 1px solid black; 
	background: #FFF;
	color: #FF00BF;
}


.centro {
	text-align: center;
}

.esq {
	text-align: left;
}

.cadastrar {
	background-color: pink;
	border: 1px solid black;
	width: 28%;
}

.cadastrar a{
	color: #FF0080;
}

th {
	background-color: rgba(255, 255, 255, 0.5);
}