
@import url('https://fonts.googleapis.com/css?family=Oswald:100,200,300,400,500,600,700,800,900');

html {
	height: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
body {
	padding: 0px;
	margin: 0px;
	background: #FFF;
	height: 100%;
	position: relative;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	color: #1F1F1F;
	text-decoration: none;
	font-weight: 300;
}
a {
	color: #1B2638;
	text-decoration: none;
}
a:hover {
	color: #999;
	transition: all 0.5s;
}

h1 {
	font-size: 38px;
	text-transform: uppercase;
	font-weight: 400;
}
h2 em {
  font-style: normal;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5em;
  text-transform: uppercase;
  color: #369;
}
h2 {
	font-size: 28px;
	font-weight: 400;
	margin: 30px 0 60px 0;
	padding: 0px;
	text-transform: uppercase;
}
h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 500;
}
h4 {
	font-size: 16px;
	margin: 10px 0;
	font-family: inherit;
    font-weight: 400;
    line-height: 1.1;
    color: inherit;
	display: block;
	vertical-align: top;
}

hr {
	border: none;
	padding: 0px;
	margin: 40px 0;
	border-bottom: #666 1px dashed;
}

b, strong {
	font-weight: 450;
}

input[type=submit], input[type=reset], input[type=button], button {
	display: inline-block;
	vertical-align: top;
	padding: 10px 30px;
	margin: 0px;
	background: #3B90AF;
	color: #FFF;
	text-transform: uppercase;
	font-size: 12px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
	-webkit-appearance: none;
}
input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover, button:hover {
	background: #FDB60C;
}

select, input[type=text], input[type=password], input[type=tel], input[type=email], input[type=search], input[type=date], input[type=number], input[type=datetime], textarea {
	display: block;
	vertical-align: top;
	width: calc(100% - 7px);
	margin: 6px 0;
	padding: 7px 3px;
	border: #333 1px solid;
	border-radius: 4px;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	font-weight: 300;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	resize: none;
}
*:focus {
    outline: none;
}

select {
	background: url(../img/select.svg) no-repeat calc(100% - 10px) center;
	width: calc(100% - 7px);
	cursor: pointer;
	cursor: hand;
	background-size: 20px auto;
	padding-right: 30px;
	background-color: #FFF;
}
select:hover {
	background: url(../img/select_on.svg) no-repeat calc(100% - 10px) center;
	background-size: 20px auto;
	background-color: #FFF;
}

nav section:nth-of-type(1) {
	background: #000;
	padding: 4px 50px;
	margin: 0px;
	text-align: right;
}
nav section:nth-of-type(1) ul {
	justify-self: end;
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	list-style: none;
}
nav section:nth-of-type(1) ul li {
	display: block;
	padding: 0px;
	margin: 0px;
	color: #FFF;
	font-size: 12px;
	font-weight: 500;
}
nav section:nth-of-type(1) ul label {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	cursor: pointer;
	cursor: hand;
}
nav section:nth-of-type(1) ul img {
	display:inline- block;
	vertical-align: center;
	padding: 0px;
	margin: 0 0 0 4px;
}

nav section:nth-of-type(1) ul li ul {
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 7px;
	-webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,0.3);
	box-shadow: 0 0 4px 2px rgba(0,0,0,0.3);
	display: none;
}
nav section:nth-of-type(1) ul li ul li {
	padding: 7px;
}
nav section:nth-of-type(1) ul li:hover > ul {
	display: block;
}
nav section:nth-of-type(1) ul li a {
	color: #FFF
}

/* Logo */
nav section:nth-of-type(2) {
	margin: 0px;
	padding: 20px 50px;
	margin: 0px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: "mainlogo hamburguer";
}

nav section:nth-of-type(2) #hamburguer {
	grid-area: hamburguer;
	justify-self: end;
	display: none;
}

