@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

/* Configurações gerais */
a {
	color: #666;
	text-decoration: none;
	transition: all 0.5s;
}
a:hover {
	color: #005B9C;
}
h1 {
  	font-size: 48px;
  	line-height: 1.2em;
  	text-transform: uppercase;
  	font-weight: 700;
	color: #000;
}
h2 {
	margin: 0px;
	padding: 35px 0;
  	font-weight: 500;
  	line-height: 1.5em;
  	font-size: 36px;
  	text-transform: uppercase;
	color: #000;
}
h3 {
  	text-transform: uppercase;
  	letter-spacing: 0.1em;
  	line-height: 1.5em;
  	font-size: 16px;
  	font-weight: 700;
	color: #000;
}
h4 {
	font-size: 18px;
	margin: 10px 0;
	font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
	display: block;
	vertical-align: top;
	color: #000;
	text-transform: uppercase;
}
h5 {
	font-size: 18px;
	font-weight: 350;
	padding: 0 0 50px 0;
	margin: -50px 0 0 0;
	color: #000;
	text-transform: uppercase;
}

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: 50px;
	padding: 5px 25px;
	border: #005B9C 1px solid;
	background: #005B9C;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
	font-family: 'Montserrat', sans-serif;
}
input[type=submit]:hover, input[type=reset]:hover, button:hover {
	background: #FFF;
	color: #005B9C;
}
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;
	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;
}

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

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

/* Design site */
#logo {
	display: grid;
	grid-template-columns: 200px auto;
	align-items: center;
	padding: 0 50px;
	margin: 0px;
	background: #FFF;
}

/* menu */
nav {
	text-align: right;
	padding: 0px;
	margin: 0px;
}
nav::-webkit-scrollbar {
	width: 3px;
}
nav::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px #CEEEFB;
} 
nav::-webkit-scrollbar-thumb {
	background-color: #1B2638;
	outline: 1px solid #1B2638;
}
nav ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
nav ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 15px;
	margin: 0px;
}
nav ul li a, nav ul li label {
	text-transform: uppercase;
	color: #000;
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	cursor: hand;
}
nav ul li label:after {
	content: '';
	position: absolute;
	display: inline-block;
	vertical-align: top;
	border: solid #005B9C;
	border-width: 0 2px 2px 0;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	margin: 10px 0 0 10px;
}
nav ul li a:hover {
	color: #005B9C;
}
nav ul li ul {
	position: absolute;
	background: rgba(146,73, 89, 0.8);
	border-radius: 4px;
	padding: 6px;
	display: none;
	z-index: 300;
}
nav ul li:hover > ul {
	display: block;
	animation: fadein 0.3s ease-out, menuin 0.3s ease-out;
}
nav li ul li {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
}
nav li ul li a {
	font-size: 13px;
	display: block;
	vertical-align: top;
	padding: 4px 10px;
	line-height: 16px;
	border-radius: 4px;
	font-weight: 300;
}
nav li ul li a:hover {
	background: #FFF;
	color: #005B9C;
}

/* Hamburguer */
#hamburguer {
	padding: 7px 0 0 0;
	margin: 0px;
	width: 18px;
	height: 11px;
	cursor: pointer;
	cursor: hand;
	display: none;
	vertical-align: top;
	position: absolute;
	right: 25px;
	top: 25px;
}
#hamburguer:hover:after {
	width: 35px;
	color: #005B9C;
}
#hamburguer span {
	content: '';
	display: block;
	width: 18px;
	height: 3px;
	background: #005B9C;
	border-radius: 4px;
}
#hamburguer span:before {
	content: '';
	position: absolute;
	display: block;
	width: 18px;
	height: 3px;
	background: #005B9C;
	border-radius: 4px;
	margin: -7px 0 0 0;
}
#hamburguer span:after {
	content: '';
	position: absolute;
	display: block;
	width: 18px;
	height: 3px;
	background: #005B9C;
	border-radius: 4px;
	margin: 7px 0 0 0;
}
#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 */
header {
	display: grid;
	grid-template-rows: auto;
	grid-gap: 30px 0;
	background-attachment: fixed;
	padding: 0px;
	height: 704px;
	align-items: center;
	justify-items: center;
}
#backs {
	display: none;
}
header #backimg, header #backfade, header #backimg_mobile, header #backfade_mobile, header #darken {
	position: absolute;
	padding: 0px;
	margin: 0px;
	left: 0px;
	width: 100%;
	height: 704px;
	object-fit: cover;
	z-index: -10;
}
header #darken {
	background: rgba(0, 0, 0, 0.3);
	z-index: -5;
}
header #backfade, header #backfade_mobile {
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}
#backfade.fadeout, #backfade_mobile.fadeout {
	opacity: 0;
}
#backfade.fadein, #backfade_mobile.fadein {
	opacity: 1;
}
header #backimg_mobile, header #backfade_mobile {
    display: none;
}

