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

html, body {
	min-height: 100vh;
	box-sizing: border-box;
	scroll-behavior: smooth;
	overflow-X: hidden;
}
body {
	padding: 0px;
	margin: 0px;
	background: #FFF;
	font-family: 'Overpass', sans-serif;
	font-size: 15px;
	text-decoration: none;
	font-weight: 300;
}
/*
::-webkit-scrollbar {
	width: 3px;
}
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px #CEEEFB;
} 
::-webkit-scrollbar-thumb {
	background-color: #999;
	outline: 1px solid #999;
}*/

/* Formatações gerais */
a {
	color: inherit;
	text-decoration: none !important;
	transition: all 0.5s;
}
a:hover {
	color: #999999;
}
h1 {
  	font-size: 36px;
  	line-height: 1.2em;
  	font-weight: 700;
}
h2 {
	font-family: 'Overpass', sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
	padding: 30px 0;
	margin: 0px;
}
h3 {
  	letter-spacing: 0.1em;
  	line-height: 1.5em;
  	font-size: 32px;
  	font-weight: 300;
}
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;
	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: #999;
	padding: 5px 15px;
	border: none;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
	font-family: 'Oswald', sans-serif;
}
input[type=submit]:hover, input[type=reset]:hover, button:hover {
	background: #000;
}
input[type=text], 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;
	margin: 6px 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background: #FFF;
    border: 1px solid #CCC;
	border-radius: 4px;
	resize: none;
	font-family: 'Oswald', sans-serif;
}
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: 'Oswald', sans-serif;
}

.duas_colunas {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-template-areas: "colesq coldir";
	grid-gap: 0 60px;
}
.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;
}
.tres_um {
	grid-template-columns: 3fr 1fr
}


/* Menu lateral */
menu {
	position: fixed;
	z-index: 9999988;
	width: 195px;
	max-width: 195px;
	background: #FFF;
	height: calc(100vh - 40px);
	margin: 0px;
	box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(0px -15px 0px 0px);
	display: grid;
	grid-template-coluns: auto;
	grid-template-rows: 50px auto auto auto;
	grid-gap: 10px 0;
	padding: 20px;
	align-items: top;
	overflow: auto;
	transition: all 0.5s;
}
menu::-webkit-scrollbar {
	width: 3px;
}
menu::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px #CEEEFB;
} 
menu::-webkit-scrollbar-thumb {
	background-color: #999;
	outline: 1px solid #999;
}

/* Fechar menu */
menu section:nth-of-type(1) {
	vertical-align: top;
	justify-self: end;
	align-self: top;
	color: rgba(0, 0, 0, 0);
	font-size: 13px;
	line-height: 15px;
	height: 17px;
	cursor: pointer;
	cursor: hand;
	white-space: nowrap;
	overflow: hidden;
	width: 20px;
	transition: all 0.3s ease-out;
	display: none;
	padding: 0px;
}
menu section:nth-of-type(1):hover {
	color: rgba(0, 0, 0, 1);
	width: 100px;
	transition: all 0.3s ease-in;
}
menu section:nth-of-type(1) span {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background: #000;
	width: 18px;
	height: 3px;
	margin: 0 5px 0 0;
	border-radius: 4px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
menu section:nth-of-type(1) span:before {
	content: '';
	position: absolute;
	background: #000;
	width: 18px;
	height: 3px;
	margin: 0px;
	border-radius: 4px;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
}

/* Logo */
menu section:nth-of-type(2) img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
}

