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

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

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

#fundador {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	height: 300px;
	width: 250px;
}
.quadro_pessoal, .quadro_presidentes {
	border: #000 1px solid;
	padding: 1px;
	margin-bottom: 60px;
}
.quadro_pessoal div {
	display: grid;
	grid-template-columns: 30px 150px 20px auto;
	grid-gap: 20px;
	padding: 5px;
	justify-items: start;
}
.quadro_presidentes div {
	display: grid;
	grid-template-columns: auto 80px;
	grid-gap: 20px;
	padding: 5px;
	justify-items: start;
}
.quadro_pessoal div:nth-of-type(1), .quadro_presidentes div:nth-of-type(1) {
	background: #000;
	color: #FFF;
	font-weight: bold;
}
.quadro_pessoal div:nth-child(even), .quadro_presidentes div:nth-child(even) {
	background: #F2F2F2;
}
.quadro_pessoal img {
	display: inline-block;
	vertical-align: middle;
	padding: 0px;
	margin: 0px;
	height: 20px;
	width: auto;
	max-width: 100%;
}

h2 {
	font-size: 38px;
	font-weight: 700;
}
h5 {
	font-size: 16px;
	font-weight: 600;
}

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

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

input[type=submit], input[type=reset], input[type=button], button {
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
	color: #FFF;
	background: #000;
	border: #000 1px solid;
	padding: 7px 35px !important;
	border: none;
	cursor: pointer;
	cursor: hand;
	transition: all 0.5s;
}
input[type=submit]:hover, input[type=reset]:hover, button:hover {
	background: #FFF;
	color: #000;
}
input[type=text], input[type=search], input[type=email], input[type=date], input[type=number], input[type=datetime], input[type=password], textarea, select {
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background: #FFF;
    border: 1px solid #CCC;
	border-radius: 4px;
	resize: none;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 6px 0;
}
input[type=search] {
	display: inline-block;
	vertical-align: top;
	width: auto;
}
textarea {
	height: auto;
}
input[type=text], input[type=email], input[type=number], input[type=datetime], input[type=datetime], textarea {
	max-width: calc(100% - 26px);
	padding: 2px 12px;
}
option {
	font-weight: normal;
    display: block;
    white-space: pre;
    min-height: 1.2em;
    padding: 0px 2px 1px;
	font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
	font-family: 'Montserrat', sans-serif;
}

/* Menu */
nav {
	display: grid;
	grid-template-columns: 320px auto 170px;
	padding: 10px 50px;
	margin: 0px;
	grid-gap: 30px;
	align-items: center;
}
nav figure {
	display: grid;
	grid-template-columns: 55px auto;
	grid-gap: 15px;
	align-items: center;
	padding: 0px;
	margin: 0px;
	transition: all 0.5s;
}
nav img {
	height: 80px;
	width: auto;
	padding: 0px;
	margin: 0px;
}
nav figcaption {
	font-size: 13px;
}

nav menu {
	padding: 0px;
	margin: 0px;
	justify-self: center;
}
menu section:nth-of-type(1), 
menu section:nth-of-type(2),
menu section:nth-of-type(3) {
	display: none;
}

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

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

/* Emergencias */
nav .emergencias {
	font-size: 9px;
}
nav .emergencias label {
	display: block;
	font-size: 13px;
}
nav .emergencias a {
	display: block;
	font-size: 18px;
	font-weight: 700;
}

nav #hamburguer {
	justify-self: end;
	display: none;
}
/* Header do site */
header {
	display: block;
	padding: 0px;
	height: 550px;
}
#backs {
	display: none;
}
header #backimg, header #backfade, header #darken {
	position: absolute;
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 550px;
	object-fit: cover;
	object-position: center bottom;
	z-index: -10;
}
header #darken {
	background: rgba(0, 0, 0, 0.3);
	z-index: -5;
}
header #backfade {
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}
#backfade.fadeout {
	opacity: 0;
}
#backfade.fadein {
	opacity: 1;
}
header section {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 0px;
	padding: 100px;
	justify-items: center;
	align-items: center;
	color: #FFF;
	text-transform: uppercase;
	height: 350px;
	text-align: center;
}
header article {
	max-width: 550px;
}
header h2 {
	font-size: 36px;
	font-weight: 600;
}
header h3 {
	font-size: 24px;
	font-weight: 400;
	margin-top: -20px;
}

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


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

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

