.container{
	width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.header-info{
	background: #f1efef;
	padding: 5px;
}
.header-info .flex{
	justify-content: center;
}
.header-info .flex a{
	padding: 10px;
	color: #333;
	text-decoration: none;
	font-weight: bold;
}
.info-numero{
	display: flex;
	justify-content: center;
}
.header-main{
	height: 80px;
}
.header-main .flex{
	height: 80px;
}
.header-main .logo{
	width: 200px;
}
.nav ul{
	display: flex;
	list-style: none;
	flex-wrap: wrap;
}
.nav ul a{
	color: var(--geral);
	text-decoration: none;
}
.nav ul li{
	padding: 10px;
}
@media only screen and (max-width: 768px){
	.mobile-btn{
		display: block;
		color: var(--geral);
		width: 30px;
		height: 30px;
		margin: 20px 20px 0 0;
		float: left;
		position: relative;
		border-top: 1px solid;
		cursor: pointer;
		-webkit-backface-visibility: hidden;
	}
	.mobile-btn::after,.mobile-btn::before{
		content: '';
		display: block;
		height: 1px;
		background: currentColor;
		position: relative;
		transition: transform .2s ease;
		margin-top: 6px;
	}
	.mobile-btn.active{
		border-top-color: transparent;
	}
	.mobile-btn.active::after{
		margin-top: 0;
		top: 2px;
		transform: rotate(45deg);
	}
	.mobile-btn.active::before{
		margin-top: 0;
		top: 2px;
		transform: rotate(135deg);
	}
	.header-main{
		position: fixed;
		width: 100%;
		z-index: 1000;
		background: #fff;
	}
	.nav.mobile-menu{
		width: 80%;
		position: fixed;
		background: var(--geral);
		height: 100%;
		padding:10px;
		opacity: 0;
		visibility: hidden;
		transform: translate3d(60px, 0px, 0px);
		transition: .3s;
		top: 80px;
		right: 0px;
		z-index: 2000;
	}
	.nav.mobile-menu ul{
		display: block;
	}
	.nav.mobile-menu li{
		padding: 10px;
	}
	.nav.mobile-menu a{
		color: #fff;
	}
	.nav.mobile-menu.active{
		opacity: 1;
		visibility: visible;
		transform: translate3d(0px, 0px, 0px);
	}
	.nav.mobile-menu li{
		display: block;
	}
	.header-info{
		display: none;
	}
}
/*---------------section-bg -------------*/
.section-bg{
	background: url('../img/bg.jpg');
	background-size: cover;
	width: 100%;
	position: relative;
	min-height: 100vh;
}
.section-bg:before{
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	background: rgba(0,0,0,.50);
}
.section-bg .item{
	flex: 1 400px;
	position: relative;
}
.title-info{
	width: 900px;
}
.section-bg .title{
	padding: 10px;
}
.section-bg .title h1{
	font-size: 3rem;
	color: #FFF;
}
.section-bg .title h2{
	color: #eee;
	font-size: 1.5rem;
	font-weight: 500;
}
.section-bg .form{
	padding: 10px;
	box-sizing: border-box;
	background: #922B21;
}
.section-bg .form form{
	background: #922B21;
}
.section-bg .form input{
	display: block;
	appearance: auto;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: #fff;
    background: #7B241C;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    width: 100%;
    align-items: flex-start;
    box-sizing: border-box;
    margin: 10px 0;
    border:none;
    border-image: initial;
    padding: 15px;
}
.section-bg ::-webkit-input-placeholder{
	padding-top: 0;
	color: #fff;
}
.section-bg .form .btn{
	width: 100%;
	padding:10px;
	background: #7B241C;
	border: none;
	color: #fff;
}
.title-form{
	font-size: 1.2rem;
	color: #fff;
	font-style: italic;
	text-align: center;
}
@media(max-width: 900px){
	.section-bg .title{
		margin-top: 90px;
	}
	.section-bg .title h1{
		font-size: 2rem;
	}
	.section-bg .title h2{
		font-size: 1.2rem;
	}
}
/*---------------section-solucoes -------------*/
.section-solucoes{
	background: #f1efef;
	padding: 50px 0;
}
.section-solucoes h3{
	font-size: 2em;
	text-align: center;
	color: #333;
	font-weight: bold;
}
.section-solucoes .item{
	flex: 1 200px;
	padding: 10px;
}
.section-solucoes .item h4{
	padding: 10px 0;
	font-size: 1.4rem;
}
.section-solucoes .item i{
	margin-right: 10px;
	color: var(--geral);
}
/*---------------section-protecao-------------*/
.section-protecao{
	padding: 50px;
}
.section-protecao header{
	text-align: center;
}
.section-protecao header h3{
	text-align: center;
	font-size: 2em;
	text-transform: uppercase;
	color: #333;
}
.section-protecao header p{
	text-align: center;
	margin-top: 10px;
}
.section-protecao .contato{
	width: 200px;
	margin: 0 auto;
	padding: 20px;
	background: var(--geral);
	margin-top: 30px;
	text-align: center;
}
.section-protecao .contato a{
	padding: 20px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.section-protecao .contato a i{
	margin-right: 10px;
}

/*---------------footer-------------*/
.footer{
	padding: 20px;
	background: #C0392B;
	color: #fff;
}
.footer-logo{
	width: 200px;
}
.dev a{
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
}
.dev img{
	width: 50px;
}
.section-clientes{
	padding: 50px 0;
}
@media(max-width: 900px){
	.footer-logo{
		margin: 0 auto;
	}
	.copy , .dev{
		text-align: center;
	}
	.dev{
		margin: 0 auto;
	}
}
/*-----------------carousel------------------ */
.carousel{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.carousel > div{
	flex: 1 100px;
}
/*-----------------contato------------------ */
.section-contato{
	padding: 100px 0;
	background: #F1EFEF;
}
.section-contato h3{
	text-align: center;
	font-size: 2rem;
	text-transform: uppercase;
}

.section-contato .flex{
	padding: 50px 0;
	justify-content: center;
}
.section-contato a{
	text-decoration: none;
	color: #333;
	font-weight: bold;
	padding: 10px;
}
/*--------------quem somos---------*/
.section-quem-somos{
	padding: 60px 0;
}
.section-quem-somos h1{
	text-align: center;
	font-size: 2rem;
	color: #333;
	padding: 30px 0;
}
.section-quem-somos p{
	margin-bottom: 20px;
}
/* ATENDIMENTO */
.atendimento{
    z-index: 3000;
    position: relative;
    box-shadow: rgb(0 0 0 / 10%) 0px 12px 24px 0px;
    display: none;
    flex-direction: column;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
    background-color: rgb(255, 255, 255);
    transform: translate3d(0px, 0px, 0px);
    pointer-events: all;
    visibility: visible;
    touch-action: auto;
    position: fixed;
    right: 20px;
    left: auto;
    bottom:50px;
    transition: .1s;
    max-height: 382px;
    transition: .2s all;

}
.header-atendimento{
	 background: rgb(9, 94, 84);
    color: rgb(17, 17, 17);
    float: left;
    -webkit-box-align: center;
    align-items: center;
    padding: 24px 20px;
    flex-wrap: wrap;
    width: 100%;
}

.atendimento  .header-atendimento figure{
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	float: left;
	margin-right: 10px;
}
.atendimento  .header-atendimento figure img{
	border-radius: 50%;
}
.atendimento  .header-atendimento b{
	color: #fff;
	line-height: 2;
	font-size: 1em;
}
.atendimento  .header-atendimento .at{
	font-size: .9em;
	color: #ccc;
}
.atendimento #teste{
	background: url('../img/bg-zap.jpg');
	padding: 20px 20px 20px 10px;
	position: relative;
	overflow: auto;
	height: 200px;
	background-size: cover;
	
}

.atendimento.active{
	display: block;
	opacity: 1;
	  transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
}
.atendimento .p{
	background: #fff;
	padding: 10px;
	line-height: 2;
	max-width: 200px;
	border-radius: 5px;
	position: relative;
}
.carregando{
	position: absolute;
	width: 100%;
	height: 100%;
	background: red;
	z-index: 1000;
}
.atendimento .white{
	background: #fff;
	height: 80px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left:0;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
}
.atendimento .white .btn{
	background: #095E54;
	max-width: 100%;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 30px;
	display: block;
	padding: 10px;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
.button{
	position: fixed;
	width: 20px;
	height: 20px;
	right: 30px;
	bottom: 6px;
	z-index: 4000;
	background: #fff;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	padding: 10px;
	cursor: pointer;
}
.button i{
	 color: rgb(9, 94, 84);
	font-size: 1.5em;
}

/* Loading */
.typing_loader {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	-webkit-animation: typing 1s linear infinite alternate;
	-moz-animation: Typing 1s linear infinite alternate;
	-ms-animation: Typing 1s linear infinite alternate;
	animation: typing 1s linear infinite alternate;
	position: relative;
	left: 30px;
	background: #fff;
}
@-webkit-keyframes typing{
    0%{
        background-color: rgba(0,0,0, 1);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,0.2),
                    24px 0px 0px 0px rgba(0,0,0,0.2);
      }
    25%{
        background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(0,0,0,2),
                    24px 0px 0px 0px rgba(0,0,0,0.2);
    }
    75%{ background-color: rgba(0,0,0, 0.4);
        box-shadow: 12px 0px 0px 0px rgba(255,255,255,0.2),
                    24px 0px 0px 0px rgba(255,255,255,1);
      }
}



