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

html, body {
	min-height: 100%;
	scroll-behaviour: smooth;
}
body {
	background: #000;
	padding: 0px;
	margin: 0px;
	font-family: 'Montserrat', sans-serif;
  	font-size: 14px;
	position: relative;
	color: #000 !important;
	font-weight: 500;
	overflow-x: hidden;
}

/* Formatações gerais */
a {
	color: inherit;
	text-decoration: none !important;
	transition: all 0.5s;
}
a:hover {
	color: #d7545b;
}
b, strong {
	font-weight: 400;
}
h1 {
  	font-size: 36px;
  	line-height: 1.2em;
  	text-transform: uppercase;
  	font-weight: 700;
}
h2 {
	padding: 30px 0 0 10px;
  	font-weight: 400;
  	line-height: 1.5em;
  	font-size: 36px;
  	text-align: center;
  	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 50px 0;
}
h3 {
  	text-transform: uppercase;
  	letter-spacing: 0.1em;
  	line-height: 1.5em;
  	font-size: 16px;
  	font-weight: 700;
}
h4 {
	font-size: 18px;
	margin: 10px 0;
	font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
	display: block;
	vertical-align: top;
	font-family: 'oswald', sans-serif;
}
h5 {
	font-size: 18px;
	text-align: center;
	color: #999;
	font-weight: 300;
	padding: 0 0 50px 0;
	margin: -50px 0 0 0;
	font-family: 'Oswald', sans-serif;
}

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

input[type=submit], input[type=reset], input[type=button], button {
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	color: #FFF;
	border-radius: 4px;
	background: #d7545b;
	padding: 5px 25px;
	border: none;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
	font-family: 'Montserrat', sans-serif;
}
input[type=submit]:hover, input[type=reset]:hover, button:hover {
	background: #333;
}
input[type=text], input[type=search], input[type=email], input[type=date], input[type=number], input[type=datetime], input[type=password], textarea, select {
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background: #FFF;
    border: 1px solid #000;
	border-radius: 4px;
	resize: none;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 6px 0;
}
input[type=search] {
	display: inline-block;
	vertical-align: top;
	width: auto;
}
textarea {
	height: auto;
}
input[type=text], input[type=email], input[type=number], input[type=datetime], input[type=datetime], textarea {
	max-width: calc(100% - 26px);
	padding: 2px 12px;
}
option {
	font-weight: normal;
    display: block;
    white-space: pre;
    min-height: 1.2em;
    padding: 0px 2px 1px;
	font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
	font-family: 'Montserrat', sans-serif;
}

.duas_colunas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: "colesq coldir";
	grid-gap: 0 60px;
}
.dois_um {
	grid-template-columns: 2fr 1fr;
}
.colesq {
	grid-area: colesq;
}
.coldir {
	grid-area: coldir;
}
.tres_colunas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px 60px;
} 
.quatro_colunas {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 6px 10px;
} 

* {
	max-width: 100%;
	height: auto;
}

/* Header do site */
header {
	display: grid;
	grid-template-rows: 100px auto;
	grid-gap: 30px 0;
	background-attachment: fixed;
	padding: 0 50px;
	height: 100vh;
}
#backs {
	display: none;
}
header #backimg, header #backfade, header #darken {
	position: fixed;
	padding: 0px;
	margin: 0px;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	z-index: -10;
}
header #darken {
	background: rgba(0, 0, 0, 0.3);
	z-index: -5;
}
header #backfade {
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}
#backfade.fadeout {
	opacity: 0;
}
#backfade.fadein {
	opacity: 1;
}

header section {
	display: grid;
	grid-template-columns: 200px 1fr;
	grid-gap: 30px 0;
	padding: 0px;
	margin: 0px;
}
header img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 40px 0 0 0;
}
header nav {
	justify-self: end;
	padding: 20px 0 0 0;
}
header section section {
	display: block;
	text-align: right;
}
header section section ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
header section section ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
header section section ul li a, header section section ul li label {
	text-transform: uppercase;
	display: block;
	vertical-align: top;
	padding: 2px 10px;
	border-radius: 4px;
	margin: 0px;
	line-height: none;
	color: #FFF;
	font-weight: 400;
	cursor: pointer;
	cursor: hand;
	font-size: 12px;
	font-family: 'Oswald', sans-serif;
}
header section section ul li a:hover, header section section ul li label {
	background: #FFF;
	color: #000;
	text-decoration: none;
}