/* Barra utilidades */
nav section:nth-of-type(2) ul {
	display: grid;
	grid-template-columns: 1fr 20px 20px;
	grid-gap: 0 20px;
	padding: 0px;
	margin: 0 0 0 auto;
	list-style: none;
	max-width: 400px;
	justify-items: end;
	align-items: center;
}
nav section:nth-of-type(2) li {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
nav section:nth-of-type(2) img {
	display: block;
	vertical-align: bottom;
	padding: 0px;
	margin: 0px;
	width: 20px;
	height: auto;
}
nav section:nth-of-type(2) form {
	display: grid;
	grid-template-columns: 1fr 20px;
	grid-gap: 0 10px;
	justify-items: end;
	align-items: center;
	width: 300px;
}
nav section:nth-of-type(2) input[type=search] {
	border-radius: 0px;
	border: none;
	border-bottom: #000 1px solid;
	display: block;
	vertical-align: bottom;
	width: 100%;
}
nav section:nth-of-type(2) input[type=image] {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 20px;
	height: auto;
}

nav section:nth-of-type(2) #logo {
	grid-area: mainlogo;
	max-height: none;
	width: auto;
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}

/* Menu */
menu {
	display: block;
	vertical-align: top;
	text-align: left;
	padding: 4px 50px;
	margin: 0px;
	border-top: #000 1px solid;
}
menu section:nth-of-type(1), 
menu section:nth-of-type(2), 
menu section:nth-of-type(3), 
menu section:nth-of-type(5), 
menu section:nth-of-type(6),
menu section:nth-of-type(7) {
	display: none;
}
menu ul {
	list-style: none;
	display: block;
	vertical-align: top;
	margin: 0px;
	padding: 0px;
}
menu ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	text-align: left;
}
menu ul li span {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border-radius: 4px;
	height: 30px;
	overflow: hidden;
}
menu ul li span:hover {
	background: #000;
}
menu ul li span:hover > a {
	margin: -27px 0 0 0; 
}
menu ul li span:hover > label {
	margin: -29px 0 0 0;
}
menu ul li span label:after {
	content: '';
	position: absolute;
	display: inline-block;
	vertical-align: top;
	border: solid #999;
	border-width: 0 2px 2px 0;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin: -24px 0 0 10px;
}
menu ul li span:hover > label:after {
	margin: 7px 0 0 10px;
	border: solid #FFF;
	border-width: 2px 2px 0 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
menu ul li a, menu ul li label {
	color: #999;
	font-size: 16px;
	display: block;
	font-weight: lighter;
	vertical-align: top;
	position: relative;
	margin: 0 auto 0 auto;
	padding: 1px 10px 3px 10px;
	transition: margin 0.7s;
	text-transform: uppercase;
}
menu ul li span label {
	padding: 1px 28px 3px 10px;
}
menu ul li a:hover, menu ul li:hover label {
	background: #999;
	color: #FFF;
	cursor: pointer;
	cursor: hand;
}
menu ul li a:after, menu ul li label:before {
	content: attr(data-content);
	display: block;
	vertical-align: top;
	margin: 5px 0 0 0;
}
menu ul li label:before {
	padding: 0 0 7px 0;
}
menu ul li label:before {
	margin: 0px;
}

/* Submenus */
menu li ul {
	position: absolute;
	display: block;
	padding: 5px;
	margin: 0px;
	height: 0px;
	overflow: hidden;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	transition: all 0.3s ease-in;
	z-index: 999999999;
}
menu li ul li {
	display: block;
}
menu ul li:hover > ul {
	opacity: 1;
}
menu li ul li a {
	font-size: 14px;
	padding: 0 7px;
	margin: 0px;
	color: #FFF;
	border-radius: 4px;
}
menu li ul li a:before, menu li ul li a:after {
	content: none;
}

/* Header com bread crum, titulo principal e imagem de fundo */
.mini-header, .banner {
	margin: 0 0 -1px 0;
  	padding: 60px 50px;
  	background-attachment: fixed;
  	background-position: 50% center;
  	background-repeat: no-repeat;
  	background-color: #1b1016;
  	background-size: cover !important;
	background-clip: border-box;
  	z-index: 0;
  	position: relative;
	display: block;
	vertical-align: top;
}
.banner {
	background-attachment: scroll;
}
.mini-header div {
	max-width: 1190px;
	margin: 0 auto 0 auto;
	height: auto;
}
.mini-header div div, .banner div div {
	text-align: center;
	padding: 60px 50px 0 50px;
}
.mini-header ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: block;
	vertical-align: top;
}
.mini-header ul li {
	display: inline-block;
	vertical-align: top;
}
.mini-header ul > li + li:before {
	content: "/";
    padding: 0 5px;
    color: #FFF;
	font-weight: 200;
}
.mini-header ul li a {
	color: #FFF;
	font-size: 14px;
    line-height: 1.75em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
	text-decoration: none;
	font-weight: 200;
}
.mini-header ul li a:hover {
	text-decoration: underline;
}
.mini-header h1 {
	margin: 0;
  	padding: 0;
  	font-weight: 500;
  	letter-spacing: 0.1em;
  	color: #fff;
}

