<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; /* cor do background que vai ocupar o body */
    z-index:999; /* z-index para jogar para frente e sobrepor tudo */
}
#preloader .inner {
    position: absolute;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animaÃ§Ã£o)*/
    left: 50%;
    transform: translate(-50%, -50%);  
}
.pagePreloader &gt; div {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 3px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: animarBola;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.pagePreloader &gt; div:nth-child(1) {
    animation-duration:0.90s ;
    animation-delay: 0;
}
.pagePreloader &gt; div:nth-child(2) {
    animation-duration: 0.90s ;
    animation-delay: 0.12s;
}
.pagePreloader &gt; div:nth-child(3) {
    animation-duration: 0.90s  ;
    animation-delay: 0.24s;
}

@keyframes animarBola {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    16% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1; 
    } 
}

/* Popup quando vai sair do site */
#exitpopup h1{
    margin-top:0px;
    padding-top:0px;
}	
#exitpopup p{
    text-align:left;
}
.modalpopup{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #000000; 
    opacity: .6; 
    filter: alpha(opacity=0.2); 
    z-index: 999999;
}
.modalpopup2{
    width:750px;  
    margin:0px auto; 
    display: none; 
    position: fixed; 
    background-color: #ffffff; 
    padding: 20px; 
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px; 
    border-radius: 10px; 
    z-index:999999;
}
.slideDown{
    width:750px;
    margin-top: 100px;
    margin-left: -20px;
    display: none;
    border-radius: 4px;
    background-color:#ffffff; 
}
#nomePopup{
    width: 37% !important;
    margin-left: 75px;
    position: absolute;
}
#fonePopup{
    width: 38% !important;
    position: absolute;
    margin-left: 49%;
    margin-top: -30px;
}
#emailPopup{
    width: 278px !important;
    margin-left: 75px;
}
.styleForm{
    margin-top: 15px;
}
.btnServicoCustom{
    padding: 15px 16px !important;
}
.modalDetail{
    width: 100%;
    height: 30px;
    top: -6px;
    position: absolute;
    right: 0px;
    border-radius: 10px 10px 0px 0px;
}
.modalHeader{
    width: 100%;
    height: 30px;
    background-color: #ffffff;
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 10px 10px 0px 0px;
}
.close{
    margin-right: 10px;
    margin-top: 10px;
}


.form-default-02 .form-group label{
    /* position: absolute; */
}
.styleForm{
    /* position: absolute; */
}
#fonePopup-error{
    margin-left: 49%;
    margin-top: 21px; 
}
#nomePopup-error{
    margin-top: 51px;
    margin-left: 75px;
}
#emailPopup-error{
    margin-left: 75px;
}</pre></body></html>