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

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

h2 {
	font-size: 38px;
	font-weight: 600;
	text-transform: uppercase;
}
h3 {
	text-transform: uppercase;
}
h5 {
	font-size: 16px;
	font-weight: 600;
}

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

/* Formatações gerais */
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.5s;
}
a:hover {
	color: #999999;
}

input[type=submit], input[type=reset], input[type=button], button {
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	color: #FFF;
	background: #000;
	border: #000 1px solid;
	padding: 7px 35px !important;
	border: none;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
}
input[type=submit]:hover, input[type=reset]:hover, button:hover {
	background: #FFF;
	color: #000;
}
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 #CCC;
	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;
}

nav {
	padding: 10px 50px 10px 50px;
	display: grid;
	grid-template-columns: 250px auto;
	grid-gap: 30px;
	margin: 0px;
	box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.8);
}
nav img {
	width: 100%;
	height: auto;
}
nav .hamburger {
	display: none;
}

nav section {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 5px;
	justify-items: end;
}
nav section img {
	height: 18px;
	margin-left: 7px;
	width: auto;
}
nav section ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
nav section ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}

/* Menu */
menu {
	justify-self: end;
	padding: 0px;
	margin: 0px;
}
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 a, menu ul li label {
	color: #151515;
	font-size: 16px;
	display: block;
	vertical-align: top;
	position: relative;
	margin: 0 auto 0 auto;
	padding: 4px 7px;
}
menu ul li a:hover {
	color: #000;
}
menu ul li label {
	padding: 4px 20px 4px 7px;
	cursor: pointer;
	cursor: hand;
	
}
menu ul li a:after, menu ul li label:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}
menu ul li a:hover:after, menu ul li label:hover:after {
    width: 100%;
}
menu ul li label span:after {
	content: '';
	position: absolute;
	display: inline-block;
	vertical-align: top;
	border: solid #151515;
	border-width: 0 2px 2px 0;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin: 3px 0 0 6px;
}
menu ul li label:hover > span:after {
	margin: 8px 0 0 10px;
	border: solid #000;
	border-width: 2px 2px 0 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

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

/* Header do site */
header {
	display: block;
	padding: 0px;
	height: 550px;
}
#backs {
	display: none;
}
header #backimg, header #backfade, header #darken {
	position: absolute;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 550px;
	object-fit: cover;
	object-position: center bottom;
	z-index: -10;
}
header #darken {
	background: rgba(0, 0, 0, 0.6);
	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: auto;
	align-items: center;
	justify-items: center;
	padding: 0 50px;
	height: 550px;
	text-align: center;
	color: #FFF;
}
header section h2 {
	font-size: 48px;
	padding: 0px;
	text-align: center;
	margin: 0 0 5px 0;
}
header section p {
	max-width: 500px;
	padding: 0px;
	margin: 0px auto;
}
header section div {
	padding: 30px 0 0 0;
	margin: 0px;
}
header section div a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 20px;
	margin: 0 10px;
	text-transform: uppercase;
	color: #FFF;
	font-size: 16px;
	border: #FFF 1px solid;
}
header section div a:hover {
	background: #FFF;
	color: #000;
}
header section div a:nth-of-type(1) {
	background: #000;
	border: #000 1px solid;
}
header section div a:nth-of-type(1):hover {
	background: #FFF;
	border: #FFF 1px solid;
}

/* Mini header */
#miniheader {
	display: block;
	height: 140px !important;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 0 0 10px 0;
	background-color: #000;
}

#corpo {
	padding: 50px 50px 100px 50px;
}

/* Primeira página */
#intro {
	display: grid;
	grid-template-columns: 400px auto;
	grid-template-areas: 'img txt';
	grid-gap: 30px;
}
#intro img {
	grid-area: img;
}

/* primeira pagina */
#ppnoticias {
	background: #F0F0F0;
	padding: 50px;
}
#ppnoticias h2 {
	text-align: center;
	padding: 0px;
	margin: 0 0 70px 0;
	text-transform: uppercase;
}
#ppnoticias section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
#ppnoticias article {
	border: #000 1px solid;
	padding: 0px;
	margin: 0px;
}
#ppnoticias img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: cover;
	transition: all 0.5s;
}
#ppnoticias article div {
	padding: 15px;
}
#ppnoticias label {
	display: block;
	padding: 20px 0 0 0;
	text-align: right;
}
#ppnoticias article:hover img {
	opacity: 0.3;
}
#ppnoticias .botoes {
	text-align: center;
}
#ppnoticias .botoes a {
	color: #000;
	background: none;
}
#ppnoticias .botoes a:hover {
	color: #FFF;
	background: #000;
}
#ppnoticias figure {
	display:block;
	width: 100%;
	height: 220px;
	overflow: hidden;
	padding: 0px;
	margin: 0px;
	background: #000;
}
#ppnoticias figcaption {
	text-align: center;
}
#ppnoticias figcaption label {
	color: #FFF;
	text-transform: uppercase;
	display: inline-block;
	vertical-align: top;
	padding: 10px 20px;
	margin: 0 auto;
	border: #FFF 1px solid;
	border-radius: 50px;
	transition: all 0.5s;
}
#ppnoticias article:hover figcaption  label {
	transform: translateY(-130px);
}

