@charset "iso-8859-1";

/*	

	Documento de estilo de Casa de Repouso Dra Stela

	Criado por Diego Maeoka - 30/11/2012
	Editado por Gabriel Queiroz - 03/04/2018

	www.legulas.com.br

*/

/*
==========
==FONTES==
==========
*/
@font-face {
	font-family: "Roboto";
	src: url("fonts/Roboto/Roboto.eot");
	src: url("fonts/roboto/Roboto.woff") format("woff"), url("fonts/roboto/Roboto.woff2") format("woff2"),
		url("fonts/roboto/Roboto.ttf") format("truetype"),
		url("fonts/roboto/Roboto.eot?#iefix") format("embedded-opentype"),
		url("fonts/roboto/Roboto.svg#OpenSans") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Cinzel";
	src: url("fonts/Cinzel-Regular.woff2") format("woff2"), url("fonts/Cinzel-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Cinzel";
	src: url("fonts/Cinzel-Bold.woff2") format("woff2"), url("fonts/Cinzel-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Valentina";
	src: url("fonts/ValentinaRegular.woff2") format("woff2"), url("fonts/ValentinaRegular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*
=========
==RESET==
=========
*/
*:focus {
	outline: none;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

html {
	height: 100%;
}

body,
td,
th {
	font-size: 18px;
	font-family: "Roboto", Verdana, Geneva, sans-serif;
	line-height: 1.5em;
	color: #37302e;
	letter-spacing: -1px;
	background-image: url("../img/bg-marrom.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

a {
	text-decoration: none;
	color: #37302e;
}

a:link,
a:visited {
	text-decoration: none;

	-moz-transition: color 200ms linear;

	-webkit-transition: color 200ms linear;

	-o-transition: color 200ms linear;

	transition: color 200ms linear;
}

a:hover,
a:active {
	text-decoration: underline;
	color: #37302e;
}

a img {
	border: none;
}

p {
	margin: 7px 0;
	text-align: justify;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

em {
	font-style: oblique;
	font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
}

hr {
	display: block;
	clear: both;
	visibility: hidden;
	height: 0px;
	margin: 0;
	padding: 0;
}

strong {
	font-family: "Roboto", Verdana, Geneva, sans-serif;
}

span {
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
}

/*      
=============
==ANIMATION==
=============
*/

/*.js é adicionado para garantir que os elementos fiquem visíveis caso o browser não possua JS*/
.js .anima1,
.js .anima2,
.js .anima3,
.js .anima4,
.js .anima5,
.js .anima6,
.js .anima7,
.js .anima-stoped {
	opacity: 0;
}

/*classe que vai animar os 'anima1', 'anima2','anima3'...  */
.anima {
	-webkit-animation: entrada 1s;
	-moz-animation: entrada 1s;
	-o-animation: entrada 1s;
	animation: entrada 1s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

/*classe que vai animar o .anima-stoped quando aparecer na tela*/
.anima-start {
	-webkit-animation: entrada 0.4s;
	-moz-animation: entrada 0.4s;
	-o-animation: entrada 0.4s;
	animation: entrada 0.4s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

/*animação de entrada dos elementos de cima para baixo com fade*/
@-webkit-keyframes entrada {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -20px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
	}
}

@-moz-keyframes entrada {
	0% {
		opacity: 0;
		-moz-transform: translate3d(0, -20px, 0);
	}
	100% {
		opacity: 1;
		-moz-transform: translate3d(0, 0, 0);
	}
}

@-o-keyframes entrada {
	0% {
		opacity: 0;
		-o-transform: translate3d(0, -20px, 0);
	}
	100% {
		opacity: 1;
		-o-transform: translate3d(0, 0, 0);
	}
}

@keyframes entrada {
	0% {
		opacity: 0;
		transform: translate3d(0, -20px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/*________________________________________________________ Classes genericas*/

.left {
	float: left;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.clear {
	clear: both;
	visibility: hidden;
	height: 0px;
}

.center {
	text-align: center;
}

.relative {
	position: relative;
	z-index: 2;
}

.absolute {
	position: absolute;
	z-index: 3;
}

.fixed {
	position: fixed;
	z-index: 10;
}

.hidden {
	display: none;
	visibility: hidden;
}

.enviada {
	color: #fff;
	font-weight: bold;
	text-align: center;
	background-image: url(../img/bg-top-dourado.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 10px;
}

.wrapper {
	width: 980px;
	margin: 0 auto;
	height: 100%;
	position: relative;
}

.tituloPagina {
	color: #37302e;
	font-size: 20pt;
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: center;
	font-weight: bold;
}

.col_25 {
	width: 25%;
	float: left;
}

.col_30 {
	width: 30%;
	float: left;
}

.col_33 {
	width: 33.3%;
	float: left;
}

.col_40 {
	width: 40%;
	float: left;
}

.col_50 {
	width: 50%;
	float: left;
}

.col_60 {
	width: 60%;
	float: left;
}

.col_66 {
	width: 66.7%;
	float: left;
}

.col_70 {
	width: 70%;
	float: left;
}

.col_75 {
	width: 75%;
	float: left;
}

/*________________________________________________________ ID's Principais*/
/*
===========
==GENERAL==
===========
*/
main {
	margin-top: 195px;
}
input:invalid,
input:-moz-ui-invalid,
textarea:invalid {
	border: 0;
	outline: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

/*Floating Whatsapp*/
a.floatingWhatsapp {
	position: fixed;
	right: 15px;
	bottom: 15px;
	width: 58px;
	height: 58px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	z-index: 999;
	transition: 0.8s;
}
/*
==========
==HEADER==
==========
*/
.mobile-text-menu {
	display: none;
}
.top-dourado {
	background-image: url("../img/bg-top-dourado.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 25px;
	top: 0;
	position: fixed;
	z-index: 999;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-dourado p {
	color: #fff;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
	font-size: 14px;
	width: 100%;
	text-align: center;
	letter-spacing: 1.5px;
	margin: 0 auto;
}
#header {
	background-color: #f5f2ed;
	position: fixed;
	top: 25px;
	z-index: 999;
	width: 100%;
	/* margin-top: -150px; */
	box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

/*Logo*/
#header #logo {
	margin-top: 8px;
	margin-bottom: 5px;
	width: 100%;
	display: flex;
	justify-content: center;
}

#header #logo a img {
	height: 120px;
	transition: 0.8s;
}

#header.recolhe #logo a img {
	height: 80px;
}

/*Fone*/
#header .fone {
	vertical-align: top;
	margin-top: 13px;
	float: right;
	transition: 0.8s;
	display: inline-block;
	position: absolute;
	right: 0;
}

#header.recolhe .fone {
	margin-top: 1px;
}

/*Menu*/
.optionMenu {
	display: none;
}

#menu {
	/*border-top:1px solid rgba(0,0,0,0.4);*/
	width: 100%;
	margin-top: -10px;
	text-align: center;
	background-color: transparent;
	/* background: linear-gradient(260deg, #9F641D 0%, #F4E961 47.38%, #BD8A1B 77.34%, #F4E961 100%); */
	/* background: linear-gradient(
		90deg,
		#613e06 0%,
		#926137 6.36%,
		#e7cfa0 18.88%,
		#926137 35.66%,
		#613d04 42.46%,
		#926137 50.45%,
		#e7cfa0 69.5%,
		#926137 86.15%,
		#603d04 100%
	); */
}

#menu ul {
	padding: 0 6px;
}

#menu ul li {
	margin: 0 4px;
	display: inline-block;
	/*border-right: 1px solid #37302e;*/
}
#menu ul li:hover {
	background: linear-gradient(to right, #e9d3a8, #6e4e15);
	color: white;
}
#menu ul li:hover a {
	color: white;
}
#menu ul li:last-child {
	border-right: none;
}

#menu ul li a {
	display: block;
	color: #37302e; /*:#37302e */
	font-size: 16px;
	box-sizing: border-box;
	/*border-bottom: 2px solid #FFF; */
	transition: 0.8s;
	-moz-transition: 0.8s;
	-webkit-transition: 0.8s;
	-o-transition: 0.8s;
	position: relative;
	z-index: 2;
	transition: 0.2s;
	text-transform: uppercase;
	font-weight: bold;
	padding: 6px 0.85em;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
}
#menu ul li.ativo {
	background: linear-gradient(to right, #e9d3a8, #6e4e15);
}
#menu ul li.ativo a {
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: white;
}
#menu ul li.ativo a:after {
	height: 10px;
	margin-top: -10px;
	/*border-bottom-color: #37302e;*/
}

#menu ul li a:hover {
	/*border-bottom-color: #37302e; */
	text-decoration: none;
	/*transition: 0.8s;*/
	font-weight: bold;
	color: white;
}
#menu ul li a:hover:after {
	height: 10px;
	margin-top: -10px;
}

/*
==========
==INDEX==
==========
*/
/*Banner*/
.bannerPrinc {
	width: 100%;
	overflow: hidden;
	height: 320px;
}

/*Banner Pagination*/
.cycle-pager {
	position: absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
	z-index: 500;
}

.cycle-pager span {
	color: #fff;
	font-size: 25pt;
	cursor: pointer;
}

.cycle-pager-active {
	color: #37302e !important;
}

/*Banner IMG*/
.bannerPrinc div.img {
	width: 100%;
	height: 320px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.bannerPrinc div.img span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	/* font-weight: bold; */
	font-size: 45px;
	text-shadow: 0px 2px 0px rgba(0, 0, 0, 1);
	line-height: 45px;
	text-align: center;
	letter-spacing: 0;
	font-family: "Valentina", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/*Chamadas*/
.tituloChamadas {
	margin: 20px 0 10px 0;
	font-weight: bold;
	font-size: 18pt;
	color: #37302e;
	text-align: center;
}

.chamadaText {
	margin: 50px auto;
	width: 49%;
	border: 3px solid #fff; /* #e8e8e8 */
	box-sizing: border-box;
	padding: 15px;
	position: relative;
	transition: 0.8s;
}

.chamadaText:hover {
	border: 5px solid #37302e;
}

.chamadaText .img {
	height: 100px;
	width: 100px;
	position: absolute;
	right: -20px;
	top: -50px;
}

.chamadaText .img.family,
.chamadaText .img.clock {
	background-repeat: no-repeat;
	background-size: 75%;
	background-position: center;
	transition: 0.3s;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.chamadaText .img.family {
	background-image: url("../img/family.png");
}

.chamadaText .img.clock {
	background-image: url("../img/time.png");
}

.chamadaText:hover .img.family {
	/*background-image: url('../img/family-color.png');
	transition: 0.8s;*/
	transform: scale(0.9);
}

.chamadaText:hover .img.clock {
	/*background-image: url('../img/time-color.png');*/
	transform: scale(0.9);
}

.chamadaText h1 {
	margin: 5px 0 20px 0;
	font-weight: bold;
	font-size: 16pt;
	color: #37302e;
	text-align: left;
	max-width: 310px;
}

.chamadaText p {
	font-size: 18px;
	text-align: justify;
}

/*Atrativos*/
ul.atrativos {
	clear: both;
}
ul.atrativos li {
	width: 300px;
	margin: 10px 10px;
	display: inline-block;
	vertical-align: top;
}

ul.atrativos li a div.img {
	width: 100%;
	overflow: hidden;
	height: 185px;
}

ul.atrativos li a div.img img {
	transition: 0.5s;
	max-width: 100%;
}

ul.atrativos li:hover a div.img img {
	transform: scale(1.1);
}

ul.atrativos li a span {
	color: #37302e;
	font-size: 20px;
	margin-top: 10px;
	display: block;
	font-weight: bold;
}

ul.atrativos li a:hover {
	text-decoration: none;
}

/*Botão de ir para as fotos*/
.btnVerFotos {
	background-color: #37302e;
	display: table;
	margin: 40px auto;
	padding: 10px 30px;
	transition: 0.5s !important;
	color: #fff;
}

.btnVerFotos:hover {
	text-decoration: none;
	color: #fff;
	background: linear-gradient(to right, #e9d3a8, #6e4e15);
}

/*
========
==CASA==
========
*/
.casa-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.information {
	margin-top: 15px;
	max-width: 450px;
	width: 100%;
}
.crefito {
	color: #fff;
	font-size: 14px;
}

.information div.img,
.information a div.img {
	width: 64px;
	margin: 0 auto;
}

.information p {
	text-align: justify;
}

.iframe-video iframe {
	width: 670px;
	height: 370px;
}

/*
==============
==ATIVIDADES==
==============
*/
ul.atividades {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
ul.atividades li {
	clear: both;
	margin-top: 15px;
	margin-bottom: 15px;
}

ul.atividades li > p {
	cursor: pointer;
}

ul.atividades li > p:before {
	content: url("../img/arrow-lista.png");
	margin-right: 5px;
	vertical-align: middle;
	display: inline-block;
	transition: 0.8s;
}
ul.atividades li .desc > .seta {
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 20px;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
}
ul.atividades li .desc > .seta:before {
	/*content: url('../img/arrow-lista.png');*/
	margin-right: 5px;
	vertical-align: middle;
	display: inline-block;
	transition: 0.8s;
}

ul.atividades li.active > p:before {
	transform: rotate(90deg);
	margin-right: 10px;
}

ul.atividades li .desc {
	/*display: none;*/
}

ul.atividades li .desc img {
	max-width: 100%;
	display: block;
	float: left;
	margin-bottom: 10px;
}

ul.atividades li .desc p {
	/*width: 670px; 
	float: right;*/
}

/*
==========
==EQUIPE==
==========
*/
.content-inner p.desc {
	text-align: center;
}
.content-inner {
	position: relative;
	margin-top: 10px;
}

.equipe-pic,
.equipe-desc,
.equipe-desc .information p {
	text-align: center;
}

.equipe-pic figure figcaption {
	background-color: #37302e;
	width: 677px;
	margin: -15px auto 0 auto;
	color: #fff;
}
.equipe-pic figure img {
	/*margin-left: -40px;*/
}
.equipe-pic {
	display: inline-block;
	margin-top: -10px;
	margin-bottom: -17px;
}
.equipe-desc {
	margin-bottom: 20px;
	display: inline-block;
	width: 30%;
	background-color: #37302eb5;
	padding: 10px 20px 30px 20px;
	position: absolute;
	top: 20%;
	right: 0;
	transform: translate(0, -30%);
}
.equipe-desc h2 {
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
}
.equipe-desc .informations p {
	padding: 4px 0;
	text-align: center !important;
	color: #fff;
}
.equipe-desc .information .img,
.equipe-desc .information p {
	width: 100%;
	float: none;
}

/*
=====================
==REGIMENTO INTERNO==
=====================
*/
.item-regimento {
	padding-top: 10px;
	margin-bottom: 10px;
	transition: 0.3s ease;
}
.item-regimento:hover {
	transform: scale(0.98);
}
.item-regimento:nth-child(even) {
	background: rgba(225, 225, 225, 0);
}
.item-regimento:nth-child(even):hover {
	background: rgba(225, 225, 225, 0.2);
}
.item-regimento:nth-child(odd) {
	background: rgba(42, 29, 13, 0.2);
}
.item-regimento:nth-child(odd):hover {
	background: rgba(225, 225, 225, 0.2);
}
.item-regimento h3 {
	font-size: 18px;
	color: #37302e;
	cursor: pointer;
	position: relative;
	padding: 10px;
	margin-left: 10px;
}

.item-regimento h3:before {
	content: url(../img/arrow-lista.png);
	transition: 0.8s;
	vertical-align: middle;
	display: inline-block;
	margin-right: 1px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
}

.item-regimento.active h3:before {
	transform: translate(0, -50%) rotate(90deg);
	margin-right: 5px;
	transition: 0.3s;
}

/*.item-regimento.active h3{
	margin-left: 10px;
}*/

.item-regimento p {
	display: none;
	padding: 5px 18px;
	margin: 0;
	/* background-color: #fff; */
}
.item-regimento h3 span {
	font-size: 16px !important;
	font-weight: bold;
}
.item-regimento h3 strong {
	font-size: 20px !important;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
}

/*
===========
==CONTATO==
===========
*/
/*Form*/
form {
	width: 70%;
	margin: 0 auto;
	text-align: center;
}

/*Row*/
form div.row {
	text-align: left;
	padding-top: 5px;
	transition: 0.8s;
}

form div.row.focused {
	padding-bottom: 0;
}

/*Label*/
form div.row label {
	transition: 0.3s;
	margin-top: 22px;
	display: block;
	color: #37302e;
}

form div.row.focused label {
	font-size: 11pt;
	color: #37302e;
	margin-top: 0;
}

/*Input e Textarea*/
form div.row input {
	width: 100%;
}

form div.row.textarea {
	clear: both;
}

form div.row textarea {
	resize: none;
	width: 100%;
	overflow: hidden;
	height: 22px;
}

form div.row input,
form div.row textarea {
	border: none;
	border-bottom: 1px solid #37302e;
	transition: 0.3s;
	background-color: transparent;
	display: block;
	outline: none;
	margin-top: -22px;
}

form div.row.focused input,
form div.row.focused textarea {
	margin-top: 0px;
}
form div.row input:hover,
form div.row input:focus,
form div.row textarea:hover,
form div.row textarea:focus {
	border-bottom-color: #37302e;
}

/*Botão submit*/
form #submit {
	background-color: #37302e;
	padding: 10px;
	width: 100px;
	display: block;
	margin: 10px auto 15px auto;
	transition: 0.3s;
	color: #fff;
	cursor: pointer;
}

form #submit:hover,
form #submit:focus {
	background: linear-gradient(to right, #e9d3a8, #6e4e15);
	color: #fff;
	text-decoration: none;
}

/*
=========
==FOTOS==
=========
*/
/*Menu de albuns*/
ul#galeria-fotos {
	width: 100%;
	box-sizing: border-box;
}

ul#galeria-fotos li {
	clear: both;
	margin-top: 10px;
}

ul#galeria-fotos li > p {
	cursor: pointer;
}

ul#galeria-fotos li > p:before {
	content: url("../img/arrow-lista.png");
	margin-right: 5px;
	vertical-align: middle;
	display: inline-block;
	transition: 0.8s;
}

ul#galeria-fotos li.active > p:before {
	transform: rotate(90deg);
	margin-right: 10px;
}

