@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600&display=swap');

:root {
	--light: #fff;
	--dark: #414346;
	
    --primary-color: #374761;
	--secondary-color: #335c98;
	--tertiary-color: #c7dfb1;

    --primary-font: 'Montserrat', sans-serif;

}

.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--light) !important;

}
.bg-secondary {
    background-color: var(--secondary-color) !important;
    color: var(--light) !important;
}

.btn-light {
    line-height: normal;
}
.btn-primary {
  background-color: initial;
  background-image: linear-gradient(-180deg, #00D775, #00BD68);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: #FFFFFF;
  font-weight: bold;
  border: 0;  
}
.btn-primary:hover {
    background-image: linear-gradient(-180deg, #00BD68, #00D775);
}


h1 {
    font-stretch: condensed !important;
    letter-spacing: -2px !important;
    color: #212121 !important;
}
h1, h2, h3, h4, h5, h6 {
    color: #212121 !important;
}

.agenda {
    padding: 10px;
    border: 1px dotted #cecece;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
}
.agenda-dia {
    font-size: 300%;
    font-weight: bold;
    color: var(--primary-color);
}
.agenda-mes {
    font-size: 120%;
    font-weight: bold;
    color: var(--dark);
    line-height: normal;
    margin-top: -15px;
}
.agenda-hora {
    font-size: 90%;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: normal;
    margin-bottom: 10px;
}



/* SITE ********************
****************************/
body {
    font-family: var(--primary-font);
    font-weight: 300;
    font-size: 1.0rem;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    background-color: var(--light);
    color: var(--dark);
}

.img-capa {
    padding: 10px;
    border: 1px dotted #cecece;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    background-color: #ffffff;
    max-height: 230px !important;
    
}
.modulos {
    padding: 0 !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.interna {
    margin-top: 150px !important;
}


.sc-card {
    background-color: var(--light);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    border-radius: 0.6rem !important;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;    
}

.parceiros {
    max-width: 150px !important;
    margin: 0 auto !important;
}

small {
    font-size: 80%;
    line-height: -0.5rem;
    display: block;
}


.badge {
    font-size: 60% !important;
}

.instagram-feed {
    background-color: var(--light);
    margin-top: -50px;
    height: 50px;
    display: block;
    z-index: 999999;
}


/* MENU **********************
******************************/
.menu-logo {
	max-height: 30px !important;
	max-width: 100px !important;
}
.dropdown-item {
	font-size: 80% !important;	
}
a:active.dropdown-item , a:hover.dropdown-item  {
	background-color: var(--primary-color) !important;
	color: var(--light) !important;
}
.menu {
    /* position: fixed; */
    
	transition:500ms ease;
	text-transform: uppercase;
}




/* CAROUSEL ******************
******************************/
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}





/*************************************/
/* MENU LATERAL
/**************************************/
.menu-lateral {
	font-size: 90%;
}
.menu-lateral .list-group-item {
    background-color: transparent !important;
}
.menu-lateral .list-group-item:hover {
    background-color: var(--primary-color) !important;
    color: var(--light) !important;
}

.list-group-item-menu {
    margin-bottom: 5px;
    word-spacing: -1px; 
    font-weight: bold;
}
.list-group-item-menu:hover {
    background-color: #f1f1f1;
}
.list-group-item-menu.active {
    background-color: var(--primary-color);
    color: var(--light);
    border: none !important;
}
.menu-icone {
    background-color: var(--primary-color);
    color: var(--light);
    padding: 5px;
    border-radius: 5px;
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    margin-right: 5px;
    font-size: 200%;
}


@media screen and (min-width : 320px) and (max-width : 768px) {
	.list-group-item-menu {
        font-style: 70%;
    }
    .menu-icone {
        padding: 5px;
        border-radius: 5px;
        width: 30px;
        height: 30px;
        font-size: 100%;
    }
}




/*************************************/
/* RODAPÉ
/**************************************/
.rodape {
	font-size: 90%;
}
.rodape .list-group-item {
    background-color: transparent !important;
}
.rodape .list-group-item:hover {
    background-color: var(--primary-color) !important;
    color: var(--light) !important;
}





/* LGPD **********************
******************************/
.lgpd {
	display: none;
	position: fixed;
	width: 100%;
	bottom: 0px;
	background-color: #4f4f4f;
	color: #fff;
	text-align: center;
	font-size: 80%;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-height: 80px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.btn-lgpd {
	background-color: #4f4f4f;
	border: solid 1px #fff;
	padding: 15px;
	color: #fff;
	border-radius: 5px;
	margin-left: 10px
}



/* DIALOG ******************
****************************/
.sc-dialog {
    background: rgba(255,255,255,0.7);
}
.sc-dialog .sc-alert {
    border: 2px solid #cecece;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.sc-dialog .sc-alert .sc-titulo{
    padding: 1rem;
    color: #fff;
    background: #39b54a;
}
.sc-dialog .sc-alert .sc-mensagem{
    font-size: inherit;
    padding: 1rem;
}
.sc-dialog .sc-alert .sc-action{
    border-top: none;
    padding: 1rem;
    background: #fff
}

.banner-lateral {
    max-height: 250px !important;
}



.piloto-logo {
    max-height: 150px !important;
}


.linha {
    border-bottom: 3px solid var(--primary-color);
}
.topo-linha {
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 50px;
}
.piloto-logo {
    margin-top: 20px;
    margin-bottom: -19px;
    width: 200px;
}
.formata-linha {
    line-height: 0px;
}




.list-group-item {
    border-radius: 5px !important;
    margin-top: 2px;
}
.list-group-menu {
    border-radius: 10px !important;
    margin-top: 2px;
    margin-bottom: 1px;
    border: 1px solid #cecece !important;
    padding: 12px;
    font-weight: bold;
}



.form-label {
    font-size: 70%;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.form-control, .form-select {
    font-size: 90%;
}


.btn-success {
    background-color: initial;
    background-image: linear-gradient(-180deg, #00D775, #00BD68);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
    color: #FFFFFF;
    font-weight: bold;
    border: 0;  
  }
  .btn-success:hover {
      background-image: linear-gradient(-180deg, #00BD68, #00D775);
  }




/*************************************/
/* LOGIN
/**************************************/
.login {
    margin-top: 15vh;
}
.form-login {
    background-color: #f7f8f9 !important;
    padding: 15px;
    border: 1px solid #d9d9d9 !important;
}
.btn-login {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--light);
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-login:hover {
    background-color: var(--secondary-color);
    color: var(--light);
}


/*************************************/
/* ACERVO TÉCNICO
/**************************************/
.acervo-icone {
    background-image: url(../img/fundo-acervo-tecnico.png);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;

    width: 130px;
    height: 115px;
    
    color: var(--light);
    padding-top: 45px;
    text-align: center;
    font-size: 200%;
    font-weight: bold;
}
@media screen and (min-width : 320px) and (max-width : 768px) {
	.acervo-icone {
        width: 100px;
        height: 88px;
        padding-top: 30px;
    }
}


/*************************************/
/* UNIDADES
/**************************************/
.unidades-icone {
    background-image: url(../img/fundo-unidades.png);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;

    width: 105px;
    height: 105px;
    
    color: var(--light);
    padding-top: 45px;
    text-align: center;
    font-size: 200%;
    font-weight: bold;
}
@media screen and (min-width : 320px) and (max-width : 768px) {
	.unidades-icone {
        width: 100px;
        height: 88px;
        padding-top: 30px;
    }
}



.colaborador-foto {
    width: 100px;
    height: 100px;
    border-radius: 5rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



 .form-control-busca {
    font-size: 90% !important;
    padding: 5px !important;
    width: calc(100% - 45px);
    margin-top: 2px;
 }


 .capa {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #cecece;
    margin-bottom: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
 }
 .capa-foto {
    background-color: var(--light);
    border: 10px solid var(--light);
    border-radius: 10rem;
    margin-top: -80px;
    width: 100px;
    height: 100px;
    margin-bottom: 0px;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
 }


 .conteudoApp {
    margin-top: 8rem;
    margin-bottom: 6rem;
}
@media screen and (min-width : 320px) and (max-width : 768px) {
	.conteudoApp {
        margin-bottom: 12rem;
    }
}

 .topo {
    background-color: var(--light) !important;
 }
 .footer {
    background-color: var(--light) !important;
 }
 @media screen and (min-width : 320px) and (max-width : 768px) {
	.footer {
        padding-top: 0px;
    }
}


.offcanvas-footer {
    position: relative;
    bottom:  0;
    background-color: var(--primary-color);
    border-radius: 1rem 1rem 0 0;
    height: 60px;
    margin-bottom: -25px;
}

.offcanvas-icone {
    text-align: center;
    width: 65px;
    height: 65px;
    border-radius: 5rem;
    border: 6px solid white;
    margin-top: -30px;
}
.icone-grande {
    font-size: 3rem;
}
.alertaTempo {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.5rem;
    font-weight: bold;
}