#barra {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 100px;
	padding: 100px;
	margin: 0px;
	background: url(../img/barra.jpg) no-repeat center center;
	background-size: cover;
	color: #FFF;
}
#barra h2 {
	text-transform: uppercase;
}
#barra .botoes a:hover {
	color: #FFF;
	border-color: #FFF;
}

#tornarsocio, #museu {
	padding: 70px 100px;
}
#tornarsocio img, #museu img {
	width: 100%;
	height: auto;
} 
#museu {
	padding-top: 0px;
}

#ppmapa {
	padding: 0px;
	margin: 0px;
	filter: grayscale(1);
}

#ppbvb {
	padding: 30px 100px;
	text-align: center;
	text-transform: uppercase;
}
#ppbvb img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0 auto 10px auto;
	max-height: 100px;
	width: auto;
}

footer {
	padding: 30px 50px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
	margin: 0px;
}
footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	justify-self: end;
}
footer section ul {
	padding: 20px 0 0 0;
	justify-self: start;
}
footer ul li {
	display: block;
	vertical-align: top;
	padding: 5px 0;
}
footer section ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 5px;
	margin: 0px;
}
footer section b {
	text-transform: uppercase;
}
footer img {
	max-height: 20px;
	width: auto;
	transition: all 0.5s;
}
footer img:hover {
	transform: translateY(-5px);
}

#baixo {
	padding: 10px 0;
	display: grid;
	grid-template-columns: 200px auto;
	grid-gap: 30px;
	margin: 0 50px;
	border-top: #000 1px solid;
	font-size: 12px;
}
#baixo ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	justify-self: end;
}
#baixo ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0 10px;
	margin: 0px;
}
#baixo a:hover {
	color: #000;
	text-decoration: underline;
}

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

/* Galeria */
#imgaleria span {
	display: inline-block;
	vertical-align: top;
	margin: 0 3px 6px 3px;
	border: #666 1px solid;
	width: 150px;
	height: 150px;
	background: #FFF;
}
#imgaleria a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 150px;
	height: 150px;
}
#imgaleria img {
	max-height: 150px;
	max-width: 150px;
	width: auto;
	height: auto;
}

/* Lightbox */
#lightbox {
	margin-top: 50px;
}
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: auto;
  height: auto;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Notícias */
.entry {
	box-sizing: border-box;
	background: #FFF;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	display: block;
	vertical-align: top;
	border: #000 1px solid;
	margin-bottom: 25px;
}
.entry figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	position: relative;
	width: 100%;
	height: auto;
}
.entry figure img, .entry figure iframe {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	width: 500px;
	height: 300px;
	max-width: 100%;
	max-height: 200px;
	object-fit: cover;
}
.entry div {
	display: block;
	vertical-align: top;
	padding: 25px;
	margin: 0px;
}
.entry h2 {
	margin-top: 0px;
  	font-weight: 800;
  	font-size: 18px;
	letter-spacing: 0.1em;
	font-weight: 400;
	text-transform: uppercase;
}
.entry_feed {
	display: grid;
	grid-gap: 50px 0;
}

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

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

/* Notícias relacionadas */
#relacionadas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px 30px;
}
#relacionadas article {
	display: grid;
	grid-template-columns: 152px auto;
	grid-gap: 0 10px;
}
#relacionadas article figure {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	border: #000 1px solid;
}
#relacionadas article figure img {
	display: block;
	vertical-align: top;
	padding: 0px;
	margin: 0px;
	max-width: 150px;
	height: auto;
}

/* Classes gerais */
.resp_thumb {
	padding: 0px;
    line-height: 1.42857143;
    background-color: #FFF;
    border: 4px solid #FFF;
    border-radius: 4px;
	max-width: 100%;
	height: auto;
	-webkit-box-shadow: 0 0 1px 1px #666;
	box-shadow: 0 0 1px 1px #666;
}
.botoes {
	padding-top: 40px;
	text-align: right;
}
.botoes a {
	display: inline-block;
	vertical-align: top;
	padding: 10px 15px;
	border: #000 1px solid;
	background: #000;
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
}
.botoes a:hover {
	background: none;
	color: #000;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.duas_colunas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: 'left right';
	grid-gap: 40px;
}
.tres_colunas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
}
.colleft {
	grid-area: left;
}
.colright {
	grid-area: right;
}