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

:root {

	--light: #f9f9f9;
	--dark: #313131;

	--primary-color: #094f80;
    --secondary-color: #116b9a;
    
    --primary-font: 'Roboto', sans-serif;;
    --secondary-font: 'Nunito', sans-serif;
}

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


/* ALTERAÇÃO DE CORES BOOTSTRAP
******************************/

/* BOTÕES */
.btn {
	
}
.btn-sm {
	font-size: 70% !important;
}
.btn-primary, .btn-padrao {
	background-color: var(--primary-color) !important;
	color: var(--light) !important;
}
.btn-primary:hover {
	background-color: var(--primary-color) !important;
}
.btn-secondary {
	background-color: var(--danger) !important;	
	color: var(--light) !important;
	font-weight: bold;
	font-size: 70% !important;
}
.btn-secondary:hover {
	background-color: var(--primary-color) !important;
	color: var(--light) !important;
}


/* EFEITO BOTÃ•ES */
.btn, .btn-primary, .btn-secondary, .btn-success, .btn-danger, .btn-warning, .btn-info, .btn-light, .btn-dark {
	border: none;
	transition: all 400ms;
}
.btn:hover, .btn-primary:hover, .btn-secondary:hover, .btn-success:hover, .btn-danger:hover, .btn-warning:hover, .btn-info:hover, .btn-light:hover, .btn-dark:hover {
	border: none;
	-moz-transform: translate(5px);
	-ms-transform: translate(5px);
	-o-transform: translate(5px);
	-webkit-transform: translate(5px);
	transform: translate(5px);
	transition: all 300ms;
}
.btnMenu {
	font-size: 80%;
}

/* FUNDOS */
.bg-primary { 
	background-color: var(--primary-color) !important;
	
}
.bg-primary h1,.bg-primary h2,.bg-primary h3,.bg-primary h4 { 
	color: var(--secondary-color) !important;
}
.bg-secondary { 
	background-color: var(--secondary-color) !important;
	color: var(--light) !important;
}
.bg-primary h1 {
	color: var(--light) !important;
}


/* TEXTOS ******************
****************************/
.text-light {
    color: var(--light) !important;
}
.text-primary { 
	color: var(--primary-color) !important;
}
.text-secondary { 
	color: var(--secondary-color) !important;
}

/* PADRÃO HTML ***************
******************************/
::selection {
    color: var(--light) !important;
    background: var(--primary-color) !important;
}
strong, b {
    color:inherit;
	font-weight:bold;
}
a, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}
html {
	scroll-behavior: smooth;
}

