<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---------------------------------
ADMINISTRA O ESTILO DO CABEĆ‡ALHO 
E RODAPĆ‰ DO 
--------------------------------- */

:root {
  	--header-height: 70px;
  	--logo-width: 210px;
  	--menu-desktop-widht: 280px;
	}

#header{
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: rgba(250,250,250,0.9);
	display: block;
	width: 100%;
	height: var(--header-height);
	z-index: 999;
	border-bottom: solid 3px var(--main-color-light);
	-moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.2); 
	-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2); 
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	}
.header{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	}
#logo{
	position: absolute;
	top: 10px;
	left: calc( var(--header-height) + 15px );
	max-width: var(--logo-width);
	bottom: 10px;
	margin: 0px;
	padding: 0px;
	}
#logo &gt; a{
	display: block;
	width: 100%;
	height: 100%;
	}
#logo &gt; a &gt; img{
	max-width: 100%;
	max-height: 100%;
	}
#menu-header{
	position: absolute;
	top: 0px;
	right: calc( var(--header-height) - 5px );
	bottom: 0px;
	border-left: solid 1px #EEE;
	margin: 0px;
	padding: 0px;
	}
#menu-header &gt; ul{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	}
#menu-header &gt; ul &gt; li{
	position: relative;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
	height: 100%;
	border-right: solid 1px #EEE;
	}
#menu-header &gt; ul &gt; li &gt; a,
#menu-header &gt; ul &gt; li &gt; span{
	display: block;
	line-height: var(--header-height);
	color: var(--main-color);
	font-size: 0.9em;
	padding: 0px 15px;
	text-transform: uppercase;
	}
#menu-header &gt; ul &gt; li &gt; a.active{
	background-color: rgba(0, 0, 0, 0.1);
	}
#menu-header &gt; ul &gt; li &gt; ul{
	opacity: 0;
	position: absolute;
	top: 100%;
	right: 0px;
	width: var(--menu-desktop-widht);
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	pointer-events: none;
	}
#menu-header &gt; ul &gt; li:hover &gt; ul{
	pointer-events: auto;
	}
#menu-header &gt; ul &gt; li &gt; ul &gt; li{
	position: relative;
	margin: 0px;
	list-style: none;
	line-height: auto !important;
	}
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; a,
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a,
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; span,
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; span{
	display: block;
	font-size: 0.9em;
	padding: 9px 15px;
	line-height: 100%;
	color: var(--main-color);
	}
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; a &gt; svg{
	width: 12px;
	height: 12px;
	margin-right: 7px;
	fill: #000;
	}
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; ul{
	opacity: 0;
	position: absolute;
	right: 100%;
	top: 0px;
	width: var(--menu-desktop-widht);
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
	-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	pointer-events: none;
	}
#menu-header &gt; ul &gt; li &gt; ul &gt; li:hover &gt; ul{
	transition: opacity .2s linear;
	opacity: 1;
	pointer-events: auto;
	}
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; a:hover,
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a:hover{
	background-color: #EEE;
	}
#menu-header &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li{
	list-style: none;
	}

#menu-header &gt; ul &gt; li:hover{
	background-color: #eee;
	cursor: pointer;
	}
#menu-header &gt; ul &gt; li:hover &gt; ul{
	transition: opacity .2s linear;
	opacity: 1;
	}
.header-icon{
	position: absolute;
	top: 0px;
	width: var(--header-height);
	height: var(--header-height);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	}
.header-icon:hover{
	background-color: rgba(0,0,0,0.1);
	cursor: pointer;
	}
.header-icon &gt; div,
.header-icon &gt; a{
	width: 20px;
	height: 20px;
	margin-top: -4px;
	}
.header-icon &gt; div &gt; svg,
.header-icon &gt; a &gt; svg{
	color: #000;
	}
#menu-icon{	left: 0px; border-right: solid 1px rgba(0,0,0,0.1);	}
#menu-icon-whatsapp{ right: 0px; }
#menu-icon-whatsapp &gt; div &gt; svg{ color: #0C3; }

#menu-icon-whatsapp.active{ background-color:#0C3;  }
#menu-icon-whatsapp.active &gt; div &gt; svg{ color: #FFF; }

#menu-icon-search{	right: 0px; }
#menu{
	position: fixed;
	top: var(--header-height);
	left: -310px;
	width: 300px;
	bottom: 0px;
	background-color: #F6F6F6;
	transition: 0.4s;
	overflow: auto;
	}
#menu.active{
	left: 0px;
	}
#menu-stage { 
	display: table;
	position: relative;
	width: 100%;
	padding-bottom: 30px;
	}
#menu-stage &gt; ul{
	margin: 15px 0px 0px 0px;
	padding: 0px;
	}
#menu-stage &gt; ul &gt; li{
	margin: 0px;
	padding: 0px;
	}
#menu-stage &gt; ul &gt; li &gt; a,
#menu-stage &gt; ul &gt; li &gt; span{
	display: block;
	padding: 10px 5px 10px 20px;
	color: #000;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
	font-family: var(--main-font) !important;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
	}