/* Banner gigante */
.jssorb21 {
	position: absolute;
}
.jssorb21 div, .jssorb21 div:hover, .jssorb21 .av {
	position: absolute;
    /* size of bullet elment */
    width: 19px;
    height: 19px;
    text-align: center;
    line-height: 19px;
    color: white;
    font-size: 12px;
    background: url(../img/b21.png) no-repeat;
    overflow: hidden;
    cursor: pointer;
}
.jssorb21 div {
	background-position: -5px -5px;
}
.jssorb21 div:hover, .jssorb21 .av:hover {
	background-position: -35px -5px;
}
.jssorb21 .av {
	background-position: -65px -5px;
}
.jssorb21 .dn, .jssorb21 .dn:hover {
	background-position: -95px -5px;
}

.jssora21l, .jssora21r {
	display: block;
    position: absolute;
    /* size of arrow element */
    width: 55px;
    height: 55px;
    cursor: pointer;
    background: url(../img/a21.png) center center no-repeat;
    overflow: hidden;
}
.jssora21l { background-position: -3px -33px; }
.jssora21r { background-position: -63px -33px; }
.jssora21l:hover { background-position: -123px -33px; }
.jssora21r:hover { background-position: -183px -33px; }
.jssora21l.jssora21ldn { background-position: -243px -33px; }
.jssora21r.jssora21rdn { background-position: -303px -33px; }

/* Fim do banner gigante */

/* Conteudo principal */
#main {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 0 80px 0;
}

/* Classes gerais */
.center {
	text-align: center;
}
.botao_cor {
	display: inline-block;
	vertical-align: top;
	padding: 10px 30px;
	margin: 0px;
	background: #3B90AF;
	color: #FFF;
	text-transform: uppercase;
	font-size: 12px;
	border-radius: 5px;
}
.botao_cor:hover {
	background: #FDB60C;
}

/* Redes */
.social {
	color: #999;
	font-size: 12px;
	padding: 0px;
	margin: 0 0 20px 0;
	text-align: left; 
}
.social span {
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	grid-gap: 0 5px;
	justify-items: center;
}
.social label {
	display: block;
	vertical-align: top;
	text-align: center;
	height: 25px;
	cursor: pointer;
	cursor: pointer;
}
.social label:after {
	content: attr(data-content);
	font-size: 10px;
	text-align: center;
	color: #FFF;
	display: block;
	margin: 3px 0 0 0;
	opacity: 0;
	transition: all 0.5s;
}
.social label:hover:after {
	opacity: 1;
}
.social label:hover a {
	transform: translateY(-5px); 
	background-color: #FFF;
	transition: all 0.5s;
}
.social a {
	display: block;
	vertical-align: top;
	background-color: #FFF;
	width: 20px;
	height: 20px;
	margin: 0 auto 0 auto;
	opacity: 0.5;
}
.social label:hover a {
	opacity: 1;
}
.social label:nth-of-type(1) a {
	background: url(../img/youtube.svg) no-repeat center center;
	background-size: contain;
}
.social label:nth-of-type(2) a {
	background: url(../img/facebook.svg) no-repeat center center;
	background-size: contain;
}
.social label:nth-of-type(3) a {
	background: url(../img/instagram.svg) no-repeat center center;
	background-size: contain;
}
.social label:nth-of-type(4) a {
	background: url(../img/twitter.svg) no-repeat center center;
	background-size: contain;
}
.social label:nth-of-type(5) a {
	background: url(../img/linkedin.svg) no-repeat center center;
	background-size: contain;
}