/*Fotos de cada album*/
ul#galeria-fotos > li > div.fotos {
	display: none;
}

ul#galeria-fotos > li > div.fotos > ul > li {
	width: 24%;
	display: inline-block;
}

ul#galeria-fotos > li > div.fotos > ul > li > a,
ul#galeria-fotos > li > div.fotos > ul > li > a > img {
	width: 100%;
	height: 156px;
}
.galeria-novo {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 180px;
	grid-auto-flow: dense;
}
.galeria-novo li {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	overflow: hidden;
}
.galeria-novo li:hover img {
	transform: scale(1.4);
}
.galeria-novo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 2s linear;
}
.horizontal {
	grid-column: span 2;
}

.vertical {
	grid-row: span 2;
}
.vertical img {
	height: 370px;
}
.big {
	grid-column: span 2;
	grid-row: span 2;
}

/*
==========
==FOOTER==
==========
*/

/*Banner de fotos da casa*/
.fotosCasa {
	width: 100%;
	overflow: hidden;
}

.owl-nav {
	display: none;
}

.owl-item {
	display: inline-block;
}

/*Footer*/
#footer {
	background: #37302e;
	padding: 40px 0 20px 0;
	clear: both;
	text-align: center;
}

/*Endereço e telefone*/
#footer .fone-end {
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
}
#footer a {
	color: white !important;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
	font-size: 14px;
	letter-spacing: 0.5px;
}
#footer .fone-end p {
	text-align: left;
	color: #fff;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
	font-size: 14px;
	letter-spacing: 0.5px;
}
#footer .fone-end p strong {
	text-align: left;
	color: #fff;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
	font-size: 14px;
	letter-spacing: 0.5px;
}

