@CHARSET "UTF-8";

@font-face {
	font-family: 'OpenSans';
	src: url('OpenSans.ttf'); 
	format('truetype');
}

@font-face {
	font-family: 'OpenSansBold';
	src: url('OpenSans-ExtraBold.ttf'); 
	format('truetype');
}

/* elementos HTML5 para navegadores antigos */
article, aside, details, figcaption,
figure, footer, header, hgroup, nav, section {
	display: block;
}

/* clearfix para fazer a função de clear aos elementos com float */
.clearfix:before, .clearfix:after {content: ""; display: table; }
.clearfix:after {clear: both; }
.clearfix {zoom: 1; }

header {
	padding-bottom: 10px;		
	font-family: "OpenSansBold", Helvetica, Arial, sans-serif;
}

body {
	border-top: 3px solid #6B3D62;
	margin: 0 auto;
	padding: 20px 0;
	background-color: #f4f6f7;
	font-family: "OpenSans", Helvetica, Arial, sans-serif;
	/*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
}

footer {
	text-align: center;
	font-size: small;
}

a:link, a:visited {
    color: #000;
    text-decoration: none; 
    font-weight: bold;   
}
a:hover {
    /*color: #000;*/
    font-weight: normal;
}


.container {
	background-color: #fff;
	width: 95%;
	max-width: 1100px;
	padding: 1.5%;	
	margin: 0 auto;
	border-radius: 4px;
	border: 1px solid rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}


/*	CABEÇALHO	*/
#logo {
	display: inline-block;
	width: 30%;
	vertical-align: middle;
}
#logo img {
	max-width: 100%;
}

#menuSuperior {
	display: inline-block;
	width: 65%;
	vertical-align: middle;
	text-align: right;
}

.itemMenuSuperior {
	display:inline-block;
	padding: 4px 20px;
	text-transform: uppercase;
}
.itemMenuSuperior:link, .itemMenuSuperior:visited {
	color: #6B3D62;
}
.itemMenuSuperior:hover, .itemMenuSuperiorAtivo:link, .itemMenuSuperiorAtivo:visited  {
	background-color: #6B3D62;
	color: white !important;
	border-radius: 3px;
}



/* CORPO	*/
.corpo {
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	text-align: center;
}

#divPesquisa {
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
#divPesquisa p {
	text-align: left;
	margin-bottom: 5px;
	font-size: 11pt;
	color: gray;
}
#txtPesquisa {
	display: inline-block;
	width: calc(87% - 40px);
	padding: 12px 20px;
	font-size: 36pt;
	color: #6B3D62;
	font-weight: bold;
}
.aBuscar:link {
	display: inline-block;
	color: white;
    background-color: #6B3D62;
    padding: 10px 20px;
    margin-left: 6px;
    font-size: 32pt;
    font-weight: bold;    
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
}
#divObjetos {
	width: 80%;
	margin: 20px auto;
	text-align: left;
}
#semResultados {
	text-align: center;
}
#semResultados i {
	font-size: 150pt;
	color: #6B3D62;
}
#semResultadosTitulo {
	font-size: 36pt;
	font-family: "OpenSansBold";
	margin: 20px 0 5px 0;
}
#semResultadosInfo {
	color: gray;
	margin: 5px 0;
}

#tituloResultado {
	font-size: 11pt;
	margin-bottom: 0;
	color: gray;
}

/* CARD OBJETO	*/
.cardObjeto {
	display: inline-block;
	width: 47%;
	vertical-align: top;
	text-align: left;
	cursor: pointer;
	transition: box-shadow .1s;
	margin: 25px 12px 0 0;
}
.cardObjeto:hover {
	box-shadow: 0 0 5px rgba(107,61,98,1);
}
.cardObjeto .foto {
	width: 120px;
	height: 120px;
	display: inline-block;
	vertical-align: top;
}
.cardObjeto .foto img {
	width: 100%;
	height: 100%;
}
.cardObjeto .infos {
	display: inline-block;
	text-align: left;
	padding-left: 7px;
	position: relative;
	width: calc(100% - 150px);
	height: 120px;
}
.cardObjeto .infos .nome {
	font-weight: bold;
	font-size: 11pt;
}
.cardObjeto .infos .infoAdicional {
	font-size: 10pt;
	color: gray;
	margin-top: 3px;
}
.cardObjeto .infos .botoes {
	position: absolute;
	bottom: 5px;
}
.cardObjeto .infos .botao {
	display: inline-block;
	color: white;
    background-color: #6B3D62;
    padding: 3px 10px;
    font-size: 10pt;
    font-weight: normal;
}
.cardObjeto .infos .botao:hover {
	font-weight: bold;
}


