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

#whatsappchat {
	position: fixed;
	z-index: 99999999;
	right: 10px;
	bottom: 30px;
	max-width: 60px;
	height: auto;
}

/* Formatações gerais */
a {
	color: inherit;
	text-decoration: none !important;
	transition: all 0.5s;
}
a:hover {
	color: #666;
}
h1 {
  	font-size: 36px;
  	line-height: 1.2em;
  	text-transform: uppercase;
  	font-weight: 700;
}
h2 {
	margin: 0px;
	padding: 35px 0;
  	font-weight: 500;
  	line-height: 1.5em;
  	font-size: 42px;
  	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;
}
.quatro_colunas {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40px 60px;
	justify-items: center;
}

#cima {
	text-align: right;
	background: #000;
	padding: 4px 50px;
	font-size: 12px;
}
#cima a {
	color: #999;
}
#cima a:hover {
	color: #FFF;
}
#cima ul {
	display: inine-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	list-style: none;
	color: #999;
}
#cima ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 0 0 20px;
	margin: 0px;
}
#cima ul li:nth-of-type(2) a {
	display: inline-block;
	vertical-align: top;
	width: 20px !important;
	height: 20px !important;
	padding: 0px;
	margin: 0px;
	mask: url(../img/facebook.svg) no-repeat center center;
	mask-size: cover;
	-webkit-mask: url(../img/facebook.svg) no-repeat center center;
	-webkit-mask-size: cover;
	background-color: #999;
	transition: color 0.5s;
}
#cima ul li:nth-of-type(2) a:hover {
	background-color: #FFF;
}
#cima ul li:nth-of-type(3) a {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
	padding: 0px;
	margin: 0px;
	-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;
	background-color: #999;
	transition: color 0.5s;
}
#cima ul li:nth-of-type(3) a:hover {
	background-color: #FFF;
}
#cima ul li:nth-of-type(4) a {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
	padding: 0px;
	margin: 0px;
	-webkit-mask: url(../img/whatsapp.svg) no-repeat center center;
	-webkit-mask-size: cover;
	mask: url(../img/whatsapp.svg) no-repeat center center;
	mask-size: cover;
	background-color: #999;
	transition: color 0.5s;
}
#cima ul li:nth-of-type(4) a:hover {
	background-color: #FFF;
}

/* Logo */
nav {
	display: grid;
	grid-template-columns: 250px auto;
	grid-gap: 0 30px;
	padding: 10px 50px;
}
nav .hamburger {
	display: none;
}
nav section {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 20px 0;
	justify-items: end;
}
nav ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
nav ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 0 0 25px;
	margin: 0 0 0 50px;
}
nav ul li:nth-of-type(1) {
	background: url(../img/pointer.jpg) no-repeat left top;
	background-size: 20px auto;
}
nav ul li:nth-of-type(2) {
	background: url(../img/tel.jpg) no-repeat left top;
	background-size: 20px auto;
}
nav ul li:nth-of-type(2) b {
	display: block;
	vertical-align: top;
	font-size: 18px;
}

/* Menu */
menu {
	padding: 0px;
	margin: 0px;
}
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 ul li:nth-of-type(1), menu ul li:nth-of-type(2) {
	background:none;
	background-size: auto;
}
.hamburger {
	display: none;
}
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: #000;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
	cursor: hand;
	font-family: 'Montserrat', 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: #006699;
}
menu ul li ul a {
	text-transform: none;
	color: #FFF;
}
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;
}

#hpesquisa {
	background: #FFF;
	padding: 30px;
	margin: 0 50px 0 0;
	display: inline-block;
	vertical-align: bottom;
	text-align: left;
	max-width: 310px;
}
#hpesquisa h3 {
	margin-top: 0px;
	font-size: 13.5px;
}
#hpesquisa div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 7px 7px;
}
#hpesquisa label {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
#hpesquisa input[type=submit] {
	display: block;
	vertical-align: top;
	padding: 15px 30px;
	margin: 20px 0 0 0;
	text-align: center;
	border-radius: 0;
	background: #000 url(../img/btn_pesquisa.jpg) no-repeat calc(100% - 20px) center;
	width: 100%;
}