/* PADRÃO TITULOS ************
******************************/
h1 {
	color: var(--primary-color);
	padding: 0;
	margin: 0;
	line-height: 1.8rem !important;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
h4 {
	color: var(--primary-color) !important;
	margin-bottom: 1.1rem;
}
h5 {
	letter-spacing: 3px;
	text-transform: uppercase;
	font-size: 120%;
	font-weight: 300;
}

.titulo {
	color: var(--primary-color);
	font-size: 35px;
	line-height:35px;
	letter-spacing: normal;
	word-spacing: 0px;
	margin: 0px;
	padding: 0px;
	font-weight: 600;
}








/* MENU ********************
****************************/
.nav-item a{
    color: var(--light) !important;
    font-weight: bold;
    border-bottom: 1px solid transparent;
}
.nav-item a:hover{
    color: var(--light) !important;
    font-weight: bold;
    border-bottom: 1px solid var(--secondary-color);
}
.navbar{
    margin-top:0;
    top:45px;
    z-index: 9999;
}


/* DEPOIMENTOS *************
****************************/
.depoimentos {
      background: rgb(41,52,67);
      background: linear-gradient(180deg, rgba(41,52,67,1) 0%, rgba(42,61,88,1) 100%);
      color: #fff;
}
.depoimentos a {
          color: #93A0B1 !important;
}
.depoimento {
    text-align: center;
    padding: 50px;
    margin-top: 100px;
}
@media screen and (max-width: 780px) {
    .depoimento {
        margin-top: -50px;
    }
}




/* WAVE ********************
****************************/
.wave {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
@keyframes animateWave {
    0% {
      transform: scale(1,0);
    }
    100% {
      transform: scale(1,1);
    }
  }
  .wave > svg {
    display: block;
    transform-origin: bottom;
    animation: animateWave 1000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  }

/* FORM ********************
****************************/
input {
    outline: none;
    margin: 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    font-family: inherit;
}

.input-padrao {
    line-height: 50px;
    background: #fafafa;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 16px;
    color: #666;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: none;
    width: 100%;
}

.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio-container input:checked ~ .checkmark {
    background-color: #e5e5e5;
}

.radio-container input:checked ~ .checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #57b846;
}
.checkmark {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #e5e5e5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.input-group {
    position: relative;
    margin-bottom: 22px;
}

.input-group-icon {
    position: relative;
}

.logo {
    max-width: 150px;
}



/* 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
}




.numeros {
    width: 100%;
    padding-top: 25%;
    padding-bottom: 25%;
}


.banner {
    top: -105px;
    padding-top: 200px;
    background-blend-mode: multiply;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: top center;
    background-repeat:no-repeat;
}
.linha {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: var(--secondary-color);
    height: 3px;
    width: 100px;
}




.icone {
    padding:3.5rem !important;
    font-size: 2.0rem;
    border-radius: 30rem;
    color: #fff;
}

#contador {
    margin-top: -50px;
}


@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
.produto-img {
    transform: translatey(0px);
	animation: float 3s ease-in-out infinite;
}



.img-baixo {
    display: flex;
    align-items: flex-end;
    text-align: center;
}


.cliente {
    width: 100%;
    border-radius: 30rem;
    background-repeat: no-repeat;
    background-size: cover;
}




.vantagens .nav {
	border:none !important;
	display: block !important;
	list-style:none !important;
}

.nav.vantagens {
	border:none !important;
    display: block !important;
    display: block;
    background-color: var(--primary-color);
    padding: 1rem 1.5rem 1.2rem 1.5rem ;
}
.vantagens li.nav-item {
    display: block !important;
    border-bottom: 1px solid #304954;
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
    padding-left: 1rem !important;
}
.vantagens li.nav-item:hover {
    background-color: #304954;
    text-decoration: none !important;    
}
.vantagens li.nav-item a {
    text-decoration: none !important;
    cursor: pointer !important;  
}
.conteudo-principal {
	margin-bottom: 10rem !important;
	
}


.noticia-capa {
	width:100% !important;
	height: 300px !important;
}



/* SERVIÇOS */
.imgServico, .servico {
    width: 100%;
    height: 450px;
	opacity: 0.95;
}
.servico {
  position: relative;
}
@media screen and (max-width: 1440px) {
	.imgServico, .servico {
		height: 350px;
	}
}
@media screen and (max-width: 1024px) {
	.imgServico, .servico {
		height: 300px;
	}
}
@media screen and (max-width: 960px) {
	.imgServico, .servico {
		height: 250px;
	}
}
@media screen and (max-width: 768px) {
	.imgServico, .servico {
		height: 300px;
	}
}


.servicoConteudo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 49, 70,0.9);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* transition effect. not necessary */
  transition: opacity .2s, visibility .2s;
}

.servico:hover .servicoConteudo {
  visibility: visible;
  opacity: 1;
}

.servicoTexto {
  transition: .2s;
  transform: translateY(1em);
}

.servico:hover .servicoTexto {
  transform: translateY(0);
}














.acesso {
	background-color: var(--primary-color) !important;
	color: var(--light);
	font-size: 18px;
	font-weight: 500;
	padding: 1rem;
	border-radius: 0.5rem;	
	margin: 0 auto;
	margin-bottom: 1rem;
	vertical-align: middle;
}
.acesso:hover {
	background-color: var(--secondary-color) !important;
	color: var(--light);
}
.acesso i {
	font-size: 30px;
	margin: 0 auto;
}





.conteudo {
	margin-top: 50px;
}