/* Mini header */
#miniheader {
	height: 200px;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: unset;
}

header section {
	color: #FFF;
	text-align: center;
}
header h4 {
	color: #FFF;
}
header h1 {
	margin-top: -10px;
	color: #FFF;
}
header section a {
	display: inline-block;
	vertical-align: top;
	color: #FFF;
	border: #FFF 1px solid;
	padding: 7px 20px;
	border-radius: 50px;
	margin: 0px;
}
header section a:hover {
	background: #FFF;
	color: #000;
}

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

#inicio h3 {
	font-size: 24px;
	font-weight: 300;
	margin-top: 0px;
}
#inicio h1 {
	font-weight: 500;
	margin-top: -25px;
}
#inicio section {
	display: grid;
	grid-template-columns: auto 381px;
	grid-gap: 40px;
}
#inicio article {
	padding: 0px;
	margin: 0px;
	column-count: 2;
}
#inicio p:first-of-type {
	margin-top: 0px;
}
#inicio img {
	justify-self: center;
}

#barra {
	background: #005B9C;
	display: grid;
	grid-template-columns: 2fr 1fr;
}
#barra img {
	width: 100%;
	height: 540px;
	object-fit: cover;
}
#barra article {
	padding: 20px;
	color: #FFF;
	text-align: justify;
}
#barra article img {
	max-height: 100px;
	width: auto;
	height: auto;
	display: block;
	text-align: center;
	padding: 0px;
	margin: 0 auto 40px auto;
}
#barra article div {
	text-align: center;
	padding-top: 40px;
}
#barra article div a {
	display: inline-block;
	vertical-align: top;
	padding: 7px 20px;
	border: #FFF 1px solid;
	border-radius: 50px;
	color: #FFF;
	text-transform: uppercase;
}
#barra article div a:hover {
	background: #FFF;
	color: #005B9C;
}

#pptestemunhos {
	padding: 20px 100px 40px 100px;
}
#pptestemunhos section {
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
}
#pptestemunhos section section {
	display: grid;
	grid-template-columns: 150px 1fr;
	grid-gap: 40px;
	padding: 0px;
	margin: 0px;
	max-width: calc(100vw - 200px);
}
#pptestemunhos p {
	text-align: justify;
}
#pptestemunhos article {
	padding: 0px;
	margin: 0px;
	max-width: calc(100% - 20px);
}
#pptestemunhos img {
	display: inline-block;
	vertical-align: top;
	align-self: center;
	padding: 0px;
	margin: 0px;
	border-radius: 100%;
}
#pptestemunhos h3 {
	text-align: left;
	color: #000;
	text-transform: none;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: -5px;
}
#pptestemunhos label {
	color: #A1D6F5;
	font-weight: 600;
}
#pptestemunhos div {
	display: grid;
	grid-template-columns: repeat(3, calc(100vw - 180px));
	grid-gap: 10px;
	transition: all 0.5s;
}
#pptestemunhos span {
	display: inline-block;
	vertical-align: top;
	background: #A1D6F5;
	border-radius: 50px;
	height: 10px;
	width: 10px;
	margin: 0 4px;
	cursor: pointer;
	cursor: hand;
}
#pptestemunhos span.on {
	background: #005B9C;
}
#pptestemunhos #indice {
	display: block;
	text-align: center;
	padding-top: 30px;
}

/* Mod testemunhos */
.testemunho {
	text-align: justify;
}
.testemunho img {
	display: block;
	text-align: center;
	max-width: 150px;
	height: auto;
	border-radius: 150px;
	margin: 0 auto;
}
.testemunho h3 {
	font-size: 24px;
}
.testemunho label {
	display: block;
	color: #A1D6F5;
	font-weight: bold;
	text-align: center;
}

#mapa {
	background: #F8F8F7;
	padding: 0 100px 50px 100px;
}
#mapa section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
#mapa span {
	display: block;
	font-size: 22px;
}
#mapa label {
	display: block;
	color: #A1D6F5;
	font-weight: bold;
}

footer {
	padding: 20px 100px;
	display: grid;
	grid-template-columns: repeat(3, 1fr) 2fr;
	grid-gap: 30px;
}
footer img {
	max-height: 155px;
}
footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
footer li {
	padding: 2px 0;
}
footer a {
	color: #005B9C;
}
footer a:hover {
	color: #A1D6F5;
}
footer h3 {
	text-align: left;
	font-size: 20px;
}
footer ul:last-of-type {
	justify-self: end;
	text-align: right;
}
footer ul:last-of-type li {
	display: inline-block;
	vertical-align: top;
}
footer ul img {
	max-height: 25px;
	margin: 0 0 0 10px;
}

