<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&amp;family=Source+Sans+Pro:wght@200;300;400&amp;display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');


/*font-family: 'Montserrat', sans-serif;*/

*{
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;    
}

body{
    margin: 0;
}

.icons{
    font-family: 'Material Icons';
    font-size: 24px;
    color: #333333;
    width:24px;
    height:24px;
    display:inline-block;
}


.max-width{
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

h2{
    position:relative;
    margin:0 0 30px 0;
    padding: 0 0 30px 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    color:#555555;
}
h2:before{
    content:'';
    position: absolute;
    width: 80px;
    height:2px;
    background-color: #555555;
    bottom:0;
    left:calc(50% - 40px);
}

.dark h2{
        color:#CCCCCC;
}

.dark h2:before{
        background-color: #CCCCCC;
}

h3{
    position:relative;
    margin:0 0 20px 0;
    padding: 0 0 10px 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
    color:#555555;
}
h3:before{
    content:'';
    position: absolute;
    width: 60px;
    height:2px;
    background-color: #555555;
    bottom:0;
    left:0;
}

h4{
    margin: 0;
    padding:0;
    color:#333333;
    font-family: 'Source Sans Pro', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 40px;
}

nav.btn{
    display:flex;
    flex-direction: row;
    border-bottom: double 2px #33426d;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

nav.btn &gt; div{
    border-radius: 5px;
    border:solid 1px #33333399;
    margin: 3px;
    line-height:30px;
    height:30px;
    overflow: hidden;
    padding: 0 8px 0 26px;    
    position: relative;
    background-color: #33426d;
    color:#FFFFFF;
}


nav.btn &gt; div a{
    display: block;
    text-decoration: none;
}

nav.btn &gt; div span.icons{
    position:absolute;
    left:1px;
    text-align: center;
}

nav.btn &gt; div *{
    color:#FFFFFF;
}

nav.btn &gt; div:hover{
    background-color:#2f729f;
}

/*
.dark h3{
        color:#CCCCCC;
}

.dark h3:before{
        background-color: #CCCCCC;
} 
*/ 


label span.required{
    padding-left: 3px;
    font-size: 26px !important;
    color: #FF0000;
    position: absolute;
    margin-top: -12px;
}

/*
@media (prefers-color-scheme: dark) {
    body{
        background-image: linear-gradient(to bottom, #333, #111)  ;
        color: white; 
    }
    input, textarea, select{
        background:  #FFFFFF33;
        border-color:#FFFFFF33 !important;
        color: white;         
    }

}
*/


/*MISCELANEA*/
#overlay{
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000DD;
    display: none;
}

#popUp{
    position: fixed;
    z-index: 100000000001;
    border-radius: 5px;
    top: -350px;
    left: calc(50% - 300px);
    width: 600px;
    height: 300px;
    background-color: #FFFFFF;
    border-radius: #FFFFFF99;
    overflow: hidden;
    opacity: 0.1;
    transition: 0.6s;
}

#popUp.active{
    top: calc(50% - 150px);
    opacity: 1;    
}

#popUp .bar{
    position: relative;
    background-color: #33426d;
    height: 40px;
    line-height:40px;
    padding-left: 10px;
    color:#FFFFFF;
}

#popUp.erro .bar{
    background-color: #990000;
}

#popUp .bar .btnFechar{
    position: absolute;
    right: 5px;
    top: 5px;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

#popUp .bar .btnFechar::after{
    content: '';
    position: absolute;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    margin: 6px;
    background-color: #FFFFFF;
    clip-path: polygon(10% 0%, 0% 10%, 40% 50%, 0% 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 60% 50%, 100% 10%, 90% 0%, 50% 40%);
}

#popUp .contents{
    padding:30px;
}


#loading {
    position:fixed;
    z-index: 100000000000;
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    display: none;
  }
  #loading:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 0px;
    border: 50px solid #fff;
    border-color: #fff transparent #fff transparent ;
    animation: lds-hourglass 2.4s infinite;
  }
  @keyframes lds-hourglass {
    0% {
      transform: rotate(0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
      transform: rotate(900deg);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
      transform: rotate(1800deg);
    }
  }
  
 


/*FIM MISCELANEA*/</pre></body></html>