@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&family=Source+Sans+Pro:wght@200;300;400&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/*font-family: 'Montserrat', sans-serif;*/

:root {
    --font-padrao: 'Source Sans Pro', sans-serif;

}

* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
}

.icons {
    font-family: 'Material Icons';
}


.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;
}

/*
.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: 1002;
    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: #1c1b22CC;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    color: #FFFFFF;
}

#popUp .bar.warning {
    background-color: #C00;
}

#popUp .bar .btnFechar {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

#popUp .contents {
    padding: 10px;
}

#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%);
}



#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);
    }
}


#floatWhatsApp {
    position: fixed;
    z-index: 100;
    bottom: 10px;
    right: 10px;
    width: 64px;
}

#floatWhatsApp img {
    width: 100%;
}

/*FIM MISCELANEA*/