#baixo {
	background: #005B9C;
	color: #FFF;
	padding: 5px 100px;
	font-size: 14px;
}
#baixo a {
	color: #A1D6F5;
}
#baixo a:hover {
	color: #FFF;
}

/* NotÃ­cias */
.entry {
	box-sizing: border-box;
	display: block;
	vertical-align: top;
	border: #FFF 1px solid;
	margin-bottom: 25px;
}
.entry figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	position: relative;
	width: 100%;
	height: auto;
}
.entry figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
}
.entry div {
	display: block;
	vertical-align: top;
	padding: 0 10px;
	margin: 0px;
}
.entry h2 {
	margin: 0px;
	padding: 10px;
  	font-weight: 800;
  	font-size: 18px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

/* Classes gerais */
/* Efeitos */
.outline {
	padding: 4px;
	outline: #FFF 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;
}

/* Contactos */
#contactos {
	display: grid;
	grid-template-columns: auto calc(100%/2.8);
	grid-template-areas: 'form texto';
	grid-gap: 0 60px;
}
#contactos form {
	grid-area: form;
	display: block;
	vertical-align: top;
	max-width: 100%;
}
#contactos form label {
	display: block;
	vertical-align: top;
	font-weight: 400;
	margin: 0 0 5px 0;
} 
#contactos form textarea {
	margin: 0 0 20px 0;
}
#contactos h2 {
	text-align: left;
}
#contactos article {
	grid-area: texto;
}

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

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

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

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

#imgaleria{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 6px;
	padding: 0px;
	margin: 0px;
}
#imgaleria figure {
	display: block;
	vertical-align: top;
	position: relative;
    overflow: hidden;
	width: 100%;
	padding: 0 0 100% 0;
	margin: 0px;
}
#imgaleria figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1 !important;
	object-fit: cover;
	position: absolute;
}
#imgaleria figure figcaption {
	position: absolute;
	background: none;
	width: 100%;
	padding: 0 0 100% 0;
	text-align: center;
	transition: all 0.3s ease-out;
}
#imgaleria figure figcaption:hover {
	background: rgba(0, 0, 0, 0.5);
}
#imgaleria figure figcaption img {
	width: 40px;
	height: auto;
	display: inline-block;
	vertical-align: top;
	margin: 150% auto 0 auto;
	transform: translate(-50%, -50%);
	transition: all 0.5s;
	object-fit: contain;
}
#imgaleria figcaption:hover img {
	margin: 50% auto 0 auto;
}

@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) {
	.duas_colunas, .tres_colunas, .quatro_colunas, .dois_um, #contactos {
		grid-template-columns: auto;
		grid-gap: 50px 0;
		grid-template-areas: unset;
	}
	#contactos form, #contactos article {
		grid-area: unset;
	}
	h2 {
		font-size: 28px;
	}

	#hamburguer {
		display: inline-block;
	}

	header h1 {
		font-size: 32px;
	}

	/* Menu */
	nav {
		position: fixed;
		background: #FFF;
		left: 0px;
		top: 90px;
		width: 100%;
		animation: none;
		z-index: 9999;
		height: 100%;
		overflow-Y: auto;
		transform: translateX(100%);
		transition: all 0.2s ease-out;
		padding: 0px;
		border-top: #005B9C 1px solid;
	}
	nav ul li {
		display: block;
		padding: 20px;
		border-bottom: #005B9C 1px solid;
	}
	nav ul li ul {
		background: none;
		position: relative;
		display: block;
		padding: 0px;
		margin: 0px;
	}
	nav li ul li {
		padding: 20px;
	}
	nav li ul li a {
		font-size: 16px;
		text-transform: uppercase;
		padding: 10px;
	}
	nav ul li:hover ul {
		animation: none;
	}
	nav.activo {
		transform: translateX(0%);
	}

	#conteudo, #barra article, #pptestemunhos, #mapa, footer {
		padding-left: 35px;
		padding-right: 35px;
	}
	#inicio section, #mapa section, footer, #barra {
		grid-template-columns: auto;
	}
	#inicio article {
		column-count: auto;
	}

	footer, footer h3 {
		text-align: center;
	}
	footer ul:last-of-type {
		justify-self: unset;
		text-align: center;
	}

	#baixo {
		text-align: center;
	}
}

@media (max-width: 800px) {
	#pptestemunhos h2 {
		font-size: 28px;
	}
	#pptestemunhos img {
		width: 150px;
		height: 150px;
		justify-self: center;
	}
	#pptestemunhos section section {
		grid-template-columns: auto;
		max-width: calc(100vw - 50px);
	}
	#pptestemunhos div {
		grid-template-columns: repeat(3, calc(100vw - 50px));
	}
	#pptestemunhos h3, #pptestemunhos label {
		text-align: center;
		display: block;
	}
}