menu {
	padding-top: 30px;
}
menu ul {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: left;
	justify-self: right;
}
menu ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
menu .hamburger {
	display: none;
}
menu ul li a, menu ul li label {
	text-transform: uppercase;
	display: block;
	vertical-align: top;
	padding: 2px 10px;
	border-radius: 4px;
	margin: 0px;
	line-height: none;
	color: #FFF;
	font-weight: 400;
	cursor: pointer;
	cursor: hand;
	font-size: 15px;
	font-family: 'Oswald', sans-serif;
}
menu ul li a:hover, menu ul li label:hover {
	background: #FFF;
	color: #000;
	text-decoration: none;
}
menu ul li ul {
	position: absolute;
	z-index: 999;
	background: rgba(0, 0, 0, 0.8);
	padding: 5px;
	border-radius: 5px;
	margin: 0px;
	display: none;
}
menu ul li:hover ul {
	display: block;
}
menu li ul li {
	display: block;
	vertical-align: top;
}
menu li ul li a:hover {
	background: #FFF;
	color: #000;
}
menu ul li ul a {
	text-transform: none;
	color: #FFF;
	font-size: 14px;
}
menu ul li ul code {
	text-transform: uppercase;
	display: block;
	vertical-align: top;
	padding: 2px 10px;
	border-radius: 4px;
	margin: 2px 0;
	line-height: none;
	color: #FFF;
	background: #000;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
}

header span {
	display: block;
	align-self: center;
	text-align: center;
}
header span h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 42px;
	padding: 0px;
	margin: 0px;
	font-weight: 300;
	line-height: 50px;
	color: #FFF;
}
header span label {
	color: #FFF;
	text-transform: uppercase;
}
header span div.botoes {
	text-align: center;
	padding: 30px 0 0 0;
	margin: 0px;
}
header span div.botoes a {
	background: none;
	border: #FFF 1px solid;
	border-radius: 0px;
}
header span div.botoes a:hover {
	color: #000;
	background: #FFF;
}

/* Mini header */
#miniheader {
	display: block;
	height: 200px;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 0 50px 10px 50px;
}
#miniheader section:nth-of-type(2) img {
	max-width: 200px;
	height: auto;
	animation: fromtop 0.7s ease-out;
}

/* Estrutura do site */
#corpo {
	background: #FFF;
	padding: 0px;
	margin: 0px;
}
#conteudo {
	padding: 0px 100px 80px 100px;
}

#barra {
	background: url(../img/barra.jpg) no-repeat center center;
	padding: 150px 50px;
	text-align: center;
	background-size: cover;
	color: #FFF;
}
#barra h2 {
	text-align: center;
	padding: 0px;
	margin: 0px;
}
#barra .botoes {
	text-align: center;
}
#barra .botoes a {
	border-radius: 0px;
}


