@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%;
}
body {
	background: #FFF;
	padding: 0px;
	margin: 0px;
	font-family: 'Montserrat', sans-serif;
  	font-size: 14px;
	position: relative;
	color: #000 !important;
	font-weight: 400;
	overflow-x: hidden;
}

/* Formatações gerais */
a {
	color: inherit;
	text-decoration: none !important;
	transition: all 0.5s;
}
a:hover {
	color: #C00;
}
h1 {
  	font-size: 36px;
  	line-height: 1.2em;
  	text-transform: uppercase;
  	font-weight: 700;
}
h2 {
	margin: 0px;
	padding: 35px 0;
  	font-weight: 400;
  	line-height: 1.5em;
  	font-size: 36px;
  	text-align: center;
  	text-transform: uppercase;
}
h2 em {
  	font-style: normal;
  	font-size: 36px;
  	font-weight: 400;
  	line-height: 1.5em;
  	text-transform: uppercase;
  	color: #F00;
}
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;
}
h5 {
	font-size: 18px;
	text-align: center;
	color: #999;
	font-weight: 350;
	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: #F00;
	padding: 5px 15px;
	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: #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;
}

.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: 40px 60px;
}
.max {
	font-size: 46px;
}

/* Header do site */
header {
	background-attachment: fixed;
	padding: 30px 50px 80px 50px;
	height: calc(100vh - 110px);
}
#backs {
	display: none;
}
header section {
	display: grid;
	grid-template-rows: 1fr 3fr;
	grid-gap: 50px 0;
	align-items: start;
	padding: 0px;
	margin: 0px;
}
header section section {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	transform: translateY(100px);
	text-align: center;
	align-self: end;
}
header section section h2 {
	color: #FFF;
	font-size: 46px;
}
header section section a {
	color: #FFF;
	text-transform: uppercase;
	border: #FFF 1px solid;
	display: inline-block;
	padding: 10px 30px;
}
header section section a:hover {
	color: #000;
	background: #FFF;
}
header #backimg, header #backfade {
	position: fixed;
	padding: 0px;
	margin: 0px;
	left: 0px;
	top: 0px;
	width: 100%;
	transform: translateY(-30px);
	height: 100vh;
	object-fit: cover;
	z-index: -10;
}
header #backfade {
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}
#backfade.fadeout {
	opacity: 0;
}
#backfade.fadein {
	opacity: 1;
}
nav {
	display: grid;
	grid-template-columns: 200px auto;
	grid-gap: 0 50px;
	padding: 0px;
	margin: 0px;
	align-self: start;
}
nav img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
}
header section nav section {
	transform: none;
}
nav section {
	grid-template-columns: auto;
	grid-gap: 20px 0;
	transform: none;
	height: auto;
	padding: 0px;
	margin: 0px;
}
nav section ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: right;
	justify-self: end;
}
header section nav section ul {
	padding-bottom: 20px;
}
nav section ul li {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 0 20px;
	padding: 0px;
}
nav section img {
	height: 20px;
	width: auto;
	display: block;
	vertical-align: top;
	margin: 0px;
	padding: 0px;
}
nav ul li a {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: none;
}
nav ul li a:hover {
	background: none;
}

/* Menu */
nav menu {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	text-align: right;
}
nav menu ul {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: left;
	justify-self: right;
}
nav menu ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
nav .hamburger {
	display: none;
}
nav menu ul li a, nav 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: 14px;
	font-family: 'Montserrat', sans-serif;
}
nav menu .on, nav menu .on {
	color: #F00;
}
nav menu ul li a:hover, nav menu ul li label:hover {
	color: #F00;
	text-decoration: none;
}
nav 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;
}
nav menu ul li:hover ul {
	display: block;
}
nav menu li ul li {
	display: block;
	vertical-align: top;
}
nav menu li ul li a:hover {
	background: #FFF;
	color: #000;
}
nav menu ul li ul a {
	text-transform: none;
	color: #FFF;
	font-size: 14px;
}
nav 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: 'Montserrat', sans-serif;
}

/* Mini header */
#mini-header {
  	padding: 30px 50px 0 50px;
  	background-attachment: fixed;
  	background-position: center center;
  	background-repeat: no-repeat;
  	background-color: #000;
  	background-size: cover;
  	z-index: 0;
  	position: relative;
	height: auto;
}