/* Aviso cookies */
#aviso_cks {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	width: 100%;
	top: 0px;
	z-index: 9999999;
	opacity: 1;
	transition: all 0.5s;
}
#aviso_cks div {
	max-width: 980px;
	width: auto;
	margin: 0 auto 0 auto;
	padding: 15px 0 15px 0;
}
#aviso_cks * {
	color: #FFF;
}
#aviso_cks a {
	font-weight: bold;
}
#aviso_cks input {
	padding: 0px 13px 0px 13px;
	border: none;
	margin: 0 0 0 15px;
	outline: none;
	font-size: 12px;
	font-weight: normal;
	cursor: pointer;
	cursor: hand;
}
#aviso_cks input:hover {
	color: #000;
	background: #FFF;
	transition: all 0.5s;
}

/* Paginador */
#paginas {
	text-align: center;
	padding: 80px 50px 0 50px;
}
#paginas * {
	display: inline-block;
	vertical-align: middle;
	border-radius: 50px;
	min-width: 15px;
	border: #CCC 2px solid;
	padding: 7px;
	margin: 3px;
	line-height: 15px;
}
#paginas span {
	border-color: #FDB60C;
}
#paginas a {
	transition: all 0.3s;
}
#paginas a:hover {
	border-color: #FDB60C;
	-webkit-box-shadow: 0 0 0 1px #FFF, 0 0 5px 2px rgba(0,0,0,0.5);
	box-shadow: 0 0 0 1px #FFF, 0 0 5px 2px rgba(0,0,0,0.5);
	color: #000;
	background: #FFF;
	text-decoration: none;
	transform: scale(1.2);
}
#paginas .setaesq, #paginas .setaesq:hover {
	background: url(../img/setaesq.svg) no-repeat center center;
	background-size: auto 15px;
	width: 5px;
	height: 15px;
	padding: 7px;
	margin: 3px;
}
#paginas .setadir, #paginas .setadir:hover {
	background: url(../img/setadir.svg) no-repeat center center;
	background-size: auto 15px;
	width: 5px;
	height: 15px;
	padding: 7px;
	margin: 3px;
}
#paginas label.setaesq, #paginas label.setadir {
	opacity: 0.5;
}

/* Share redes */
#redes {
	text-align: right;
	padding: 30px 0;
}
#redes * {
	vertical-align: top;
}
.twitter-share-button {
	display: inline-block;
	vertical-align: bottom;
	margin: 4px 0 0 10px;
}

/* Foto galerias */
#imgaleria {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px 20px;
	align-items: center;
}
#imgaleria figure {
	display: grid;
	align-items: center;
	grid-template-columns: auto;
	margin: auto;
	width: 150px;
	height: 150px;
	text-align: center;
	overflow: hidden;
}
#imgaleria img {
	display: inline-block;
	width: auto;
	height: auto;
	margin: auto;
	object-fit: cover;
	max-width: 100%;
}

/* Formulário de contactos */
#contactos {
	display: grid;
	grid-template-columns: auto calc(100%/2.8);
	grid-template-areas: "colesq coldir";
	grid-gap: 0 60px;
}
#contactos form {
	display: block;
	vertical-align: top;
	max-width: 100%;
}
#contactos form label {
	display: block;
	vertical-align: top;
	font-weight: 400;
	margin: 0 0 5px 0;
} 
#contactos form textarea {
	margin: 0 0 20px 0;
}

/* Notícias */
.entry {
	box-sizing: border-box;
	background: #FFF;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	display: block;
	vertical-align: top;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 25px;
}
.entry figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	position: relative;
	width: 100%;
	height: auto;
}
.entry figure img, .entry figure iframe {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 500px;
	height: 300px;
	max-width: 100%;
	max-height: 200px;
	object-fit: cover;
}
.entry div {
	display: block;
	vertical-align: top;
	padding: 25px;
	margin: 0px;
}
.entry h2 {
	margin-top: 0px;
  	font-weight: 800;
  	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0px;
	padding: 0px;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

.noticia {
	display: grid;
	grid-template-columns: 320px 1fr;
	grid-gap: 0 60px;
	padding-top: 80px;
}

.voltar a figure {
	display: inline-block;
	vertical-align: middle;
	mask-size: contain;
	background: #FFF;
	width: 20px;
	height: 20px;
	padding: 0px;
	margin: -3px 10px 0 -20px;
}

.resp_thumb {
	padding: 0px;
    line-height: 1.42857143;
    background-color: #FFF;
    border: 4px solid #FFF;
    border-radius: 4px;
	max-width: 100%;
	height: auto;
	-webkit-box-shadow: 0 0 1px 1px #DDD;
	box-shadow: 0 0 1px 1px #DDD;
}

#mensagem {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 120px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
#mensagem div {
	padding-top: 30px;
}

