@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Gelasio:wght@700&display=swap');

body {
/*	background-color: white:*/
	background-color: #dddddd;
	color: rgba(0,0,0,1);
}

div#interface {
	width: 900px;
	background-color: #ffffff;
	margin: 10px auto 10px auto;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
	padding: 10px;
}

h1#teste {
	font-family: Arial;
	font-size: 30pt;
	color: blue;
	text-shadow: 2px 2px 2px black;
}

p {
	text-align: justify;
	text-indent: 50px;
}

header#cabecalho img#icone{
	position:absolute;
	left: 800px;
	top: 80px;

}

header#cabecalho {
	border-bottom: 1px #606060 solid;
	height: 150px;
	background: url("../_imagens/lampada_led_logo.png") no-repeat 0px 100px;
}

header#cabecalho h1{

    font-family: Georgia, Arial, serif;
	font-size: 30pt;
	color: #000000;
	/*text-shadow: 4px 4px 2px rgba(0,0,0,1);*/
	/*text-shadow: 1px 1px white, 3px 3px black;*/
	padding: 0px;
	margin-bottom: 0px;
}

header#cabecalho h2{
	font-family: 'Times New Roman', serif;
	font-size: 15pt;
	color: #888888;
	padding: 0px;
	margin-top: 0px;
}


/* Formatação de imagens com legendas */

figure.foto-legenda {
	position: relative;
	border: 8px solid white;
	box-shadow:	1px 1px 4px black;
}


figure.foto-legenda img {
	width: 100%;
	height: 100%;
}

figure.foto-legenda figcaption {
	position: absolute;
	top: 0px;
	background-color: rgba(0,0,0,0.4);
	color: white;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 1s;
}

figure.foto-legenda:hover figcaption {
	opacity: 1;
}



/* formatação do Menu*/

nav#menu {
	display: block;
}

nav#menu ul {
	list-style: none;
	text-transform: uppercase;
	position: absolute;
	top: -2px;
	left: 500px;
}
nav#menu li {
	display: inline-block;
	background-color: #dddddd;
	padding: 10px;
	margin: 2px;
	-webkit-transition: background-color 1s;
	-moz-transition: background-color 1s;
	-o-transition: background-color 1s;
	-ms-transition: background-color 1s;
	transition: background-color 1s;
}

nav#menu li:hover {
	background-color: #606060;
}

nav#menu h1 {
	display: none;
}

nav#menu a {
	color: #000000;
	text-decoration: none;	
}

nav#menu a:hover {
	color: #ffffff;
	text-decoration: underline;
	transition: background-color 1s;
}