/* Menu */
menu section:nth-of-type(3) ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
menu section:nth-of-type(3) ul li {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 10px 0;
}
menu section:nth-of-type(3) ul li a, menu section:nth-of-type(3) ul li label {
	font-family: 'Overpass', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	transition: all 0.5s;
	cursor: pointer;
	cursor: hand;
}
menu section:nth-of-type(3) ul li a:hover {
	transform: translateX(5px);
	color: #999;
}
menu section:nth-of-type(3) ul li label:after {
	content: '';
	position: absolute;
	display: inline-block;
	vertical-align: top;
	border: solid #000;
	border-width: 0 2px 2px 0;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin: 3px 0 0 10px;
}
menu section:nth-of-type(3) li ul {
	position: relative;
	display: block;
	padding: 5px;
	margin: 0px;
	height: 0px;
	overflow: hidden;
	opacity: 0;
	border-radius: 4px;
	transition: all 0.3s ease-in;
}
menu section:nth-of-type(3) li ul li {
	margin: 3px 0;
}
menu section:nth-of-type(3) li ul li a, menu section:nth-of-type(3) li ul li label {
	text-transform: none;
	font-size: 16px;
}
menu section:nth-of-type(3) ul li:hover > ul {
	opacity: 1;
	height: 75%;
}

/* Icones */
menu section:nth-of-type(4) {
	justify-self: center;
}
menu section:nth-of-type(4) ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
menu section:nth-of-type(4) ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 7px;
	margin: 0px;
	text-align: center;
	font-family: 'Oswald', sans-serif;
	transition: all 0.5s;
}
menu section:nth-of-type(4) ul li:hover {
	transform: translateY(-6px);
}
menu section:nth-of-type(4) img {
	height: 20px;
	width: auto;
	display: inline-block;
	vertical-align: bottom;
	padding: 0px;
	margin: 0px;
}
menu section:nth-of-type(4) ul li:after {
	content: attr(data-content);
	font-size: 12px;
	font-weight: normal;
	text-align: center;
	display: block;
	margin: 6px 0 0 0;
	opacity: 0;
	transition: all 0.5s;
}
menu section:nth-of-type(4) ul li:hover:after {
	opacity: 1;
}

/* Horário */
menu section:nth-of-type(5) h3 {
	font-family: 'Overpass', sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	margin: -5px 0 7px 0;
	padding: 0px;
}
menu section:nth-of-type(5) table * {
	font-size: 12px;
}
menu section:nth-of-type(5) table {
	margin-bottom: 20px;
}

/* Botão de marcação */
menu section:nth-of-type(6) {
	text-align: center;
}
menu section:nth-of-type(6) a {
	text-transform: uppercase;
	color: #FFF;
	display: block;
	vertical-align: top;
	background: #000;
	padding: 8px;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.5s;
}
menu section:nth-of-type(6) a label {
	display: block;
	vertical-align: top;
	font-size: 12px;
	cursor: pointer;
	cursor: hand;
}
menu section:nth-of-type(6) a:hover {
	background: #666;
}

/* Redes sociais */
menu section:nth-of-type(7) {
	text-align: center;
	font-family: 'Oswald', sans-serif;
}
menu section:nth-of-type(7) ul {
	list-style: none;
	padding: 0px;
	margin: 15px 0 0 0;
}
menu section:nth-of-type(7) ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 5px;
	margin: 0px;
	text-align: center;
	transition: all 0.5s;
}
menu section:nth-of-type(7) ul li:hover {
	transform: translateY(-6px);
}
menu section:nth-of-type(7) img {
	display: block;
	vertical-align: top;
	height: 25px;
	width: auto;
	border-radius: 5px;
}
menu section:nth-of-type(7) ul li:after {
	content: attr(data-content);
	font-size: 12px;
	font-weight: normal;
	text-align: center;
	display: block;
	margin: 6px 0 0 0;
	opacity: 0;
	transform: translateX(-20%);
	transition: all 0.5s;
}
menu section:nth-of-type(7) ul li:hover:after {
	opacity: 1;
}

section#site {
	position: relative;
	display: block;
	margin: 0 0 0 235px;
	transition: margin 0.5s;
}