#conteudo {
	background: #FFF;
	padding: 0px;
	margin: 0px;
	display: block;
	margin: 0px;
}

#corpo {
	padding: 0px 100px 80px 100px;
	margin: 0px;
}
.botoes {
	text-align: right;
	padding: 50px 0 0 0;
}
.botoes a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 25px;
	color: #000;
	text-transform: uppercase;
	border: #000 1px solid;
}
.botoes a:hover {
	background: #000;
	color: #FFF;
}

/* Pesquisa */
#blockpesquisa {
	display: none;
	grid-template-columns: auto;
	align-items: center;
	justify-items: center;
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	padding: 50px;
	background: rgba(0, 0, 0, 0.8);
}
#blockpesquisa input {
	margin: 0px;
}
#blockpesquisa form {
	display: grid;
	grid-template-columns: 1fr 100px;
	grid-gap: 0 20px;
	align-items: center;
	width: 100%;
	max-width: 50%;
}
#blockpesquisa input[type=search] {
	display: block;
}
#btnpesquisa {
	cursor: pointer;
	cursor: hand;
}

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

#barra {
	background: url(../img/barra.jpg) no-repeat center center;
	background-size: cover;
	padding: 100px;
	color: #FFF;
}
#barra h2 {
	font-weight: 600;
}
#barra h5 {
	color: #FFF;
	margin: -40px 0 0 0;
}
#barra .botoes {
	text-align: center;
}
#barra .botoes a {
	background: #d7545b;
	color: #FFF;
	border-radius: 7px;
	border: none;
}
#barra .botoes a:hover {
	background: #FFF;
	color: #000;
}
#ppgaleria {
	padding: 10px 100px 20px 100px;
}
#ppgaleria h2 {
	font-size: 42px;
}
#ppgaleria section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 5px;
}
#ppgaleria img {
	display: block;
	vertical-align: top;
	max-width: 100% !important;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	max-height: 230px;
	object-fit: cover;
}
#ppinsta {
	padding: 0 100px 50px 100px;
	text-align: center;
}
#ppinsta h2 {
	font-size: 38px;
}
#ppinsta label {
	font-size: 32px;
	display: block;
	vertical-align: top;
	text-align: center;
	margin: -20px 0 0 0;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

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