/* 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.svg) no-repeat left top;
	background-size: auto 30px;
}
#pcontactos ul li:nth-of-type(2) {
	background: url(../img/telefone.svg) no-repeat left top;
	background-size: auto 30px;
}
#pcontactos ul li:nth-of-type(3) {
	background: url(../img/mail.svg) no-repeat left top;
	background-size: auto 20px;
}
#pcontactos span {
	text-align: left;
}
#pcontactos form span {
	display: block;
	vertical-align: top;
	padding: 20px 0;
	text-align: right;
}
#pcontactos label {
	font-weight: 500;
}

#ppgaleria section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 6px;
	padding: 20px 100px 100px 100px;
	margin: 0px;
}
#gallboard{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 6px;
	padding: 0px;
	margin: 0px;
}
#ppgaleria section figure, #gallboard article figure {
	display: block;
	vertical-align: top;
	position: relative;
    overflow: hidden;
	width: 100%;
	padding: 0 0 100% 0;
	margin: 0px;
}
#ppgaleria section figure img, #gallboard article figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}
#ppgaleria section figure figcaption, #gallboard article figure figcaption {
	position: absolute;
	background: none;
	width: 100%;
	padding: 0 0 100% 0;
	text-align: center;
	transition: all 0.3s ease-out;
	z-index: 5;
}
#ppgaleria section figure figcaption:hover, #gallboard article figure figcaption:hover {
	background: rgba(0, 0, 0, 0.5);
}
#ppgaleria section figure label, #gallboard article figure label {
	text-transform: uppercase;
	display: inline-block;
	vertical-align: top;
	padding: 4px 20px;
	border-radius: 5px;
	border: #FFF 1px solid;
	margin: 100% auto 0 auto;
	color: #FFF !important;
	transition: all 0.5s;
	cursor: pointer;
	cursor: hand;
}
#ppgaleria section figcaption:hover label, #gallboard article figcaption:hover label {
	margin: 50% auto 0 auto;
}
#gallboard article h3 {
	text-align: center;
	padding: 10px 0 30px 0;
	margin: 0px;
	font-weight: 300;
	font-size: 22px;
}

/* Footer */
footer {
	background: #000 url(../img/bgfooter.jpg) no-repeat center center;
	background-size: cover;
	padding: 40px;
	margin: 0px;
}
footer, footer *, #baixo, #baixo * {
	color: #FFF;
	font-size: 14px;
	font-family: 'Oswald', sans-serif;
	font-weight: lighter;
}
footer ul {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0px;
	margin: 0 70px 0 0;
}
footer span {
	float: right;
}
footer ul p {
	color: #FFF;
	font-size: 18px;
	padding: 0px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	font-weight: 500;
}
footer ul li a {
	color: #FFF;
	text-decoration: none;
	font-weight: lighter;
}
footer ul li a:hover {
	text-decoration: none;
	color: #999;
}
#baixo a:hover {
	text-decoration: none;
	color: #FFF;
}
footer ul li label {
	display: inline-block;
	vertical-align: top;
	padding: 0 40px 0 0;
	text-align: right;
	color: #FFF;
	font-size: 28px;
	font-weight: 500;
	font-family: 'montserrat', sans-serif;
}
footer span ul li {
	padding: 0 0 5px 0;
}
footer span ul li:nth-of-type(1) a::before {
	content: '';
	display: inline-block;
	vertical-align: top;
	-webkit-mask: url(../img/facebook.svg) no-repeat center center;
	-webkit-mask-size: cover;
	mask: url(../img/facebook.svg) no-repeat center center;
	mask-size: cover;
	width: 20px;
	height: 20px;
	margin: 0 7px 0 0;
	background-color: #FFF;
	transition: color 0.5s;
}
footer span ul li:nth-of-type(1) a:hover::before {
	background-color: #999;
}
footer span ul li:nth-of-type(2) a::before {
	content: '';
	display: inline-block;
	vertical-align: top;
	-webkit-mask: url(../img/linkedin.svg) no-repeat center center;
	-webkit-mask-size: cover;
	mask: url(../img/linkedin.svg) no-repeat center center;
	mask-size: cover;
	width: 20px;
	height: 20px;
	margin: 0 7px 0 0;
	background-color: #FFF;
	transition: color 0.5s;
}
footer span ul li:nth-of-type(2) a:hover::before {
	background-color: #999;
}
footer span ul li:nth-of-type(3) a::before {
	content: '';
	display: inline-block;
	vertical-align: top;
	-webkit-mask: url(../img/twitter.svg) no-repeat center center;
	-webkit-mask-size: cover;
	mask: url(../img/twitter.svg) no-repeat center center;
	mask-size: cover;
	width: 20px;
	height: 20px;
	margin: 0 7px 0 0;
	background-color: #000;
	transition: color 0.5s;
}
footer span ul li:nth-of-type(3) a:hover::before {
	background-color: #999;
}
footer span ul li:nth-of-type(4) a::before {
	content: '';
	display: inline-block;
	vertical-align: top;
	-webkit-mask: url(../img/youtube.svg) no-repeat center center;
	-webkit-mask-size: cover;
	mask: url(../img/youtube.svg) no-repeat center center;
	mask-size: cover;
	width: 20px;
	height: 20px;
	margin: 0 7px 0 0;
	background-color: #000;
	transition: color 0.5s;
}
footer span ul li:nth-of-type(4) a:hover::before {
	background-color: #999;
}

#baixo, #baixo * {
	background: #000;
	padding: 6px 40px 6px 40px;
	color: #FFF;
	font-weight: lighter;
	font-size: 12px;
}
#baixo a {
	padding: 0px;
	margin: 0px;
}

/* Contactos */
#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: 400;
	margin: 0 0 5px 0;
} 
#contactos form textarea {
	margin: 0 0 20px 0;
}

/* Diversos */
#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: 400;
}
#aviso_cks input {
	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;
}

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

.botoes {
	text-align: right;
	padding: 50px 0 0 0;
}
.botoes a {
	display: inline-block;
	vertical-align: top;
	padding: 8px 20px;
	color: #FFF;
	border-radius: 5px;
	text-transform: uppercase;
	background: #d7545b;
	font-size: 14px;
}
.botoes a:hover {
	background: #333;
}

/* Galeria */
#imgaleria span {
	display: inline-block;
	vertical-align: top;
	margin: 0 3px 6px 3px;
	border: #666 1px solid;
	width: 150px;
	height: 150px;
	background: #FFF;
}
#imgaleria a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 150px;
	height: 150px;
}
#imgaleria img {
	max-height: 150px;
	max-width: 150px;
	width: auto;
	height: auto;
}