/* DETALHES OBJETO */
#imagemObjeto {
	display: inline-block;
	width: 27%;
	vertical-align: top;
}
#imagemObjeto img {
	max-width: 100%;
} 
#infosTopoObjeto {
	display: inline-block;
	width: 70%;
	vertical-align: top;
}
#infosTopoObjeto::after {
	clear:both;
}
.infoObjeto .campo {
	display: block;
	font-size: 9pt;
	color:gray;
}
.infoObjeto .valor {
	display: block;
	font-size: 10pt;
	word-break: break-word
}
.tbInfosObjeto {
	width: 100%;
}
.tbInfosObjeto td {
	padding: 7px 3px;
	vertical-align: top;
}
#trDescricaoMobile {
	display: none;
}
.col-3 td {
	width: 33%;
}
#infosObjeto {
	width: 100%;
	vertical-align: top;
}
.col-4 td {
	width: 25%;
}


/* PÁGINAS INSTITUCIONAL, PROJETO E CONTATO	*/
#tituloPagina {
	font-family: 'OpenSansBold';
	margin: 10px auto 20px auto;
	width: 80%;
	line-height: 170%;
	font-size: 20pt;
	text-align: left;
	color: #6B3D62;;
	position: relative;
	vertical-align: bottom;
}
#tituloPagina:after {
	background: linear-gradient(to right, #6B3D62 11%, rgba(255,0,0,0) 11%, rgba(255,0,0,0) 100%);
	position: absolute;
	content: '';
	height: 5px;
	right: 0;
	left: 0;
	bottom: -5px;
}
.textos {
	width: 80%;
	margin: 35px auto;
	font-family: 'OpenSans';
	line-height: 170%;
	font-size: 12pt;
}
.textos p {
	text-align: justify;
	text-indent: 50px;
}

/* lista de servidores e imagens	*/
#divServidoresMuseu, #divImagensMuseu {
	text-align: left;
}
.aServidor {
	position: relative;
	display: inline-block;
	width: 48%;
	margin-right: 15px;
	text-align: left;
	line-height: 120%;
	background-color: #f9f9f9;
	border-radius: 5px;
	cursor: auto;
}
.aServidor:hover {
	background-color: #eee;
}
.fotoServidor {
	width: 100px;
	height: 100px;
	margin: 5px 10px;
	display: inline-block;
	vertical-align: top;
}
.fotoServidor img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.dadosServidor {
	display: inline-block;
	padding: 15px 0;
}
.nomeServidor {
	font-weight: bold;
}
.cargoServidor {
	font-size: 11pt;
	color: #aaa;
	font-weight: normal;
	padding-top: 5px;
}

.divImagemMuseu {
	display: inline-block;
	position: relative;
	vertical-align: top;
	max-width: 175px;
	margin-right: 15px;
	cursor: pointer;
}
.divImagemMuseu img {
	width: 100%;
	border-radius: 8px;
}

.icon {
	width: 26px;
	vertical-align: middle;
}

.fotoDesenvolvedor {
	width: 150px;
	height: 150px;
	margin: 5px 10px;
	display: inline-block;
	vertical-align: top;
}
.fotoDesenvolvedor img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
}
.dadosDesenvolvedor {
	display: inline-block;
	width: calc(100% - 180px);
	text-align: justify;
	line-height: 120%;
}
.nomeDesenvolvedor {
	font-weight: bold;
}
.descricaoDesenvolvedor {
	font-size: 10pt;
	font-weight: normal;
	padding-top: 5px;
}


#divFormularioContato {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 70px auto;
	color: #6B3D62;
	background-color: #F0EBE7; 
	border-radius: 10px;
	text-align: left;
}
#tituloFormularioContato {
	background-color: white;
	font-family: 'OpenSansBold';
	font-size: 18pt;
	padding: 3px 25px;
	text-align: center;
	position: absolute;
	top: -45px;
	left: calc(50% - 180px);
	border-radius: 5px;
}

#formContato span {
	width: 28%;
	color: #6B3D62;
	font-size: 12pt;
	font-weight: normal;
}

#pObsContato {
	font-size: 8pt;
	text-align: center;
	margin-top: -15px;
}



/* anexos 	*/
.divAnexo {
	display: inline-block;
	vertical-align: top;
	background-color: #eee;
	border: 1px solid #bbb;
	border-radius: 5px;
	padding: 7px 5px;
	margin: 8px;
} 
.imgAnexo, .divAnexoDir {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
}
.imgAnexo {
	width: 40px;
}
.pTituloAnexo {
	font-weight: bold;
	font-size: 10pt;
	margin: 0 0 7px 0;
}
.pNomeAnexo {
	font-size: 9pt;
	font-weight: normal;
	margin: 0;
}