/* Hamburguer */
#hamburguer {
	padding: 7px 0 0 0;
	margin: 0px;
	width: 18px;
	height: 11px;
	cursor: pointer;
	cursor: hand;
	display: inline-block;
	vertical-align: top;
	transition: all 0.3s ease-out;
	display: none;
}
#hamburguer:after {
	content: attr(data-content);
	display: inline-block;
	vertical-align: top;
	margin: -14px 0 0 0px;
	padding: 0 0 0 25px;
	width: 0px;
	color: rgba(0, 0, 0, 0);
	transition: all 0.3s ease-out;
	overflow: hidden;
}
#hamburguer:hover:after {
	width: 35px;
	color: rgba(0, 0, 0, 1);
}
#hamburguer span {
	content: '';
	display: block;
	width: 18px;
	height: 3px;
	background: #000;
	border-radius: 4px;
}
#hamburguer span:before {
	content: '';
	position: absolute;
	display: block;
	width: 18px;
	height: 3px;
	background: #000;
	border-radius: 4px;
	margin: -7px 0 0 0;
}
#hamburguer span:after {
	content: '';
	position: absolute;
	display: block;
	width: 18px;
	height: 3px;
	background: #000;
	border-radius: 4px;
	margin: 7px 0 0 0;
}
#hamburguer:hover span:after {
	transform: translateX(45px);
}
#hamburguer:hover span {
	transform: rotate(135deg);
	transition: all 0.22s;
}
#hamburguer:hover span:before {
	opacity: 0;
	margin: 0px;
}
#hamburguer:hover span:after {
	transform: rotate(-90deg);
	margin: 0px;
}

/* Header */
#backs {
	display: none;
}
header {
	width: 100%;
	height: 100vh;	
}
header #backimg, header #backfade {
	position: absolute;
	padding: 0px;
	margin: 0px;
	left: 0px;
	top: 0px;
	width: 100%;
	transform: translateY(-30px);
	height: 100vh;
	object-fit: cover;
	z-index: -1;
}
header #backfade {
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}
#backfade.fadeout {
	opacity: 0;
}
#backfade.fadein {
	opacity: 1;
}
header section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: 'menu logo';
	grid-gap: 0 40px;
	position: absolute;
	top: 20px;
	width: calc(100% - 30px);
	padding: 0 0 0 30px;
	margin: 0px;
	justify-items: end;
	z-index: 99999;
}
header section img {
	display: inline-block;
	vertical-align: top;
	grid-area: logo;
	padding: 0px;
	margin: 0 0 0 auto;
	max-width: 450px;
	height: auto;
}
header section label {
	justify-self: start;
}

.mini_header {
	height: auto;
	min-height: 300px;
	background-position: center top;
  	background-repeat: no-repeat;
  	background-color: #1b1016;
  	background-size:cover;
}

.menu_aberto {
	transform: none;
}
section#site.menu_site {
	margin: 0 0 0 235px;
}

/* Conteudo */
#corpo {
	background: #FFF;
	padding: 0 50px 80px 50px;
}

/* Primeira página */
#ppservicos {
	padding-bottom: 20px;
}
#ppgaleria {
	padding: 0 50px 20px 50px;
}
#ppservicos section, #ppgaleria section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	justify-items: center;
	align-items: top;
}
#ppservicos section figure, #ppservicos section figure img, #ppgaleria section figure, #ppgaleria section figure img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
	
}
#ppservicos section figure, #ppgaleria section figure {
	overflow: hidden;
	padding-bottom: 10px;
}
#ppservicos section figure img, #ppgaleria section figure img {
	transition: all 0.5s;
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
#ppservicos section figure figcaption {
	position: relative;
	text-align: center;
	background: rgba(255, 255, 277, 0.8);
	display: grid;
	align-items: center;
	color: #000;
	text-transform: uppercase;
	padding: 7px;
	margin: -65px 0 0 0;
	min-height: 39px;
	font-size: 16px;
}
#ppservicos section figure:hover > img, #ppgaleria section figure:hover > img {
	transform: scale(1.2);
}
#ppservicos h2, #pprevista article h3, #ppmapa h3, #ppgaleria h3 {
	font-family: 'Overpass', sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
}
#ppgaleria section figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #000 1px solid;
}

#barra {
	background: url(../img/barra.jpg) no-repeat center bottom;
	background-size: cover;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: 'esq dir';
	grid-gap: 0px;
	min-height: 400px;
}
#barra article {
	grid-area: dir;
	background: rgba(255, 255, 255, 0.8);
	padding: 50px;
	color: #000;
	font-size: 14px;
	text-align: justify;
}
#barra img {
	max-width: 300px;
	display: block;
	padding: 0px;
	margin: 0 0 60px auto;
}
#barra .botoes a {
	color: #000;
	border: #000 1px solid;
	background: none;
}
#barra .botoes a:hover {
	background: #000;
	color: #FFF;
}

