<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*---GERAL---*/
body{
    	margin: 0;
    	font-family: 'Montserrat', sans-serif;
	}
	
a{
	text-decoration:none;
	color: #f1f1f1;
}

	
.fundoum{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    left: 0;
    min-height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
	}

.fundodois{
    background-position: center center;
    background-size: cover;
    height: auto;
    left: 0;
    min-height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
	}

.fontum{
    	font-family: 'Bitter', sans-serif;
    }

/*SEPARADOR*/
#separador{
    position: relative;
    height: 10px;
    z-index: 999;
    border-bottom: 1px solid #660020;
    opacity: 0.3;
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}
#linha{
    height: 4px;
    background: #660020;
    width: 100px;
    margin: 0 auto;
    border-radius: 100px;
}



/*---PRELOAD---*/    
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: auto;
    left: 0; right: 0; top: 0; bottom: 0;
    background: #0B172B;
    z-index: 999999999999;
    text-align: center;
}

#preloader .inner {
    position: absolute;
    width: 150px; height: 266px;
    overflow: hidden;
    margin: auto;
    top: 50%;
    left: 0; right: 0;
    z-index: 9;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

#preloader .circle-ef {
    width: 60px; height: 60px;
    position: absolute;
    
    border-radius: 50%;
    margin: auto;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    left: 0; right: 0; top: 0; bottom: 90px;
    z-index: 99;
    -webkit-animation: circle-ef 1s linear infinite;
    -moz-animation: circle-ef 1s linear infinite;
    animation: circle-ef 1s linear infinite;
}
@-webkit-keyframes circle-ef {
    100% {-webkit-transform: rotate(360deg)}
}
@-moz-keyframes circle-ef {
    100% {-moz-transform: rotate(360deg)}
}
@keyframes circle-ef {
    100% {transform: rotate(360deg)}
}

#preloader .circle-ef:after {
    content: url('../imagens/load.png');
    color: #ffffff;
    display: block;
    position: absolute;

}
.preloader-ef {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -ms-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
#preloader.preloader-ef .inner .img2,
#preloader.preloader-ef .inner .circle-ef {
    display: none;
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
}
#preloader.preloader-ef .image {
    background: #d0d0d0;
}</pre></body></html>