.duas_colunas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: "colesq coldir";
	grid-gap: 0 60px;
}
.dois_um {
	grid-template-columns: 1fr 2fr;
}
.colesq {
	grid-area: colesq;
}
.coldir {
	grid-area: coldir;
}
.tres_colunas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px 30px;
	text-align: center;
	max-width: 980px;
	margin: 0 auto;
	padding-top: 20px;
}
article.lista {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	height: 370px;
	max-width: 316px;
	text-align: center;
	overflow: hidden;
}
article.lista img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
article.lista section {
	display: block;
	position: relative;
	background: rgba(0, 0, 0, 0.2);
	padding: 270px 30px 30px 30px;
	height: 370px;
	max-height: 380px;
	margin: -375px 0 0 0;
	transition: all 0.5s;
}
article.lista section label {
	color: #FFF;
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	font-weight: 350;
	display: block;
	vertical-align: top;
	text-align: center;
	max-height: 38px;
	overflow: hidden;
}
article.lista section span {
	display: inline-block;
	vertical-align: top;
	border: #FFF 1px solid;
	border-radius: 4px;
	padding: 5px 13px;
	line-height: 15px;
	color: #FFF;
	font-weight: lighter;
	margin: 10px 0 0 0;
	opacity: 0;
	transition: all 0.5s;
	transform: translateY(200px);
}
article.lista:hover section {
	padding: 140px 30px 30px 30px;
	background: rgba(0, 0, 0, 0.5);
}
article.lista:hover section span {
	opacity: 1;
	animation-delay: 0,5s;
	transform: none;
}
article.lista section span:hover {
	background: #FFB600;
	border: #FFB600 1px solid;
	color: #000;
}
article.lista:hover section label {
	max-height: none;
}

/* Formulario de registo */
#registar {
	text-align: center;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 0 80px 0;
}
#registar h2 {
	font-size: 38px;
	margin-bottom: 0px;
}
#registar section {
	text-align: left;
}

/* Footer */
footer {
	background: #FFF;
	border-top: #000 1px solid;
	margin: 5px 0 0 0;
	padding: 50px 50px 30px 50px;
	display: grid;
	grid-template-columns: repeat(3, 200px) auto; 
	grid-gap: 0 50px; 
	align-items: start;
	font-family: 'Oswald', sans-serif;
}
footer ul {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	list-style: none;
}
footer ul li {
	display: block;
	vertical-align: top;
	padding: 3px 0;
	margin: 0px;
}
footer * {
	color: #000;
	font-size: 13px;
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
}
footer ul p, footer .social p {
	color: #000;
	font-size: 22px;
	font-weight: 400;
	text-transform: uppercase;
}
footer ul li a:hover {
	color: #999;
}
footer .social{
	margin: 0px;
	max-width: 200px;
	justify-self: end;
	text-align: right;
}
footer .apps {
	grid-area: auto;
	max-width: 200px;
	padding: 0px;
	margin: -110px 0 0 0;
}

/* login */
#login {
	max-width: 400px;
	margin: 0 auto;
}
#login ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: center;
}
#login ul li {
	display: block;
	vertical-align: top;
	margin: 0px;
	padding: 5px 0;
}
#login input[type=email], #login input[type=password] {
	max-width: calc(100% - 25px);
	margin: 0 0 5px 0;
}
#login .botoes {
	text-align: center;
	padding: 10px 0 30px 0;
}

/* Pesquisar */
#pesquisar {
	max-width: 500px;
	margin: 0 auto;
}
#pesquisar form {
	display: grid;
	grid-template-columns: auto 150px;
	grid-gap: 0 10px;
}

/* Extras */
.botoes {
	padding-top: 30px;
	text-align: right;
}
.voltar {
	text-align: center;
	padding: 80px 0 0 0;
}
.botoes a, .voltar a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 30px;
	margin: 0px;
	background: #3B90AF;
	color: #FFF;
	text-transform: uppercase;
	font-size: 12px;
	border-radius: 5px;
}
.voltar a {
	padding: 20px 40px;
}
.botoes a:hover, .voltar a:hover {
	background: #FDB60C;
}