/* OWL CAROUSEL **************
******************************/
.owl-theme .owl-dots,
.owl-theme .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent
}
.owl-theme {
	margin-top: 10px;
}
.nav-next {
	top: 50%;
	right: 0;
	margin-right: -50px;
	position: absolute;
	font-size: 200%;
	color: var(--primary-color);
}
.nav-prev {
	top: 50%;
	left: 0;
	margin-left: -50px;
	position: absolute;
	font-size: 200%;
	color: var(--primary-color);
}
@media screen and (max-width: 780px) {
	.nav-next {
		display: none;
	}
	.nav-prev {
		display: none;
	}
}
.nav-prev:hover, .nav-next:hover {
	color: var(--secondary-color);
}
.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}
.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 7px;
    background: var(--primary-color) !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
      background: var(--secondary-color) !important;
}
.owl-theme .owl-controls .owl-page {
      display: inline-block;
}
.owl-carousel.owl-nav-cardapio {
    padding-top: 10px !important;
}

/* WHATSAPP ******************
******************************/
.whatsapp-button {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 45px;
	z-index: 1020;
	height: 45px;
	border: none;
	box-shadow: 0 0 0 0 #00d8563b;
	border-radius: 100px;
	padding: 3px 6px;
	background-color: #25D366;
	border: 1px solid #25D366;
	cursor: pointer;
	-webkit-animation: pulse 1.45s infinite cubic-bezier(0.44, 0, 0, 1);
	-moz-animation: pulse 1.45s infinite cubic-bezier(0.44, 0, 0, 1);
	-ms-animation: pulse 1.45s infinite cubic-bezier(0.44, 0, 0, 1);
	animation: pulse 1.85s infinite cubic-bezier(0.66, 0, 0, 0.8);
}

/******************************
RODAPÃ‰
*******************************/
.rodape {
	background-color: var(--primary-color) !important;
	color: var(--light) !important;
	margin-top: 2rem;
}
.rodape h5{
	color: var(--secondary-color) !important;
}
.rodape a {
	color: var(--light) !important;
}

.menu-logo {
	top: 1rem !important;
	position: absolute !important;
	max-width: 100px !important;
	max-height: 50px !important;
}
.logoMenu {
    max-height: 40px;
    display: inline-block;
    line-height: 1;
}


/* PRELOADER NOVO */
[data-sc=preloader] {
	background: #fff url('../imagens/preloader.gif') no-repeat center !important;
}


/******************************
SECTION INSTAGRAM
*******************************/
.instagram {
	margin-left: 100px;
}
.img-instagram {
	position: absolute;
	z-index: 9999;
	float: left;
	left: -300px;
	top: -200px;
}
@media screen and (max-width: 780px) {
	.instagram {
		margin-left: 0px;
	}
	.img-instagram {
		position: relative;
		z-index: 9999;
		float: left;
		left: -100px;
		top: 0px;
	}
}
  
/******************************
FORMULÃRIOS
*******************************/
input {
	outline: none;
	margin: 0;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	font-size: 14px;
	font-family: inherit;
}
.input-radio {
	width: 1.5em;
	height: 1.5em;

}
  
.input-padrao {
	line-height: 50px;
	background: #fafafa;
	-webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 0 20px;
	font-size: 16px;
	color: #666;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border: none;
	width: 100%;
}
.input-quantidade {
	line-height: 30px;
	font-size: 1rem;
	background: #fafafa;
	padding: 5px;
	color: #666;
	border: none;
	width: 100%;
	max-width: 90px !important;
	text-align: center !important;
	-webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 0px;
	margin-top: -10px;
}
.produtos-lateral {
	margin-bottom: 20px;
	padding: 20px;    
	
	border-right: 1px solid #f3f3f3;
}
  
/******************************
MODAL
*******************************/
.modal-opcao {
	background-color: #fafafa !important;
	padding: 10px 20px;
	margin-bottom: 1px;
}
.modal-dialog{
	overflow-y: initial !important
}
.modal-body{
	max-height: 420px;
	overflow-y: auto;
}
  
  
  
  
.topo-logo {
	max-width: 150px;
}