#pprevista {
	padding: 50px;
	display: grid;
	grid-template-columns: 1fr 314px;
	grid-gap: 0 40px;
}
#pprevista img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
}

#instafeed {
	background: #F2EDEA;
	padding: 20px 50px 80px 50px;
}
#instafeed section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	justify-items: center;
}
#instafeed section a, #instafeed section a img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: auto;
}

#ppmapa h3 {
	padding-left: 50px;
	padding-right: 50px;
}
#ppmapa iframe {
	filter: grayscale(100%);
	display: block;
	padding: 0px;
	margin: 0px;
	height: 450px;
}

/* Classes gerais */
.center {
	text-align: center !important;
}
#marcar, .botoes {
	padding: 50px 0 0 0;
	text-align: right;
}
#marcar {
	text-align: center;
}
#marcar a, .botoes a {
	display: inline-block;
	vertical-align: top;
	background: #000;
	border: #000 1px solid;
	color: #FFF;
	text-transform: uppercase;
	padding: 10px 25px;
	font-size: 16px;
}
#marcar a:hover, .botoes a:hover {
	background: none;
	color: #000;
}

footer {
	background: #121212;
	padding: 50px;
	color: #FFF;
	display: grid;
	grid-template-columns: repeat(3, 1fr) 2fr;
	grid-template-areas: 'sobre legal app morada';
	grid-gap: 0 30px;
	font-size: 13px;
}
footer article {
	grid-area: morada;
	justify-self: end;
	text-align: right;
}
footer article img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0 0 20px 0;
	max-width: 250px;
	width: 100%;
	height: auto;
}
footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
footer ul h3 {
	font-size: 24px;
	font-weight: 300;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	white-space: nowrap;
}
footer li {
	padding: 0px;
	margin: 7px 0;
}
footer li img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 20px 0 0 0;
	max-width: 130px !important;
	height: auto;
}
footer li a {
	white-space: nowrap;
}

/* Galeria */
#imgaleria {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 10px;
}
#imgaleria img {
	display: block;
	vertical-align: top;
	margin: 0px;
	border: #666 1px solid;
	width: 100%;
	height: auto;
	background: #FFF;
}

/* Lightbox */
#lightbox {
	margin-top: 10px;
}
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;
}

/* 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;
}
.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;
	text-transform: uppercase;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

#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;
}
#paginas label {
	display: inline-block;
	vertical-align: top;
	padding: 1px 9px;
	line-height: none;
	font-size: 18px;
}
#paginas span {
	background: #999;
	color: #FFF;
}
#paginas a:hover {
	text-decoration: none;
	background: #000;
	color: #FFF;
}

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

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

#screenblock {
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background: #000;
	opacity: 0.6;
	filter: alpha(60%);
	z-index: 999990;
}
#popup {
	position: fixed;
	background: #FFF;
	padding: 7px;
	top: 50%;
	left: 50%;
	-webkit-box-shadow: 0px 0px 2px 1px #000;
	box-shadow: 0px 0px 2px 1px #000;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	transform: translate(-50%,-50%);
	z-index: 999992;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000;
}
#popup * {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #000;
}

/* 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;
}
#relacionadas article figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 150px;
	height: auto;
	border: #000 1px solid;
}

/* Listagens */
.lista {
	border: #000 1px solid;
}
.titulo_lista {
	background: #000;
	color: #FFF;
	font-weight: bold;
}
.titulo_lista td, .linha_branca td, .linha_cor td, .linha_familia td, .seleccionada td {
	padding: 3px;
}
.titulo_lista a {
	color: #FFF;
}
.linha_cor {
	background: #DAFDCE;
}
.linha_familia {
	background: #39C;
}
.linha_familia a {
	color: #000; 
}
.linha_familia a:hover {
	color: #FFF;
}
.seleccionada {
	background: #FFCC66;
}
.linha_indisponivel {
	background: #C00;
	color: #FFF;
}
.linha_max_qt {
	background: #F90;
}