/* 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 h2 {
	margin-top: 0px;
  	font-weight: 800;
  	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0 0 10px 0;
}
.entry p {
	line-height: 20px;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

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

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

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

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

#redes {
	text-align: right;
	padding-bottom: 30px;
	margin-bottom: 50px;
	border-bottom: #CCC 1px solid;
}

/* 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 {
	background: #000;
	color: #FFF;	
	padding: 30px 100px;
}
footer section:nth-of-type(1) {
	display: grid;
	grid-template-columns: repeat(3, 1fr) 2fr;
	grid-gap: 50px;
}
footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: block;
}
footer li {
	display: block;
	vertical-align: top;
	margin: 2px 0;
	padding: 0px;
}
footer li a, footer li {
	font-weight: 100;
	font-size: 14px;
	font-family: 'Oswald', sans-serif;
}
footer ul p {
	font-size: 20px;
}
footer label {
	font-size: 28px;
	font-family: 'Montserrat', sans-serif;
	white-space: nowrap;
	white-space-collapse: preserve;
	font-weight: lighter;
}
footer ul:last-of-type {
	justify-self: end;
}
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: 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: all 0.5s;
}
footer ul:last-of-type li:nth-of-type(1) a:hover:before {
	background-color: #C00;
	transform: translateX(-3px);
}
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: cover;
	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: all 0.5s;
}
footer ul:last-of-type li:nth-of-type(2) a:hover:before {
	background-color: #C00;
	transform: translateX(-3px);
}
footer section:nth-of-type(2) {
	text-align: right;
	display: block;
	vertical-align: top;
	padding: 30px 0 0 0;
	margin: 0px;
}
footer section:nth-of-type(2) img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 150px;
	height: auto;
}

.testemunho {
	display: block;
	vertical-align: top;
	padding: 20px;
	margin: 20px 0;
	border: #CCC 1px solid;
	border-radius: 10px;
}

/* 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 * {
	color: #666;
}
#artigos a:hover article figure figcaption {
	transform: translateY(-100%);
	color: #FFF;
}

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

@keyframes slideInFromTop {
	0% {
		transform: translateY(-100px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes slideInFromBottom {
	0% {
		transform: translateY(100px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes slideInFromLeft {
	0% {
		transform: translateX(-100px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}	
}
@keyframes slideInFromRight {
	0% {
		transform: translateX(100px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}	
}

@media only screen and (max-width: 1100px) {
	#corpo, .corpo, #ppgaleria, #ppinsta {
		padding-left: 50px;
		padding-right: 50px;	
	}
	#corpo *, .corpo * {
		max-width: 100%;
		height: auto;
	}
	
	header section {
		display: grid;
		grid-template-rows: auto;
		grid-gap: 50px 0;
	}
	header section section {
		display: block;
		vertical-align: top;
		padding: 0px;
		margin: 0px;
		transform: translateY(20px);
		text-align: center;
		align-self: center;
	}
	nav {
		display: block;
		vertical-align: top;
		padding: 0px;
		margin: 0px;
	}
	nav img {
		max-width: 200px;
		display: inline-block;
		vertical-align: top;
		padding: 0px;
		margin: 0 auto;
	}
	header section nav section {
		/*grid-template-columns: auto;
		justify-items: center;
		grid-gap: 50px 0;*/
		display: block;
	}
	nav section ul {
		text-align: center;
		padding: 30px 0 0 0;
		padding-bottom: 0px;
	}
	nav menu {
		display: block;
		vertical-align: top;
		margin: 0px;
		padding: 20px 0 0 0;
		justify-self: end;
	}
	nav .hamburger {
		display: inline-block;
		vertical-align: top;
		padding: 0px;
		margin: 0px;
		position: absolute;
		right: 50px;
		top: 40px;
	
	}
	
	nav menu ul {
		text-align: center;
	}
	nav 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%;
	}
	nav menu ul ul li label.activo {
		display: block;
		border: none;
	}
	nav menu ul ul li {
		display: block;
		vertical-align: top;
		color: #FFF;
		padding:  10px;
	}
	nav menu ul ul li a, nav menu ul ul li label {
		color: #FFF;
		display: block;
		font-size: 16pt;
		border-bottom: none;
	}
	nav menu ul ul li label, nav menu ul ul li label:hover {
		cursor: pointer;
		cursor: default;
		background: #FFF;
		color: #000;
		font-weight: 400;
	}
	nav menu ul ul li a:hover {
		background: #FFF;
		color: #000;
		border-bottom: none;
	}
	nav menu.is-active ul ul {
		background: rgba(0, 0, 0, 0.5);
		display: block;
	}
	nav menu.is-active ul ul li ul {
		background: none;
		margin: 0px;
	}
	nav menu ul ul li ul {
		position: relative;
		box-shadow: none;
		display: block;
		padding: 0px;
		border-radius: 0px;
	}
	nav 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 menu ul ul li ul li a:hover {
		color: #000;
	}
	
	nav menu .is-active ul ul li ul {
		display: none;
		margin: 0px;
	}
	nav menu .is-active ul ul li:hover > ul {
		display: block;
	}
	
	#barra {
		grid-template-columns: auto;
		grid-gap: 30px 0;
		padding-left: 50px;
		padding-right: 50px;
		justify-items: center;
	}
	#barra * {
		max-width: 100%;
	}
}

@media (max-width: 900px) {
	#pcontactos {
		padding: 20px 50px 80px 50px;
	}
	#pcontactos div {
		grid-template-columns: auto;
	}
	
	#contactos {
		padding: 20px 50px 80px 50px;
	}
	#contactos {
		grid-template-columns: auto;
	}
	
	.duas_colunas, .tres_colunas, .dois_um {
		grid-template-columns: auto;
		grid-gap: 50px 0;
		grid-template-areas: unset;
	}
	.colesq, .coldir {
		grid-area: unset;
	}
	#ppgaleria section {
		grid-template-columns: repeat(2, 1fr);
	}
	
	footer section:nth-of-type(1) {
		grid-template-columns: repeat(2, 1fr);
	}
	footer ul:last-of-type {
		justify-self: start;
	}
}

@media (max-width: 700px) {
	#ppgaleria section {
		grid-template-columns: auto;
	}
	footer section:nth-of-type(1) {
		grid-template-columns: auto;
		text-align: center;
	}
	footer ul:last-of-type {
		justify-self: unset;
	}
	footer section:nth-of-type(2) {
		text-align: center;
	}
}