@charset "UTF-8";

/* =================================================================== 
 *
 *  
 *  ------------------------------------------------------------------
 *
 *
 *
 * =================================================================== */

/* -----------------------------------------------------
Media Query Exemplos
-----------------------------------------------------

@media only screen and (min-width: 320px) {}
@media only screen and (min-width: 480px) {}
@media only screen and (min-width: 600px) {}
@media only screen and (min-width: 768px) {}
@media only screen and (min-width: 830px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1382px) {}

@media only screen and (min-width: 320px) {}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}


Variáveis

no html
style="--clr:#f8ff00;

no css
background: var(--clr);
*/

/* import fonts 
font-family: 'Lato', sans-serif;
font-family: 'Montserrat', sans-serif;
*/

/*@import url("../font-awesome/css/all.min.css");*/


/* # preloader */
.theme-loader {
    height: 100%;
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 999999;
    top: 0;
}
.theme-loader .ball-scale {
    left: 50%;
    top: 50%;
    position: absolute;
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
}
.theme-loader .ball-scale .contain {
    height: 100%;
    width: 100%;
}
.theme-loader .ball-scale .contain .ring {
    display: none;
}
.theme-loader .ball-scale .contain .ring:first-child {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    padding: 10px;
    border: 3px solid transparent;
    border-left-color:#A4DAF8;
    border-right-color:#A4DAF8;
    -webkit-animation: round-rotate 1.5s ease-in-out infinite;
    animation: round-rotate 1.5s ease-in-out infinite;
}
.theme-loader .ball-scale .contain .ring:first-child .frame {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color:#0891CD;
    border-right-color:#0891CD;
    -webkit-animation: round-rotate 1.5s ease-in-out infinite;
    animation: round-rotate 1.5s ease-in-out infinite;
}
@-webkit-keyframes round-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes round-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ==========================================
*
*  GERAL
* 
* ======================================== */
html,
body {
    margin: 0;
    padding: 0;
}
main {
    overflow-x: hidden;
}
.row {
    margin: 0;
    padding: 0;
}



/* ==========================================
*
*  HEADER
* 
* ======================================== */
header {
    width: 100%;
    position: fixed;
    z-index: 1000;
}
/*   Menu primário */
.menu-desk .menu-primario {    
    background: #ffffff;
}
.menu-desk .menu-primario .content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;       
}
.menu-desk .menu-primario .content-flex ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}
.menu-desk .menu-primario .content-flex ul li {
    padding: 0;
    margin: 0;
}
.menu-desk .menu-primario .content-flex ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size:15px;
    color: #333333;
    text-decoration: none;
}
.menu-desk .menu-primario .content-flex ul li a:hover {
    text-decoration: none;
}




/* ================================================================= 
*
*  
*  RESPONSIVO
*
*
* ================================================================ */

.conteudo-menu-principal { display: none;}


/* ==========================================
*
*  MENU
* 
* ======================================== */
@media only screen and (min-width: 320px) {
    .espaco-top {
        height:78px;
    }
    .menu-desk {display: none;}
    .menu-mobile {display: block;}
    header .menu-mobile {
        height: 78px;
        width: 100%;
        display: flex;
        align-items: center;
        background:#ffffff;
    }
    header .menu-mobile .cont-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .conteudo-menu-principal {                
        height: 100vh;
        width: 100vw;        
        position: absolute;
        top: 0;  
        left: 0;
        background:rgba(0, 0, 0, 0.359);
        z-index:-1;
    }
    .conteudo-menu-principal .menu-principal-vertical {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100vh;
        width: 70vw;
        margin-left: 30vw;
        background: #0891CD;
        padding-top: 90px;
    }
    .conteudo-menu-principal .menu-principal-vertical .principal {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .conteudo-menu-principal .menu-principal-vertical .principal li {
        border-bottom:solid 1px #189BD2;
    }
    .conteudo-menu-principal .menu-principal-vertical .principal li a {
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size:14px;
        color: #ffffff;
        text-decoration: none;
        padding: 15px 0 15px 20px;
        display: block;
    }
    
    .conteudo-menu-principal .menu-principal-vertical button {
        background: #65BFF1;
        width: 90%;
        padding: 24px 0;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap:10px;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size:13px;
        color:#ffffff;
        margin-bottom: 60px;
    }
}
@media only screen and (min-width: 992px) {
    .conteudo-menu-principal { display: none;}
    .espaco-top {
        height:95px;
    }
    .menu-desk {display: block;}
    .menu-mobile {display: none!important;}
}
/* ==========================================
*
*  MENU
* 
* ======================================== */


/* ==========================================
*
*  HEADER
* 
* ======================================== */




/* ================================================================= 
*
*  
*  RESPONSIVO
*
*
* ================================================================ */

@media only screen and (min-width: 320px) {
    .is-desk {display: none!important;}
    .is-mobile {display: block!important;}
}
@media only screen and (min-width: 992px) {
    .is-desk {display: block!important;}
    .is-mobile {display: none!important;}
}