/* Header do site */
header {
	display: grid;
	grid-template-rows: auto;
	grid-gap: 0px;
	background-attachment: fixed;
	padding: 0px;
	height: 500px !important;
	min-height: 500px !important;
	justify-items: end;
	align-items: end;
	/*background: url(../img/banner.jpg) no-repeat center top;
	background-size: cover;*/
}
#backs {
	display: none;
}
header #backimg, header #backfade, header #darken {
	position: absolute;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 500px;
	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 com bread crum, titulo principal e imagem de fundo */
.mini-header {
	margin: 0 0 -1px 0;
  	padding: 60px 50px;
	background-attachment:inherit;
  	background-position: top center;
  	background-repeat: no-repeat;
  	background-color: #1b1016;
  	background-size: 100% auto;
  	z-index: 0;
  	max-height: 100px !important;
	min-height: initial !important;
  	position: relative;
	font-family: 'Oswald', sans-serif;
}
.mini-header div {
	max-width: 1190px;
	margin: 0 auto 0 auto;
	font-family: 'Oswald', sans-serif;
}
.mini-header ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.mini-header ul li {
	display: inline-block;
	vertical-align: top;
	padding:
}
.mini-header ul > li + li:before {
	content: "/\00a0";
    padding: 0 5px;
    color: #cccccc;
	font-family: 'Oswald', sans-serif;
}
.mini-header ul li a {
	font-family: 'Oswald', sans-serif;
	color: #FFF;
	font-size: 14px;
    line-height: 1.75em;
    font-weight: 500;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
	text-decoration: none;
}
.mini-header ul li a:hover {
	color: #FFF;
	text-decoration: underline !important;
}
.mini-header h1 {
	margin: 0;
  	padding: 0;
  	font-weight: 800;
  	letter-spacing: 0.1em;
  	color: #fff;
}

#dark {
	background: #F2F2F2;
}
#dark h2 {
	margin-top: 0px;
	padding-top: 30px;
}

/* Conteudos gerais */
#corpo {
	padding: 0 50px 50px 50px;
	background: #000;
	color: #FFF;
}
.subtitulo {
	text-align: center;
	font-weight: 400;
	color: #666;
	margin: -30px 0 60px 0;
	font-size: 16px;
}

/* Barra */
#barra {
	background: url(../img/barra.jpg) no-repeat center center;
	background-size: cover;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 0px;
}
#barra article {
	background: rgba(0, 0, 0, 0.6);
	color: #FFF;
	padding: 50px;
	text-align: justify;
}
#barra article h3 {
	text-align: left;
	margin: 0 0 40px 0;
	font-size: 22px;
	padding: 0px;
	font-weight: 500;
}
#barra article div {
	margin: 0px;
	padding: 30px 0 0 0;
	text-align: center;
}
#barra article a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 20px;
	margin: 0px;
	font-weight: 600;
	border: #FFF 1px solid;
	border-radius: 30px;
	text-transform: uppercase;
}
#barra article a:hover {
	background: #FFF;
	color: #000;
}

/* Galeria primeira pagina */
#ppgaleria {
	background: url(../img/bggalerias.jpg) no-repeat center center;
	background-size: cover;
	color: #FFF;
}

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

/* Testemunhos primeira página */
#pptestemunhos {
	background: #F6F6F6;
	padding: 0 50px 50px 50px;
}
#pptestemunhos section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 0 50px;
	text-align: justify;
}
#pptestemunhos article h3 {
	text-transform: none;
	text-align: left;
}
#pptestemunhos div {
	text-align: center;
	padding: 50px 0 0 0;
	margin: 0px;
}
#pptestemunhos a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 20px;
	margin: 0px;
	font-weight: 600;
	border: #000 1px solid;
	border-radius: 30px;
	text-transform: uppercase;
}
#pptestemunhos a:hover {
	background: #000;
	color: #F6F6F6;
}