/* MENU PRINCIPAL ************
******************************/
#sidebar {
	width: 300px;
	position: fixed;
	top: 0;
	left: -300px;
	height: 100vh;
	z-index: 1250 !important;
	background: #fff;
	color: var(--dark);
	transition: all 0.3s;
	/*overflow-y: scroll;*/
	box-shadow: 3px 3px 3px rgba(156, 105, 105, 0.2);
}
#sidebar.active {
	left: 0;
}
.sidebar-header .logo-app {
	max-width: 40%;
}
.sidebar-header #dismiss {
	max-width: 40px !important;
	max-height: 35px !important;
	padding:0.6rem 0.8rem !important;    
	background: var(--secondary-color) !important;
	color: var(--primary-color) !important; 
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
#dismiss:hover {
	background: #fff;
	color: var(--primary-color);
}
.overlay {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 998;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.overlay.active {
	display: block;
	opacity: 1;
}
#sidebar .sidebar-header {
	padding: 20px;
	padding-top: 60px !important;
	background: var(--primary-color);
	color: var(--light);
}
#sidebar ul p {
	color: #000;
	padding: 10px;
}
#sidebar ul li a {
	padding: 10px 20px;
	font-size: 0.9em;
	display: block;
	text-transform: uppercase;
}
#sidebar ul li a:hover {
	color: var(--light);
	background: var(--primary-color);
}
#sidebar ul li.active>a,
a[aria-expanded="true"] {
	color: #000;
	background: var(--primary-color);
}
a[data-toggle="collapse"] {
	position: relative;
}
.dropdown-toggle::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
ul ul a {
	font-size: 0.9em !important;
	padding-left: 30px !important;
	background: var(--secondary-color);
}
#sidebarCollapse {
	width: 40px;
	height: 40px;
	font-size:1rem !important;
	color: var(--primary-color)!important;
	background-color: var(--light)!important;
	cursor: pointer;
	border: none;
}
#sidebarCollapse span {
	width: 100%;
	height: 2px;
	margin: 0 auto;
	display: block;
	background: #555;
}
#sidebarCollapse.active span {
	transform: none;
	opacity: 1;
	margin: 5px auto;
}
.nav-item-icone {
	float: left !important;
}

.logoMenu {
    max-height: 40px;
    display: inline-block;
    line-height: 1;
}
.logoMenuBarra {
    max-height: 50px;
}
.menu-carrinho-login {
    margin-left: 1px !important;
}
.menu-carrinho {
    padding: 0 !important;
}

#sidebar .sidebar-header {
    background-color: var(--light) !important;
    color: var(--dark) !important;
}

.menu-container {
	width: 100%;
	background-color: var(--light) !important;
	color: var(--dark) !important;
	position: fixed;
	left: 0 !important;
	top: 0 !important;
	z-index:9;
	box-shadow: 1px 1px 1px rgba(156, 105, 105, 0.1);
}
.menu-conteudo {
	height: 72px;
}
.menu-base {
	padding: 0.5rem 1rem;
	font-weight: bold;    
	font-size: 80%;
	float:left !important;
}
.menu-base-itens {
	padding: 1rem;
	font-weight: bold;    
	font-size: 80%;
	float:left !important;
}
.menu-carrinho {
	margin-left: auto;
	padding: 1rem;    
	font-size: 120%;
	float:right !important;
}
.menu-carrinho-login {
	margin-left: auto;
	padding: 0.75rem;
	font-size: 120%;
	float:right !important;
}
.menu-itens {
	display: inline-block;
	margin-left: 1rem;
}
.menu-itens-logo {
	max-height: 2rem;
}
section {
	margin-top: 1.5rem !important;
}
.tooltip-menu {
	font-size: 80% !important;
}
.wtoggle {
	cursor:pointer !important;
}

.line {
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #ddd;
	margin: 0px;
}
.lineRodape {
	width: 100% !important;
	height: 1px;
	border-bottom: 1px solid #ddd;
	margin: 0px;
}


.sticky-top {
	z-index: 8!important; /*8 para ficar por sobre o label redondo faixa Desconto que Ã© 7 - deixa o 9 para o login togle*/
}


/* FAQ */
.faq .card-header .btn {  
    background: none;
}


.blog {
	height: auto !important;
}
.blog-capa {
	max-height: 150px;
	object-fit: cover;
	object-position: top center;
}