.voltar a figure {
	display: inline-block;
	vertical-align: middle;
	background: #000;
	width: 20px;
	height: 20px;
	padding: 0px;
	margin: -3px 10px 0 -20px;
}

/* Lightbox */
#lightbox {
	margin-top: 50px;
}
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

#baixo {
	color: #FFF;
	background: #000;
	font-size: 12px;
	padding: 7px 50px;
	font-family: 'Oswald', sans-serif;
	font-weight: lighter;
}
#baixo * {
	color: #FFF;
	background: #000;
	font-size: 12px;
	font-family: 'Oswald', sans-serif;
	font-weight: lighter;
}

#barra {
	background: url(../img/barra.jpg) no-repeat center center;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 0;
	background-size: cover;
}
#barra article {
	background: rgba(0, 0, 0, 0.8);
	padding: 40px;
	text-align: justify;
	color: #FFF;
}
#barra h3 {
	font-size: 32px;
	font-weight: 300;
	padding: 0px;
	margin: 0 0 30px 0;
	white-space: nowrap;
}
#barra div {
	text-align: center;
	padding: 100px 0 0 0;
}
#barra div a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 30px;
	border-radius: 5px;
	background: none;
	border: #FFF 1px solid;
	color: #FFF;
	font-size: 16px;
	font-weight: 300;
	text-transform: uppercase;
}
#barra div a:hover {
	background: #FFF;
	color: #000;
}

#contactos {
	display: grid;
	grid-template-columns: auto calc(100%/2.8);
	grid-gap: 0 60px;
}
#contactos form {
	display: block;
	vertical-align: top;
	max-width: 100%;
}
#contactos form label {
	display: block;
	vertical-align: top;
	font-weight: bold;
	margin: 0 0 5px 0;
} 
#contactos form textarea {
	margin: 0 0 20px 0;
}
#contactos h2 {
	text-align: left;
}

/* Contactos */
#pcontactos {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 0 80px 0;
	text-align: center;
}
#pcontactos div {
	display: grid;
	grid-template-columns: 400px auto;
	grid-gap: 20px 40px;
	text-align: left;
}
#pcontactos ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
#pcontactos ul li {
	display: block;
	vertical-align: top;
	margin: 0px;
	padding: 0 0 60px 50px;
}

#pcontactos ul li:nth-of-type(1) {
	background: url(../img/pointer.jpg) no-repeat left top;
}
#pcontactos ul li:nth-of-type(2) {
	background: url(../img/tel.jpg) no-repeat left top;
}
#pcontactos ul li:nth-of-type(3) {
	background: url(../img/mail.jpg) no-repeat left top;
}
#pcontactos span {
	text-align: left;
}
#pcontactos form span {
	display: block;
	vertical-align: top;
	padding: 20px 0;
	text-align: right;
}
#pcontactos label {
	font-weight: 500;
}

.subtitulo {
	text-align: center;
	font-weight: 300;
	color: #666;
	margin: -67px 0 60px 0;
	font-size: 16px;
}

#corpo {
	padding: 0 50px 80px 50px;
}

#icones {
	padding: 0 50px 50px 50px;
	margin: 0px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	text-align: center;
	grid-gap: 0 30px;
}
.center {
	text-align: center;
}

/* Notícias relacionadas */
#relacionadas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px 30px;
}
#relacionadas article {
	display: grid;
	grid-template-columns: 152px auto;
	grid-gap: 0 10px;
}
#relacionadas article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #000 1px solid;
}
#relacionadas article figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 150px;
	height: auto;
}
footer .social label:nth-of-type(1) a {
	background: url(../img/youtube2.svg) no-repeat center center;
	background-size: contain;
}
footer .social label:nth-of-type(2) a {
	background: url(../img/facebook2.svg) no-repeat center center;
	background-size: contain;
}
footer .social label:nth-of-type(3) a {
	background: url(../img/instagram2.svg) no-repeat center center;
	background-size: contain;
}
footer .social label:nth-of-type(4) a {
	background: url(../img/twitter2.svg) no-repeat center center;
	background-size: contain;
}
footer .social label:nth-of-type(5) a {
	background: url(../img/linkedin2.svg) no-repeat center center;
	background-size: contain;
}