/* Footer */
footer {
	background: #222;
	padding: 40px;
	margin-top: 5px;
}
footer, footer *, #baixo, #baixo * {
	color: #FFF;
	font-size: 13px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}
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: 20px;
	padding: 0px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	font-weight: 500;
}
footer ul li a {
	color: #FFF;
	text-decoration: none;
}
footer ul li a:hover {
	text-decoration: none;
	color: #CCC;
}
#baixo a:hover {
	text-decoration: none;
	color: #CCC;
}
footer ul li label {
	display: inline-block;
	vertical-align: top;
	padding: 0 0 10px 0;
	text-align: right;
	color: #FFF;
	font-size: 22px;
	font-weight: 400;
}
footer span ul {
	display: block;
	vertical-align: top;
	text-align: center;
	padding: 0px;
	margin: 0px;
}
footer span ul li {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 0 0;
	padding: 0px;
}
footer span ul li:last-of-type {
	margin: 0px;
}
footer span ul li:nth-of-type(1) a {
	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 {
	background-color: #CCC;
}
footer span ul li:nth-of-type(2) a {
	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: color 0.5s;
}
footer span ul li:nth-of-type(2) a:hover {
	background-color: #CCC;
}

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

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

/* 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;
	display: block;
	vertical-align: top;
	margin-bottom: 25px;
	color: #000;
}
.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;
	padding: 0px;
	font-weight: 500;
  	font-size: 18px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

.botoes {
	padding: 30px 0;
	text-align: right;
}
.botoes a, .addcarrinho {
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	color: #FFF;
	border-radius: 100px;
	border: #FFF 1px solid;
	padding: 10px 15px;
	transition: all 0.5s;
	font-weight: 600;
}
.botoes a:hover, .addcarrinho:hover {
	background: #FFF;
	color: #000;
}

#paginas  {
	text-align: center;
	padding: 50px 0 0 0;
	color: #FFF;
}
#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;
	color: #FFF;
}
#paginas label {
	display: inline-block;
	vertical-align: top;
	padding: 1px 9px;
	line-height: none;
	font-size: 18px;
	color: #FFF;
}
#paginas span {
	background: #999;
	color: #FFF;
}
#paginas a:hover {
	text-decoration: none;
	background: #738CAA;
	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: repeat(2, 1fr);
	grid-gap: 0 60px;
}
#contactos form {
	display: block;
	vertical-align: top;
	max-width: 100%;
}
#contactos form label {
	display: block;
	vertical-align: top;
	font-weight: bold;
	margin: 0 0 5px 0;
} 
#contactos form textarea {
	margin: 0 0 20px 0;
}
#contactos h2 {
	text-align: left;
}
#contactos input[type=text], #contactos input[type=email], #contactos textarea {
	width: calc(100% - 30px);
}

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

.center {
	text-align: center;
}

/* Destaques */
#destaques {
	padding: 0px;
}
#destaques h2 {
	text-align: left;
}
#destaques div, #artigos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	justify-items: center;
}
#destaques div {
	padding: 0 50px 80px 50px;
}

#destaques article, #artigos article {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	background: #FFF;
	width: auto;
	max-width: 300px;
	margin: 5px;
	color: #000;
}
#destaques article figure, #artigos article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	cursor: hand;
	height: auto;
	width: auto;
	border-bottom: #CCC 1px solid;
}
#destaques article figure img, #artigos article figure img {
	display: block;
	max-width: 100%;
	height: auto;
	transition: all 300ms;
	min-width: 225px;
}
#destaques article figure figcaption, #artigos article figure figcaption {
	background: rgba(0,0,0,0.7);
	color: #FFF;
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
	text-align: center;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
	-webkit-transition-delay: 100ms;
	-moz-transition-delay: 100ms;
	transition-delay: 100ms;
}
#destaques article figure label, #artigos article figure label {
	display: inline-block;
	vertical-align: top;
	padding: 5px 15px 5px 15px;
	border: #FFF 1px solid;
	border-radius: 20px;
	color: #FFF;
	text-transform: uppercase;
	font-size: 12px;
	top: 10%;
	position: relative;
	opacity: 0
	cursor: pointer;
	cursor: hand;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