/* 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: auto;
  height: auto;
  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;
}

.center {
	text-align: center;
}

/* 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 {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: auto;
	max-height: 200px;
	object-fit: cover;
}
.entry div {
	display: block;
	vertical-align: top;
	padding: 25px;
	margin: 0px;
}
.entry h3 {
	margin-top: 0px;
  	font-weight: 800;
  	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight: 400;
	text-transform: uppercase;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

/* Produtos */
#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;
}


#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%);
}

#paginas  {
	text-align: center;
	padding: 50px 0 0 0;
}
#paginas a, #paginas span {
	display: inline-block;
	vertical-align: top;
	padding: 1px 9px;
	border-radius: 4px;
	text-align: center;
	line-height: none;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
}
#paginas label {
	display: inline-block;
	vertical-align: top;
	padding: 1px 9px;
	line-height: none;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
}
#paginas span {
	background: #999;
	color: #FFF;
}
#paginas a:hover {
	text-decoration: none;
	background: #738CAA;
	color: #FFF;
}

#mvv article p {
	text-align: justify;
}

@media only screen and (max-width: 1010px) {
	#corpo *, .corpo * {
		max-width: 100%;
		height: auto;
	}
}
/* Responsivo */
@media (max-width: 992px) {
	#conteudo, #icones, #ppcontactos {
		padding-left: 50px;
		padding-right: 50px;
	}
	#contactos * {
		max-width: calc(100% - 20px);
	}
	#icones {
		grid-template-columns: auto;
		grid-gap: 40px 0;
	}
	h2 {
		margin: 0px;
		padding: 0 0 50px 0;
		border: none;
		font-size: 28px;
	}
	header, header section {
		display: block;
		text-align: center;
	}
	header img {
		margin: 40px auto 0 auto;
	}
	header section section {
		display: block;
		text-align: center;
	}
	menu {
		padding: 0px;
	}
	menu .hamburger  {
		display: inline-block;
		vertical-align: top;
		padding: 0px;
		margin: 0 auto 0 auto;
	}
	menu ul {
		text-align: center;
	}
	header menu ul ul {
		display: none;
		text-align: center;
		padding: 10px;
		margin: 0px;
		left: 0px;
		right: 0px;
		position: absolute;
		z-index: 9999;
		max-width: none;
		width: 100%;
		max-width: calc(100% - 20px);
	}
	menu ul ul li label.activo {
		display: block;
		border: none;
	}
	menu ul ul li {
		display: block;
		vertical-align: top;
		color: #FFF;
		padding:  10px;
	}
	menu ul ul li a, menu ul ul li label {
		color: #FFF;
		display: block;
		font-size: 16pt;
		border-bottom: none;
	}
	menu ul ul li label, menu ul ul li label:hover {
		cursor: pointer;
		cursor: default;
		background: #FFF;
		color: #000;
		font-weight: 400;
	}
	menu ul ul li a:hover {
		background: #FFF;
		color: #000;
		border-bottom: none;
	}
	menu.is-active ul ul {
		background: rgba(0, 0, 0, 0.5);
		display: block;
	}
	menu.is-active ul ul li ul {
		background: none;
		margin: 0px;
	}
	menu ul ul li ul {
		position: relative;
		box-shadow: none;
		display: block;
		padding: 0px;
		border-radius: 0px;
		max-width: none;
	}
	menu ul ul li ul li a {
		text-align: center;
		font-size: 12pt;
		text-transform: uppercase;
		padding: 7px 0 7px 0;
		margin: 0px;
		color: #FFF;
	}
	menu ul ul li ul li a:hover {
		color: #000;
	}
	
	menu .is-active ul ul li ul {
		display: none;
		margin: 0px;
	}
	menu .is-active ul ul li:hover > ul {
		display: block;
	}
	
	#ppcontactos section {
		grid-template-columns: auto;
	}
	
	#contactos {
		padding: 20px 0 80px 0;
		max-width: calc(100vw - 100px);
	}
	#contactos {
		grid-template-columns: auto;
	}
	
	footer, #baixo {
		text-align: center;
	}
	footer span {
		display: inline-block;
		vertical-align: top;
		float: none;
		text-align: center;
		padding: 0 0 30px 0;
	}
	footer ul {
		display: block;
		margin: 0 0 40px 0;
	}
	footer ul:last-of-type {
		margin: 0px;
	}
	footer span {
		padding-top: 50px;
	}
	#vartigo {
		grid-template-columns: auto;
	}
}
@media (max-width: 900px) {
	#artigos {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 30px;
	}
}

@media (max-width: 768px) {	
	.duas_colunas, .tres_colunas {
		display: grid;
		grid-template-columns: auto !important;
		grid-template-areas: unset;
		grid-gap: 60px 0;
		justify-items: center;
	}
}