.total {
	border: #000 1px solid;
	border-top: none;
}

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

.resp_thumb {
	padding: 4px;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
	max-width: 100%;
	height: auto;
}

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

/* Testemunhos */
.testemunho {
	border: #CCC 1px solid; 
	margin: 5px 0 5px 0; 
	padding: 20px;
}
.testemunho:nth-child(odd) {
	background: #F4F4F4;
}

/* Serviços */
.servico {
	display: grid;
	grid-template-columns: 150px auto 130px;
	grid-gap: 0 40px;
	align-items: start;
	margin: 30px 0;
	border: #CCC 1px solid;
	padding: 10px;
}
.servico:nth-child(odd){
	background: #F4F4F4;
}
.servico figure {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
.servico img {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 100%;
	height: auto;
	border: #000 1px solid;
}
.servico div.botoes {
	align-self: center;
}

/* Catálogo */
#artigos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 60px 20px;
	justify-items: center;
}
#artigos article {
	display: inline-block;
	vertical-align: top;
	padding: 7px;
	background: #FFF;
	width: 100%;
	max-width: 255px;
	margin: 5px;
	text-align: center;
}
#artigos article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	cursor: hand;
}
#artigos article figure img {
	display: block;
	max-width: inherit;
	height: auto;
	transition: all 300ms;
	width: 100%;
	height: auto;
}
#artigos article p {
	text-transform: uppercase;
	font-size: 18px;
	margin: 10px auto;
}
#artigos article span {
	display: block;
	text-align: center;
	padding: 0 0 10px 0;
	margin: 0px;
}
#artigos article div a {
	display: block;
	vertical-align: top;
	background: #000;
	color: #FFF;
	text-transform: uppercase;
	padding: 10px;
}
#artigos article div a:hover {
	background: #D8C8B1;
	color: #000;
}

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

#vartigo {
	display: grid;
	grid-template-columns: 400px 1fr;
	grid-gap: 0 20px;
}
#vartigo article {
	justify-self: center;
}
#vartigo article img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border-radius: 6px;
	max-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;
}

/* Cursos */
.entry_curso {
	display: grid;
	grid-template-columns: 150px 1fr;
	grid-gap: 0 40px;
	padding: 10px;
	margin: 0 0 20px 0;
	border: #CCC 1px solid;
}
.entry_curso figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0 auto;
}
.entry_curso figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0 auto;
	border: #000 1px solid;
	border-radius: 6px;
}
.entry_curso h4 {
	text-transform: uppercase;
}
.entry_curso section div:nth-of-type(1) {
	padding-bottom: 20px;
}
.entry_curso section div:nth-of-type(2) {
	text-align: right;
}
.entry_curso section ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: inline-block;
	vertical-align: bottom;
}
.entry_curso section ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0 20px 0 0;
}
.entry_curso section input[type=button] {
	display: inline-block;
	vertical-align: bottom;
}

#blockpesquisa {
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
	z-index: 999999;
	margin: 0px;
	padding: 50px;

	display: none; /* grid */
	grid-templte-columns: auto;
	align-items: center;
}
#blockpesquisa form {
	display: grid;
	grid-template-columns: auto 35px;
	grid-gap: 0 20px;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
#blockpesquisa input[type=search] {
	padding: 10px 15px;
	border: #000 1px solid;
	border-radius: 4px;
	outline: none;
}
#blockpesquisa input[type=image] {
	display: inline-block;
	vertical-align: middle;
	padding: 0px;
	margin: 0px;
	width: 35px;
	height: auto;
}