#destaques figure:hover figcaption, #artigos article figure:hover figcaption {
	opacity: 1;
}
#destaques figure:hover img, #artigos article figure:hover img {
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	transform: scale(1.4);
}
#destaques figure:hover label, #artigos article figure:hover label {
	top: 50%;
	transform: translateY(-50%);
}
#destaques figure label:hover, #artigos article figure label:hover {
	background: #FFF;
	color: #000;
	cursor: pointer;
	cursor: hand;
}

#destaques article p, #artigos article p {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500;
	overflow: hidden;
	padding-left: 7px;
	padding-right: 7px;
}
#destaques article label, #artigos article label {
	display: block;
	vertical-align: top;
	padding-left: 7px;
	padding-right: 7px;
}
#destaques article div, #artigos article div {
	display: block;
	text-align: center;
	padding: 30px 0;
	margin: 0px;
}
#artigos article div {
	padding: 20px 0 20px 0;
	font-size: 16px;
}
#destaques article div a, #artigos article div a {
	display: inline-block;
	vertical-align:	top;
	background: #000;
	color: #FFF;
	border-radius: 100px;
	padding: 7px 15px;
	text-transform: uppercase;
	font-size: 14px;
	border: #000 1px solid;
}
#destaques article div a:hover, #artigos article div a:hover {
	background: #FFF;
	color: #000;
}
#destaques article figure div, #artigos article figure div {
	position: absolute;
	transform: rotate(-45deg) translate(-90px, -40px);
	top: 0px;
	left: 0px;
	color: #FFF;
	text-transform: uppercase;
	font-weight: 400;
	z-index: 9999;
	width: 100%;
	text-align: center;
	padding: 5px 0;
	background: #6C0;
}
#destaques article figure div {
	transform: rotate(-45deg) translate(-120px, -40px);
}
#destaques article figure div.vendido, #artigos article figure div.vendido {
	background: #C00;
}
#destaques article figure div.reservado, #artigos article figure div.reservado {
	background: #F90;
}
.cor_reservado {
	display: inline-block;
	vertical-align: top;
	padding: 4px 60px;
	margin: 5px 0 0 0;
	color: #FFF;
	background: #F90;
	text-transform: uppercase;
}
.cor_vendido {
	display: inline-block;
	vertical-align: top;
	padding: 4px 60px;
	margin: 5px 0 0 0;
	color: #FFF;
	background: #C00;
	text-transform: uppercase;
}
.cor_disponivel {
	display: inline-block;
	vertical-align: top;
	padding: 4px 60px;
	margin: 5px 0 0 0;
	color: #FFF;
	background: #6C0;
	text-transform: uppercase;
}
#corpo * {
	max-width: 100%;
}

.testemunho {
	padding: 40px;
	border: #333 1px solid;
}
.testemunho:nth-of-type(even) {
	background: #333;
}

/* Produtos */
#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: #333 1px solid;
	border-radius: 6px;
}
#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;
}
#prevprod {
	position: fixed;
	z-index: 99999999;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
#nextprod {
	position: fixed;
	z-index: 99999999;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

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

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

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

/* Testemunhos */
.test {
	display: block;
	vertical-align: top;
	padding: 10px 0;
	margin: 0 0 20px 0;
}
.test:nth-child(odd) {
	background: #F4F4F4;
}
.test h3 {
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 0px;
	margin: 0px;
}
.test span {
	display: block;
	vertical-align: top;
	font-size: 16px;
	color: #D90A52;
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0 0 20px 0;
}