/* Testemunhos */
#pptestemunhos {
	padding: 50px;
}
#pptestemunhos h2 {
	text-align: center;
}

/* Footer */
footer {
	background: #666;
	background-size: cover;
	padding: 40px 100px;
	margin: 0px;
	display: grid;
	grid-template-columns: 1fr 1fr 1.5fr 2fr;
	grid-gap: 20px;
}
footer, footer *, #baixo, #baixo * {
	color: #FFF;
	font-size: 12px;
	font-weight: 300;
}
footer ul {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0px;
	margin: 0px;
}
footer ul:last-of-type {
	justify-self: end;
}
footer ul p {
	color: #FFF;
	font-size: 20px;
	padding: 0px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	font-weight: 500;
}
footer ul li {
	padding: 3px 0;
}
footer ul li a {
	color: #FFF;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 200 !important;
}
footer ul li a:hover {
	text-decoration: none;
	color: #CCC;
}
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;
}
footer ul:last-of-type 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: 20px auto;
	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 ul:last-of-type li:nth-of-type(1) a:hover::before {
	background-color: #CCC;
}
footer ul:last-of-type li:nth-of-type(2) a::before {
	content: '';
	display: inline-block;
	vertical-align: top;
	-webkit-mask: url(../img/instagram.svg) no-repeat center center;
	-webkit-mask-size: 20px auto;
	mask: url(../img/instagram.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 ul:last-of-type li:nth-of-type(2) a:hover::before {
	background-color: #CCC;
}
footer ul:last-of-type li:nth-of-type(3) a::before {
	content: '';
	display: inline-block;
	vertical-align: top;
	-webkit-mask: url(../img/whatsapp.svg) no-repeat center center;
	-webkit-mask-size: 20px auto;
	mask: url(../img/whatsapp.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 ul:last-of-type li:nth-of-type(3) a:hover::before {
	background-color: #CCC;
}
#baixo, #baixo * {
	background: #000;
	padding: 6px 100px;
	color: #FFF;
	font-weight: lighter;
	font-size: 12px;
}
#baixo a {
	padding: 0px;
	margin: 0px;
}
#baixo a:hover {
	text-decoration: none;
	color: #FFF;
}

#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: 5px 13px !important;
	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;
}

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

/* 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: #000 1px solid;
	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: 100%;
	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;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

/* 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;
}
#contactos h2 {
	text-align: left;
}

#noticia {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 40px;
}

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

/* Classes gerais */
.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 #666;
	box-shadow: 0 0 1px 1px #666;
}
.botoes {
	padding-top: 40px;
	text-align: right;
}
.botoes a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 15px;
	border: #000 1px solid;
	background: none;
	color: #000;
	font-size: 16px;
	font-weight: 500;
}
.botoes a:hover {
	background: #000;
	color: #FFF;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.duas_colunas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: 'left right';
	grid-gap: 40px;
}
.tres_colunas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
}
.quatro_colunas {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px;
}
.colleft {
	grid-area: left;
}
.colright {
	grid-area: right;
}

.reveal {
  transform: translateY(100px);
  opacity: 0;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
  transition: 1s all ease-out;
}

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

#ppgaleria {
	padding-top: 30px;
	z-index: 0;
	position: relative;
	text-align: center;
}

#ppgaleria section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 6px;
	padding: 20px 100px 100px 100px;
	margin: 0px;
}
#ppgaleria section figure {
	display: block;
	vertical-align: top;
	position: relative;
    overflow: hidden;
	width: 100%;
	padding: 0 0 100% 0;
	margin: 0px;
}
#ppgaleria section figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: -1;
}
#ppgaleria section figure figcaption {
	position: absolute;
	background: none;
	width: 100%;
	padding: 0 0 100% 0;
	text-align: center;
	transition: all 0.3s ease-out;
}
#ppgaleria section figure figcaption:hover {
	background: rgba(0, 0, 0, 0.5);
}
#ppgaleria section 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 {
	margin: 50% auto 0 auto;
}
#ppgaleria h3 {
	text-align: center;
	transform: translateY(-60px);
	font-weight: 400;
	color: #CCC;
}