#menu-stage &gt; ul &gt; li &gt; a:hover{
	background-color: rgba(0,0,0,0.1);
	}
#menu-stage &gt; ul &gt; li &gt; a.active{
	color: var(--main-color) !important;
	}
#menu-stage &gt; ul &gt; li &gt; ul{
	padding-left: 20px;
	margin-bottom: 15px;
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li{
	list-style: none;
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; a,
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; span{
	font-size: 0.9em;
	display: block;
	line-height: 150%;
	color: #666666;
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; a:hover{
	color: #000;
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; a &gt; svg{
	width: 12px;
	height: 12px;
	margin-right: 7px;
	fill: var(--main-color);
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; ul{
	margin: 5px 0px 5px 0px;
	padding-left: 20px;
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li{
	list-style: none;
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a,
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; span{
	font-size: 1em;
	display: block;
	line-height: 150%;
	color: rgba(255,255,255,0.6);
	}
#menu-stage &gt; ul &gt; li &gt; ul &gt; li &gt; ul &gt; li &gt; a:hover{
	color: rgba(255,255,255);
	}

#menu-whats{
	position: fixed;
	top: var(--header-height);
	width: 280px;
	height: 340px;
	right: 0px;
	background-color: #F3F3F3;
	-moz-box-shadow: 4px 4px 7px rgba(0,0,0,0.3); 
	-webkit-box-shadow: 4px 4px 7px rgba(0,0,0,0.3); 
	box-shadow: 4px 4px 7px rgba(0,0,0,0.3);
	}
#menu-whats &gt; a{
	display: block;
	position: relative;
	height: 50%;
	}
#menu-whats &gt; a:nth-child(1){
	border-bottom: solid 2px #E3E3E3;
	}
#menu-whats &gt; a:nth-child(2){
	border-top: solid 2px #FFF;
	}
#menu-whats &gt; a &gt; *{
	pointer-events: none;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently */
	}
#menu-whats &gt; a &gt; div{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 48px;
	height: 48px;
	margin-left: -24px;
	margin-top: -50px;
	background-color: #0A3;
	-moz-border-radius: 80px; 
	-webkit-border-radius: 80px;
	}
#menu-whats &gt; a &gt; div &gt; svg{
	color: #FFF;
	width: 60%;
	height: 60%;
	margin: 20%;
	}
#menu-whats &gt; a &gt; label{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin-top: 13px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	color: #666;
	}
#menu-whats &gt; a &gt; span{
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: 30px;
	width: 100%;
	text-align: center;
	font-size: 11px;
	font-weight: 300;
	color: #666;
	}

#content{
	padding-top: var(--header-height);
	}
#footer{
	display: block;
	width: 100%;
	background-color: var(--main-color);
	padding: 10px;
	margin-top: 20px;
	}

.footer strong{
	display: block;
	margin-bottom: 10px;
	}
.footer &gt; div{
	display: grid;
	grid-template-columns: repeat(3, 33.3333% [col-start]);
	}
.footer &gt; div &gt; div{
	color: #FFF;
	padding: 0px;
	border-right: solid 2px rgba(255,255,255,0.1);
	}
.footer &gt; div &gt; div:last-child{
	border: none;
	}
.footer &gt; div &gt; div &gt; div{
	padding: 30px;
	}
.social_network_list{
	display: table;
	width: 100%;
	margin: 0px;
	padding: 5px 0px 0px 0px;
	}
.social_network_list &gt; li{
	display: block;
	float: left;
	margin: 0px;
	padding: 0px 0px 5px 0px;
	list-style: none;
	}
.social_network_list &gt; li &gt; a{
	width: 24px;
	height: 24px;
	margin-right: 7px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	}
.social_network_list &gt; li &gt; a &gt; svg{
	fill: #FFFFFF;
	}
.social_network_list &gt; li &gt; a:hover &gt; svg{
	fill: var(--main-color-dark);
	}
.footer-map{
	background-color: rgba(255,255,255,0.1);
	}
.map-footer-iframe &gt; iframe{
	width: 100% !important;
	height: 100% !important;
	}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: var(--secondary-color) !important;
	}

@media (max-width: 1600px) {

}
@media (max-width: 1200px) {

}
@media (max-width: 1024px) {
	#menu-header{
		display: none;
		}
}
@media (max-width: 840px) {
	#logo{
		width: auto;
		right: var(--header-height);
		}
	.footer strong{
		margin-bottom: 5px;
		}
	.footer &gt; div{
		display: grid;
		grid-template-columns: 100%;
		}
	.footer &gt; div &gt; div{
		border: none;
		}
	.footer &gt; div &gt; div &gt; div{
		padding: 10px;
		}
}
@media (max-width: 720px) {

}
@media (max-width: 600px) {
	:root {
  	--header-height: 60px;
		}
	#footer strong,
	#footer label{
		font-size: 0.8em !important;
		}
}
@media (max-width: 480px) {
	.header-icon &gt; div,
	.header-icon &gt; a{
		width: 18px;
		height: 18px;
		}

}
@media (max-width: 320px) {

}</pre></body></html>