/* Aviso cookies */
#aviso_cks {
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	width: 100%;
	bottom: 0px;
	top: 0px;
	z-index: 9999999;
	opacity: 1;
	transition: all 0.5s;
}
#aviso_cks div {
	position: fixed;
	color: #000;
	background: #FFF;
	padding: 40px 50px;
	margin: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
}
#aviso_cks * {
	color: #000;
}
#aviso_cks a {
	font-weight: bold;
}
#aviso_cks input {
	padding: 10px 45px;
	margin: 30px auto 0 auto;
	outline: none;
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
	cursor: pointer;
	cursor: hand;
	background: #000;
	display: block;
	color: #FFF;
	border: #000 1px solid;
	border-radius: 0px;
}
#aviso_cks input:hover {
	color: #000;
	background: #FFF;
	transition: all 0.5s;
}

#marcahora {
	position: fixed;
	padding: 20px 50px;
	text-align: center;
	margin: 0px;
	z-index: 88888;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: #FFF;
	box-shadow: 0 0 15px rgba(0,0,0,0.75);
    clip-path: inset(-15px 0px 0px 0px);
	display: none;
}

@media only screen and (max-width: 1070px) {
	menu {
		transform: translateX(-105%);
	}
	menu section:nth-of-type(1) {
		display: block;
	}
	section#site {
		margin: 0px;
	}
	#hamburguer {
		display: inline-block;
	}
	#marcahora {
		display: block;
	}
	footer {
		padding-bottom: 120px;
	}
}
@media only screen and (max-width: 950px) {
	#conteudo *, #pprevista * {
		max-width: 100%;
		height: auto;
	}
	header {
		height: 45vh;	
	}
	header section img {
		max-width: 100%;
		min-width: 300px;
	}
	footer {
		grid-template-columns:auto;
		grid-template-areas: none;
		grid-gap: 50px 0;
		text-align: center;
	}
	footer article {
		grid-area: unset;
		text-align: center;
	}
	#imgaleria {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 750px) {
	#servicos div {
		grid-template-columns: repeat(2, 1fr);
	}
	#servicos div article:last-of-type {
		display: none;
	}
	#marcar {
		display: block;
	}
	#pgaleria {
		display: none;
	}
	
	.duas_colunas, .tres_colunas, #contactos, #relacionadas {
		grid-template-columns: auto;
		grid-gap: 50px 0;
		grid-template-areas: unset;
	}
	.colesq, .coldir {
		grid-area: unset;
	}
	
	.colesq, .coldir {
		grid-area: unset;
	}
	#relacionadas article {
		border: #CCC 1px solid;
	}
	#relacionadas a:nth-child(odd) article {
		background: #F4F4F4;
		padding: 10px;
	}

	.servico {
		grid-template-columns: 80px auto;
		grid-gap: 0 20px;
	}
	.servico div.botoes {
		display: none;
	}	
	
	* {
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-webkit-tap-highlight-color: transparent;
	}
	
	.entry_curso {
		grid-template-columns: auto;
		grid-gap: 40px 0;
	}
	
	header, header #backimg, header #backfade {
	    height: 280px;
	}
}
@media only screen and (max-width: 680px) {
	#ppservicos section, #instafeed section, #ppgaleria section {
		grid-template-columns: repeat(2, 1fr);
	}
	#ppservicos {
		margin-left: -30px;
		margin-right: -30px;
	}
	#pprevista article h3, #ppmapa h3 {
		margin-left: -30px;
	}
	#ppservicos section figure, #ppservicos section figure img {
		width: 250px !important;
		height: 130px;
		object-fit: cover;
	}
	#imgaleria {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 550px) {
	#ppservicos section figure, #ppservicos section figure img {
		width: 200px !important;
	}
}
@media only screen and (max-width: 530px) {
	#ppservicos section {
		grid-gap: 2px 10px;
	}
	#ppservicos section figure, #ppservicos section figure img {
		width: 180px !important;
		height: 130px;
		object-fit: cover;
	}
	#ppservicos section figure figcaption {
		font-size: 13px;
	}
	#instafeed h3 {
		font-size: 24px;
	}
	#barra {
		grid-template-columns: auto;
	}
	#pprevista {
		grid-template-columns: auto;
		grid-gap: 50px 0;
	}
	#pprevista img {
		display: block;
		vertical-align: top;
		padding: 0px;
		margin: 0 auto;
	}
}