/* Artigos */
#artigos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px 60px;
}
#artigos article {
	display: block;
	vertical-align: top;
	padding: 7px;
	margin: 0px;
	background: #FFF;
	border: #CCC 1px solid;
}
#artigos article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	text-align: center;
	border: #CCC 1px solid;
}
#artigos article figure img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
}
#artigos figure figcaption {
	position: relative;
	vertical-align: top;
	padding: 12px;
	margin: 0 0 -50px 0;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	color: #FFF;
	transform: translateY(50px);
	transition: all 0.5s;
}
#artigos figure figcaption img {
	display: inline-block;
	vertical-align: middle;
	border: none;
	padding: 0px;
	margin: 0 10px 0 0;
}
#artigos article h3 {
	font-weight: 450;
	overflow: hidden;
	height: 50px;
}
#artigos article span {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0 20px;
}
#artigos article label {
	font-size: 18px;
	font-weight: 300;
}
#artigos article span a {
	display: inline-block;
	vertical-align: top;
	justify-self: end;
}

#artigos a:hover article figure figcaption {
	transform: translateY(-100%);
}

#vartigo {
	display: grid;
	grid-template-columns: 400px 1fr;
	grid-gap: 0 20px;
}
#vartigo article {
	justify-self: center;
	max-width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
	position: relative;
}
#vartigo article img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #333 1px solid;
	border-radius: 6px;
	width: 100%;
	height: auto;
}
#vartigo article div {
	padding: 20px 0 0 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}
#vartigo article div img {
	cursor: pointer;
	cursor: hand;
	width: 70px;
	height: auto;
}
#vartigo section h2 {
	font-weight: 400;
	text-align: left;
}
#resumo {
	padding-bottom: 40px;
	border-bottom: #CCC 1px solid;
}
#precos {
	padding: 10px 0 0 0;
	text-align: right;
}
#redes {
	text-align: right;
	padding-bottom: 30px;
	border-bottom: #CCC 1px solid;
}


#amp {
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	grid-template-columns: auto;
	justify-items: center;
	align-items: center;
	z-index: 99999;
}
#amp article {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	text-align: right;
}
#amp article a {
	display: inline-block;
	vertical-align: bottom;
	background: #FFF;
	color: #000;
	padding: 3px 12px;
	margin: 0 10px 0 0;
	border-radius: 4px 4px 0 0;
}
#amp article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #FFF 4px solid;
	border-radius: 6px;
	background: #FFF;
	-webkit-box-shadow: 0 0 4px 2px #000;
	box-shadow: 0 0 4px 2px #000;
}
#amp img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
}

.quadro {
	width: 100%;
	margin-top: 20px;
	border: 0px;
	background: #DEF;
	border: #000 1px solid;
}
.quadro td {
	padding: 2px;
	border-bottom: #FFF 1px solid;
	border-right: #FFF 1px solid;
}
.titulo td {
	background: #00394D;
	color: #FFF;
}

#projetos {
	text-align: center;
	padding: 10px 50px;
}
#projetos img {
	max-width: 100% !important;
}

/* Destaques */
#destaques {
	background: #F0F0F0;
	padding: 0 50px 40px 50px;
	margin: 0px;
}
#destaques h2 {
	margin: 0px;
	padding: 30px 0 60px 0;
}
#destaques div {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px 60px;
}
#destaques article {
	display: block;
	vertical-align: top;
	padding: 7px;
	margin: 0px;
	background: #FFF;
	border: #CCC 1px solid;
}
#destaques article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	text-align: center;
	border: #CCC 1px solid;
}
#destaques article figure img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	height: 200px;
	width: auto;
}
#destaques figure figcaption {
	position: relative;
	vertical-align: top;
	padding: 12px;
	margin: 0 0 -50px 0;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	color: #FFF;
	transform: translateY(50px);
	transition: all 0.5s;
}
#destaques figure figcaption img {
	display: inline-block;
	vertical-align: middle;
	border: none;
	padding: 0px;
	margin: 0 10px 0 0;
}
#destaques figure figcaption img {
	width: auto;
	height: auto;
}
#destaques article span {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0 20px;
}
#destaques article label {
	font-size: 18px;
	font-weight: 300;
}
#destaques article span a {
	display: inline-block;
	vertical-align: top;
	justify-self: end;
}
#destaques article p {
	font-weight: 400;
}

#destaques a:hover article figure figcaption {
	transform: translateY(-100%);
}