#barra {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 0px;
	background: #000;
	color: #FFF;
}
#barra article {
	padding: 40px;
	color: #FFF;
}
#barra article h2 {
	font-size: 36px;
	text-align: center;
	font-weight: 700;
	margin-top: 0px;
	padding-top: 0px;
}
#barra article h3 {
	text-align: center;
	margin: -30px auto 40px auto;
}
#barra article div {
	text-align: center;
	padding: 30px 0 0 0;
}
#barra article a {
	display: inline-block;
	vertical-align: top;
	color: #FFF;
	text-transform: uppercase;
	padding: 7px 25px;
	border: #FFF 1px solid;
	border-radius: 25px;
	font-size: 16px;
}
#barra article a:hover {
	background: #FFF;
	color: #000;
}
#barra article:nth-of-type(2) {
	background: url(../img/barra.jpg) no-repeat center center;
	background-size: cover;
}


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

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

@media only screen and (max-width: 950px) {
	nav {
		display: block;
		height: 60px;
		padding: 10px 20px;
	}
	nav img {
		position: relative;
		display: inline-block;
		width: auto;
		max-height: 60px;
	}
	nav section {
		display: block;
		text-align: right;
		transform: translateY(-65px);
	}
	nav section img {
		margin-bottom: 20px;
	}
	nav section .hamburger {
		display: inline-block;
		vertical-align: top;
		padding: 0px;
		margin: 40px 0 0 0;
		position: absolute;
		top: 0px;
		right: 0px;
		z-index: 9999;
	}
	nav section menu ul ul {
		display: none;
		text-align: center !important ;
		padding: 10px;
		margin: 30px 0 0 -10px;
		left: 0px;
		right: 0px;
		position: absolute;
		z-index: 9999;
		max-width: none;
		width: 100%;
	}
	nav section menu ul ul li label.activo {
		display: block;
		border: none;
	}
	nav section menu ul ul li {
		display: block;
		vertical-align: top;
		color: #FFF;
		padding:  10px;
		text-align: center;
	}
	nav section  menu ul ul li a, nav section menu ul ul li label {
		color: #FFF;
		display: block;
		font-size: 16pt;
		border-bottom: none;
	}
	nav section menu ul ul li label, nav section menu ul ul li label:hover {
		cursor: pointer;
		cursor: default;
		background: #FFF;
		color: #000;
		font-weight: 400;
	}
	nav section menu ul ul li a:hover {
		background: #FFF;
		color: #000;
		border-bottom: none;
	}
	nav section menu.is-active ul ul {
		background: rgba(0, 0, 0, 0.5);
		display: block;
	}
	nav section menu.is-active ul ul li ul {
		background: none;
		margin: 0px;
	}
	nav section menu ul ul li ul {
		position: relative;
		box-shadow: none;
		display: block;
		padding: 0px;
		border-radius: 0px;
	}
	nav section 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;
	}
	nav section menu ul ul li ul li a:hover {
		color: #000;
	}
	
	nav section menu .is-active ul ul li ul {
		display: none;
		margin: 0px;
	}
	nav section menu .is-active ul ul li:hover > ul {
		display: block;
	}
	menu li ul li a:after {
		background: none;
		display: none;
	}

	#ppnoticias section {
		grid-template-columns: repeat(2, 1fr);
	}
	#ppnoticias section a:last-of-type {
		display: none;
	}
	#contactos, #relacionadas, #noticia {
		grid-template-columns: auto;
	}
	#intro {
		grid-template-columns: auto;
		grid-template-areas: unset;
	}
	#intro img {
		grid-area: unset;
		justify-self: center;
	}
	#corpo, #ppgaleria section {
		padding-right: 30px;
		padding-left: 30px;
		grid-template
	}
	#ppgaleria section {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#barra {
		display: block;
	}
	#barra article:nth-of-type(2) {
		display: none;
	}
	#vartigo {
		grid-template-columns: auto;
	}
}
@media (max-width: 900px) {
	#artigos {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 850px) {
	.duas_colunas, .tres_colunas, .quatro_colunas {
		grid-template-columns: auto;
		grid-template-areas: unset;
	}
	.colleft, .colright {
		grid-area: unset;
	}
}

@media only screen and (max-width: 720px) {
	#ppnoticias section, footer {
		grid-template-columns: auto;
	}
	#ppnoticias section a:last-of-type {
		display: block;
	}
	footer {
		text-align: center;
	}
	footer ul {
		justify-self: center;
		text-align: center;
	}
	footer ul:last-of-type {
		justify-self: unset;
	}
	#baixo {
		grid-template-columns: auto;
		text-align: center;
	}
	#baixo ul {
		justify-self: center;
	}
	#baixo ul li {
		display: block;
	}
	header section {
		padding-left: 20px;
		padding-right: 20px;
	}
}