.divAnexoImagem {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 150px; 
	cursor: pointer;
	margin: 8px;
}
.divAnexoImagem img {
	width: 100%;
	height: auto;
}




/*	RODAPÉ	*/
footer #logosProjeto {
	display: inline-block;
	width: 40%;
}
footer #logosProjeto img {
	max-width: 100%;
}
footer #infosMuseu {
	display: inline-block;
	width: calc(59% - 70px);
	padding: 0 35px;
	vertical-align: top;
}
footer #infosMuseu #titulo {
	color: white;
    background-color: #6B3D62;
	padding: 5px 0;
	border-radius: 3px;
	font-size: medium;
	margin-bottom: 5px;
}
footer #infosMuseu #subTitulo {
	font-weight: bold;
	margin: 4px 0;
}
footer #infosMuseu .info {
	margin: 4px 0;
}
footer #infosMuseu .info img {
	width: 22px;
	vertical-align: middle;
	margin: 4px 0 0 0;
}
#desenvolvidoPor {
	color: #333;
	background-color: #f4f6f7;
	font-size: 8.5pt;
	padding: 3px 0;
	margin: 25px 0 0;
	border-radius: 2px;
}
#desenvolvidoPor p {
	margin: 0;
}
#desenvolvidoPor a {
	color: #333;
}








/* elementos diversos	*/
.pInfo {
	font-size: 10pt;
	font-style: italic;
	text-align: center;
}





/* MODAL	*/
.modal {
	display: none; 
	position: fixed; 
	z-index: 1; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0); 
	background-color: rgba(0,0,0,0.3); 
}
.modal-content {
	/*position: relative;*/
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 80%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
	from {top:-300px; opacity:0} 
	to {top:0; opacity:1}
}
.modal-header {
	padding: 2px 16px;
	background-color: #6B3D62;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}
.modal-body {
	padding: 2px 16px;
}
.close {
	color: #fff;
	float: right;
	font-size: 35px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}


/* LOADING */
.loader {
  border: 8px solid #fff;
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: auto;
  position: fixed;
  top: 40%;
  left: 48%;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modalLoader {
    display:    none;
    position:   fixed;
    z-index:    1;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background-color: rgba(0, 0, 0, .3);
}
body.loading {
    overflow: hidden;
}
body.loading .modalLoader {
    display: block;
}




/* Popup Imagem */
.modalImagem {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 70px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}
/* Modal Content */
#conteudoModalImagem {
	margin: auto;
	display: block;
	width: 80%;
	height: 85%;
	text-align: center;
}
.imgModalImagem, .videoModalImagem, .audioModalImagem {
	max-width: 100%;
	max-height: 100%;
}

/* Add Animation - Zoom in the Modal */
.imgModalImagem, #captionModalImagem {
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}

/* The Close Button */
.closeModalImagem {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
.closeModalImagem:hover,
.closeModalImagem:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}



/* FORMULARIOS	*/
.form label {
    display: block;   
    margin-bottom: 12px; 
}
.form label span {
    float: left;
    width: 22%;
    text-align: right;
    padding-right: 10px;
    margin-top: 7px;
    color: #333;
    font-size: 1.8vw; 
    font-weight: bold;
}
input[type="text"], input[type="email"], select, textarea {
    border: 1px solid #CCC;
    color: gray;    
    font-size: 12pt; 
    outline: 0 none;
    padding: 6px 0px 6px 5px;   
    text-align: left;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;    
}
.retornoForm {
	width: 100%;
	height: auto;
	overflow: hidden;
	text-align: center;
	padding: 5px 0;
	border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;    
}
.alert-success {
  color: #2ecc71;
  margin-bottom: 10px;
}
.alert-warning {
  color: #FDA918;
  margin-bottom: 10px;
}
.alert-error {
  color: red;
  margin-bottom: 10px;
}


/*	TABS	*/
.tabs {
    width:100%;
    display:inline-block;
} 
/* Clearfix */
.tab-links:after {
    display:block;
    clear:both;
    content:'';
}
.tab-links {
	padding-left: 10px;
	margin-bottom: 0;
}
.tab-links li {
	margin:0px 5px;
    float:left;
    list-style:none;
}
.tab-links a {
    padding:9px 15px;
    display:inline-block;
    border-radius:3px 3px 0px 0px;
    /*border: 1px solid #4c4c4c; */
    /*background:#7FB5DA; */
    background: rgba(66,130,196,0.15);
    /*font-size:16px;*/
    font-weight:600;
    color:#4c4c4c;
    transition:all linear 0.15s;
}
.tab-links a:hover {
    background:rgba(66,130,196,0.4);
    text-decoration:none;
}
li.active a, li.active a:hover {
    background: #4282C4;
    /*color:#4c4c4c;*/
    color: #fff;
}
/*----- Content of Tabs -----*/
.tab-content {
    /*padding: 15px;*/
    border-radius: 3px;
    border-top: 1px solid rgba(0,0,0,0.3);
    /*box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.3);*/
    /*background: #fff;*/
}
.tab {
    display:none;
}
.tab.active {
    display:block;
}