/* Efeitos */
.outline {
	border-radius: 7px;
	padding: 4px;
	outline: #000 1px solid;
}

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

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

.explode:before {
	content: attr(data-content);
	color: attr(data-color);
	position: absolute;
	opacity: 0;
}
.explode:after {
	content: '';
}
.explode:hover:before {
	animation-delay: 0.5s;
	animation: 1s ease-out 0s 1 explode;
}

@keyframes explode {
	0% {
		transform: none;
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes menuin {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}
@keyframes fromtop {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}
@keyframes frombottom {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}
@keyframes fromleft {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}
@keyframes fromright {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}

/* Responsivo */
@media (max-width: 992px){
	#cima {
		text-align: center;
	}
	nav {
		display: block;
		padding-left: 25px;
		padding-right: 25px;
	}
	nav img {
		max-width: 150px;
	}
	nav section span {
		display: none;
	}
	nav section span ul li {
		margin-bottom: 10px;
	}
	nav menu .hamburger {
		display: block;
		margin: -35px 0 0 auto;
		float: right;
		text-align: center;
		padding: 0px;
	}
	nav menu {
		display: block;
		vertical-align: top;
		text-align: center;
		width: 100%;
	}
	nav menu ul {
		justify-self: center;
		margin: 0 0 0 -20px;
	}
	nav menu ul ul {
		display: none;
		text-align: center;
		padding: 10px;
		margin: 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, nav menu 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;
	}
	
	#corpo {
		padding-left: 25px;
		padding-right: 25px;
	}
	
	#pcontactos {
		padding: 20px 50px 80px 50px;
	}
	#pcontactos div {
		grid-template-columns: auto;
	}
	
	footer, #baixo {
		text-align: center;
		display: block;
		clear: both;
	}
	footer span {
		display: inline-block;
		vertical-align: top;
		float: none;
		clear: both;
		text-align: center;
		padding: 40px 0 30px 0;
	}
	footer span ul {
		text-align: center;
		padding: 40px 0 0 0;
	}
	footer ul {
		display: block;
		vertical-align: top;
		margin: 0 auto 40px auto;
		width: 100%;
	}
	footer ul:last-of-type {
		margin: 0px;
	}
	#barra {
		grid-template-columns: auto;
	}
	
	.duas_colunas, .tres_colunas, .dois_um, #contactos {
		grid-template-columns: auto;
		grid-gap: 50px 0;
		grid-template-areas: unset;
	}
	#destaques div, #artigos, #ppgaleria section {
		grid-template-columns: repeat(2, 1fr);
		padding-left: 30px;
		padding-right: 30px;
	}
	#corpo {
		padding-left: 30px;
		padding-right: 30px;
	}
	#pptestemunhos section {
		grid-template-columns: auto;
		grid-gap: 50px 0;
	}
	
	.mini-header {
		height: 20px !important;
		display: none;
	}
	
	#hpesquisa {
		margin: 0 auto 0 auto;
		background: rgba(255, 255, 255, 0.8);
	}
}

@media (max-width: 840px) {
	#destaques section {
		grid-template-columns: auto auto;
	}
	#destaques article:last-of-type {
		display: none;
	}
}

@media (max-width: 768px) {	
	.duas_colunas, .tres_colunas, #contactos, #relacionadas {
		grid-template-columns: auto;
		grid-gap: 60px 0;
		grid-template-areas: unset;
	}
	.colesq, .coldir {
		grid-area: unset;
	}
	
	.colesq, .coldir {
		grid-area: unset;
	}
}

@media (max-width: 640px) {
	#destaques div, #artigos, #vartigo {
		grid-template-columns: 1fr;	
	}
	#destaques section {
		grid-template-columns: auto;
	}
	#destaques article {
		max-width: none;
	}
	#destaques article:last-of-type {
		display: block;
	}
}