#footer .fone-end,
#footer .socialMedia {
	float: right;
	margin-top: -8px;
}

/*Midias Sociais*/
#footer .socialMedia a img {
	width: 24px;
	height: 24px;
	padding: 10px 0;
	filter: grayscale(1) brightness(1.5);
	transition: 0.3s;
}

#footer .socialMedia a:hover img {
	filter: grayscale(0) brightness(1);
}

/*Desenvolvedor*/
#footer .dataDev {
	width: 100%;
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 10px;
	margin-top: 10px;
}

#footer .dataDev {
	font-size: 13px;
}

#footer .dataDev a {
	color: #fff;
	font-size: 13px !important;
}
#footer .dataDev span {
	color: #fff;
	font-family: "Cinzel", Verdana, Geneva, sans-serif;
	letter-spacing: 0.5px;
}
#footer .dataDev span.casa:after {
	content: " | ";
}

.menu-rodape ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 15px;
	gap: 0 30px;
}
.menu-rodape ul li {
	display: flex;
	align-items: flex-start;
	justify-content: start;
}

.grid-rodape {
	display: grid;
	grid-template-columns: 1.1fr 1.2fr 0.6fr;
}

.logo-rodape {
	width: 250px;
}
.fancybox-slide--iframe .fancybox-content {
	width: 800px;
	height: 600px;
	max-width: 80%;
	max-height: 80%;
	margin: 0;
}

.fancybox-inner {
	min-height: 500px !important;
}