.botao:link, .botao {
	color: white;
	background-color: #6B3D62;
	padding: 12px 20px;
	font-size: 12pt;
	font-weight: bold;
	border: none;
	cursor: pointer;
	-webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
}



.aWhatsApp {
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
  	z-index:100;
}

.iWhatsApp {
	margin-top:16px;
	color:#FFF;
}








/* MEDIA QUERIES PARA TELAS 'NORMAIS' - Entre 640px e 960px */
@media screen and (min-width: 641px) and (max-width: 960px) {
.itemMenuSuperior {
	padding: 3px 12px;
	font-size: 11pt;
	margin: 3px 0;
}

#divPesquisa {
	width: 100%;
}
#txtPesquisa {
	width: calc(87% - 30px);
	padding: 10px 12px;
	font-size: 28pt;
}
.aBuscar:link {
    padding: 5px 15px;
    margin-left: 3px;
    font-size: 28pt;
}
#divObjetos {
	width: 100%;
	margin: 12px auto;
}
#semResultados i {
	font-size: 100pt;
}
#semResultadosTitulo {
	font-size: 28pt;
	margin: 15px 0 5px 0;
}
/* CARD OBJETO	*/
.cardObjeto {
	width: calc(50% - 12px);
}
.cardObjeto .foto {
	width: 100px;
	height: 100px;
}
.cardObjeto .infos {
	padding-left: 5px;
	width: calc(100% - 110px);
	height: 100px;
}
.cardObjeto .infos .nome {
	font-weight: bold;
	font-size: 10pt;
}
.cardObjeto .infos .infoAdicional {
	font-size: 9pt;
	margin-top: 0;
}
.cardObjeto .infos .botao {
    padding: 2px 8px;
    font-size: 9pt;
}
/* DETALHES OBJETO */
#imagemObjeto {
	width: 23%;
}
#infosTopoObjeto {
	width: 75%;
}
.infoObjeto .campo {
	font-size: 7pt;
}
.infoObjeto .valor {
	font-size: 9pt;
}
.tbInfosObjeto td {
	padding: 4px 2px;
	line-height: 90%;
}
/* anexos 	*/
.divAnexo {
	padding: 5px 3px;
	margin: 6px;
} 
.imgAnexo {
	width: 30px;
}
.pTituloAnexo {
	font-size: 9pt;
	margin: 0 0 4px 0;
}
.pNomeAnexo {
	font-size: 8pt;
}
.divAnexoImagem {
	width: 120px; 
	cursor: pointer;
	margin: 6px;
}

/* PÁGINAS INSTITUCIONAL, PROJETO E CONTATO	*/
#tituloPagina {
	margin: 5px auto 15px auto;
	width: 100%;
	line-height: 140%;
	font-size: 18pt;
}
.textos {
	width: 100%;
	margin: 20px auto;
	line-height: 150%;
	font-size: 11pt;
}
.textos p {
	text-indent: 40px;
}

/* lista de servidores e imagens	*/
.aServidor {
	width: 48%;
	margin-right: 10px;
	line-height: 100%;
}
.fotoServidor {
	width: 80px;
	height: 80px;
	margin: 5px 8px;
}
.dadosServidor {
	display: inline-block;
	padding: 15px 0;
}
.cargoServidor {
	font-size: 10pt;
	padding-top: 3px;
}

.divImagemMuseu {
	max-width: 175px;
}


#divFormularioContato {
	margin: 50px auto;
}
#tituloFormularioContato {
	background-color: white;
	font-family: 'OpenSansBold';
	font-size: 16pt;
	padding: 3px 25px;
	left: calc(50% - 160px);
}
#formContato span {
	width: 22%;
}


.modal-content {
	width: 95%;
}
.modal-body {
	padding: 2px 5px;
}

.botao:link, .botao {
	padding: 7px 15px;
}

}







/* MEDIA QUERIES PARA TELAS 'PEQUENAS' - ATÉ 640px */
@media screen and (max-width: 640px) {
#logo {
	display: block;
	width: 100%;
	text-align: center;
}
#logo img {
	max-width: 60%;
}
#menuSuperior {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 20px;
}
.itemMenuSuperior {
	padding: 3px 5px;
	font-size: 10pt;
	margin: 3px 0;
}
.corpo {
	padding-top: 0;
}
#divPesquisa {
	width: 100%;
}
#divPesquisa p {
	font-size: 10pt;
	margin-bottom: 2px;
}
#txtPesquisa {
	width: calc(88% - 18px);
	padding: 7px 6px;
	font-size: 14pt;
}
.aBuscar:link {
    padding: 5px 8px;
    margin-left: 0;
    font-size: 14pt;
}
#divObjetos {
	width: 100%;
	margin: 0 auto;
}
#semResultados i {
	font-size: 80pt;
}
#semResultadosTitulo {
	font-size: 20pt;
	margin: 15px 0 5px 0;
}
#semResultadosInfo {
	font-size: 11pt;
}
#tituloResultado {
	margin-top: 0;
}
/* CARD OBJETO	*/
.cardObjeto {
	display: block;
	width: 100%;
	margin: 15px 0 0 0;
}
.cardObjeto .foto {
	width: 80px;
	height: 80px;
}
.cardObjeto .infos {
	padding-left: 2px;
	width: calc(100% - 90px);
	height: 80px;
	line-height: 90%;
}
.cardObjeto .infos .nome {
	font-size: 9pt;
}
.cardObjeto .infos .infoAdicional {
	font-size: 8pt;
	margin-top: 0;
}
.cardObjeto .infos .botao {
    padding: 0 5px;
    font-size: 8pt;
}
/* DETALHES OBJETO */
#trDescricaoDesktop {
	display: none;
}
#trDescricaoMobile {
	display: block;
}
#imagemObjeto {
	width: 23%;
}
#infosTopoObjeto {
	width: 75%;
}
.infoObjeto .campo {
	font-size: 7pt;
}
.infoObjeto .valor {
	font-size: 8pt;
}
.tbInfosObjeto td {
	padding: 3px 1px;
	line-height: 80%;
}
/* anexos 	*/
.divAnexo {
	padding: 5px 1px;
	margin: 4px;
} 
.imgAnexo, .divAnexoDir {
	padding: 0 2px;
}
.imgAnexo {
	width: 28px;
}
.pTituloAnexo {
	font-size: 9pt;
	margin: 0 0 4px 0;
}
.pNomeAnexo {
	font-size: 7pt;
}
.divAnexoImagem {
	width: 100px; 
	margin: 4px;
}

/* PÁGINAS INSTITUCIONAL, PROJETO E CONTATO	*/
#tituloPagina {
	margin: 15px auto 15px auto;
	width: 100%;
	line-height: 140%;
	font-size: 14pt;
}
.textos {
	width: 100%;
	margin: 20px auto;
	line-height: 150%;
	font-size: 10pt;
}
.textos p {
	text-indent: 30px;
}

/* lista de servidores e imagens	*/
.aServidor {
	width: 49%;
	margin-right: 4px;
	line-height: 100%;
}
.fotoServidor {
	width: 60px;
	height: 60px;
	margin: 5px 2px;
}
.dadosServidor {
	display: inline-block;
	padding: 10px 0;
}
.cargoServidor {
	font-size: 8pt;
	padding-top: 3px;
}

.divImagemMuseu {
	max-width: 150px;
}

.fotoDesenvolvedor {
	margin: 10px 0;
	display: block;
}
.dadosDesenvolvedor {
	display: block;
	width: 100%;
}


#divFormularioContato {
	margin: 50px auto;
}
#tituloFormularioContato {
	font-size: 14pt;
	padding: 3px 25px;
	top: -35px;
	left: calc(50% - 150px);
}
#formContato span {
	width: 100%;
}

.form label {
	text-align: center;
}
.form label span {
    float: none;
    width: 100%;
    padding-right: 0;
}

.modal-content {
	width: 95%;
}
.modal-header h2 {
	font-size: 12pt;
	margin: 8px 0;
}
.modal-body {
	padding: 2px;
}

.botao:link, .botao {
	padding: 7px 15px;
}

.onlyDesktop {
	display: none;
}
	
/*	RODAPÉ	*/
footer #logosProjeto {
	display: block;
	width: 100%;
}
footer #infosMuseu {
	display: block;
	width: 100%;
	padding: 0;
}
footer #infosMuseu .info img {
	width: 18px;
}
	
.aWhatsApp {
	width:40px;
	height:40px;
	bottom:15px;
	right:12px;
	font-size:20px;
}

.iWhatsApp {
	margin-top:10px;
}
	
}





