@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);
@import url("https://lovatel.com.br/plugins/plugins.css");

/*
CodeWork v:4.0 beta - HTML & CSS Framework

* Code Manager and streamlined, reusable web structure.
* Copyright (c) 2015-2016 Reinaldo "Ramon" José Nunes

* Version: 4.0 (11/01/2016)
* Requires: Web browsers that support the new features of HTML5 and CSS3.

Agency: Lovatel Agência Digital / http://lovatel.com.br
Edited: 06/05/2016

*/

/**** CSS RESET by Eric Meyer ******/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size:1em;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    background:#fff;
	line-height: 1;
}
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Predefinitions */
figure{
    line-height:0px;
}
img{
    width:auto;
    max-width:100%;
    height:auto;
    display:block;
}
select{ /* desativa o bottão padrão dos selects */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ie-appearance: none;
}
.transition{
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
a{
    text-decoration:none;
}
:focus, :visited{
    outline: 0;
}
textarea{
    resize:none;
}
*{
   box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   -o-box-sizing: border-box;
}

.clear{
    clear:both;
}
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ALIGNS */
.left{
    float:left;
}
.right{
    float:right;
}

/* Contents and Grids */
.main{
    margin:0 auto;
    display:inherit;
    max-width:64em; /* 1024px */
    width:100%;
    height:100%; /* or auto */
}

/* forms and buttons */
form{
    width:100%;
    height:auto;
    display:table;
}
.input_field, select{
    width:100%;
    height:auto;
    padding:15px;
    color:#fff;
    border:1px solid #eee;
    font-size:1em;
}
    .input_double{
        width:49%;
    }
    .input_triple{
        width:32%;
    }
    .input_msg{
        height:120px;
    }
    /* buttons */
    .btn{
        background:#ddd;
        padding:10px 25px;
        width:auto;
        height:auto;
    }
    .btn:hover{
        background:#ccc;
    }
    
    /* placeholders */
    ::-webkit-input-placeholder {
	   color: #7f7f7f;
    }
    :-moz-placeholder {
        color: #7f7f7f;
        opacity: 1;
    }
    ::-moz-placeholder {
        color: #7f7f7f;
        opacity: 1;
    }
    :-ms-input-placeholder {
        color: #7f7f7f;
    }

/* Tipografia */
h1,h2,h3,h4,h5,h6,a,span,p,select,button,input,textarea{
    font-family:'Open Sans',sans-serif;
}
p{
    font-size:12px;
    margin-bottom:15px;
    line-height:20px
}
p strong{
    font-weight:700;
}
p:last-child{
    margin-bottom:0px;
}

/* mapas e iframes */
.box_iframe{
    position: relative;
    padding-bottom: 55%; 
    height: 0;
    width:100%;
}
.box_iframe iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
}

/* navigation menu icon */
/* bar */
button.btn-nav{
    border:0px;
    cursor:pointer;
    width:100%;
    display:table;
    padding:0px 20px;
    height:50px;
    background:#212E63;
    position:relative;
    margin:0 auto;
    display:none;
}
button.btn-nav > span{
    font-family: 'Open Sans', sans-serif;
    font-size:13px;
    font-weight:600;
    color:#fff;
    margin-bottom:0px;
}
    .nav-toggle{
        float:right;
        position:relative;
        margin-top:-0px;
        cursor: pointer;
        display:block;
        height:18px;
        position: relative;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        width:30px;
        -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle span{
        background: #fff;
        height:2px;
        position: absolute;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        width: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle span { left: 0; }
    
    .nav-toggle span:nth-child(1) { top: 0px; }
    
    .nav-toggle span:nth-child(2) { top: 7px; }
    
    .nav-toggle span:nth-child(3) { top: 14px; }
    
    button.btn-nav.open .nav-toggle span:nth-child(1) {
        -webkit-transform: rotate(45deg) translate(5px,5px);
        -ms-transform: rotate(45deg) translate(5px, 5px);
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    button.btn-nav.open  .nav-toggle span:nth-child(2) { opacity: 0}
    
    button.btn-nav.open  .nav-toggle span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(5px, -5px);
        -ms-transform: rotate(-45deg) translate(5px, -5px);
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
/* pagination */
.bloco_pagination{
    width:100%;
    margin-top:15px;
    display:inline-table;
    height:auto;
}
.pagination{
    display:table;
    margin:0 auto;
    height:auto;
    width:auto;
    margin-bottom:15px;
}
.pagination li{
    float:left;
    font-size:14px;
    display:table;
    margin:0px 2px;
}
.pagination li a{
    color:#777;
    float:left;
    height:15px;
    width:20px;
    text-align:center;
    display:block;
    text-decoration: none;
    border-radius:3px;
    font-weight:bold;
    padding:8px 5px;
    background:#fff;
    border:1px solid #e5e5e5;
    
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
.pagination li a:hover, .pagination li.current a{
    background:#aaa;
    color:#fff;
}

/* message alert */
.box_result{
    width:100%;
    height:auto;
    display:table;
    padding:50px 20px;
    color:#D7640F;
    text-align:center;
}
.box_result a{
    color:#F3AD3A;
    text-decoration: none;
}
.full_message{
    position:fixed;
    overflow: hidden;
    width:100%;
    height:100%;
    top:0%;
    bottom:0%;
    left:0%;
    right:0%;
    z-index:-1;
    opacity:0;
    background:rgba(0,0,0,0.8);
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
.full_message.show{
    z-index: 99999;
    opacity:1;
}
.box_message{
    margin:0 auto;
    width:90%;
    position:relative;
    top:50%;
    margin-top:-90px;
    max-width:500px;
    height:180px;
    background:#fff;
    padding:30px 25px;
    border-radius:6px;
    opacity:0;
    z-index: -55555;
    transform: scale(0.5) rotate(0deg);
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
.full_message.show .box_message{
    opacity:1;
    z-index:55555;
    transform: scale(1) rotate(0deg);
}
.box_message img{
    margin:0 auto;
    width:61px;
    height:61px;
    display:table;
    margin-bottom:15px;
}
.box_message p{
    width:100%;
    display:table;
    text-align:center;
    color: #333;
}
.box_message .bt_close {
    width: 40px;
    height: 40px;
    display: table;
    background: #1b1b1b url("../img/icon_close.png") no-repeat center center;
    background-size: 40%;
    position: absolute;
    top: 0px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    right: 0px;
    border: 0px;
    cursor: pointer;
}
.box_result{
    width:100%;
    padding:30px;
    height:auto;
    display:table;
    color:#111111;
    font-size:15px;
    text-align:center;
    background:#F3AD3A;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-top:25px;
}
/* loading message */
.spinner{
    display:none;
}
.spinner {
  margin: 40px auto 15px;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 14px;
  height: 14px;
  background-color: #D2880D;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/* Slides and Gallerys */
#banner .owl-pagination {
    margin-top: -40px;
    z-index: 22;
    position: relative;
}
#banner .item {
    line-height: 0px;
    border-radius:5px;
    overflow: hidden;
    position: relative;
}

#gallery .item {
    display: table;
    margin:0px 5px;
}


/* HEADER, FOOTER AND PAGE STYLES */
header,footer{
    width:100%;
    height:auto;
}

header{
    display:table;
    height: 119px;
    background: url("../img/bg_cabecalho.png") repeat-x center top;
    border-bottom:4px solid #E9750E;
}
    #logo{
        float:left;
    }
    nav#menu{  
        margin-top:32px;
        float:right;
    }
    nav#menu li{
        float:left;
    }
    nav#menu li a{
        position:relative;
        font-size:13px;
        color:#777;
        display:table;
		font-weight:600;
        padding:35px 15px;
        
        text-transform: uppercase;
    }
   
    nav#menu li:hover a:after,
    nav#menu li.ativo a:after{
        content: "";
        display:table;
        position:absolute;
        bottom:-1px;
        left:50%;
        margin-left:-3.5px;
        vertical-align: middle;
        margin-right: 10px;
        width: 0; 
        height: 0; 

        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #E9750E;
    }
    nav#menu li:hover a{
        color:#222;
    }
    nav#menu li.invisible{
        display:none;
    }
    

    
footer{
    width:100%;
    display:table;
    padding-bottom:30px;
}
footer .main{
    border-top:5px solid #bbb;
}
    
#index footer .main{
    border-top:0px;
}
    #marcas{
        width:100%;
        height:auto;
        display:table;
        padding:50px 0px;
    }
    #marcas a{
        width:20%;
        display:table;
        float:left;
        padding:0px 20px;
        border-right:1px solid #bbb;
    }
    #marcas a:last-child{
        border-right:0px;
    }
    #marcas a img{
        display:table;
        margin:0 auto;
    }

    #development span{
        color:#909090;
        font-size:12px;
        line-height:22px;
    }
    #development span a{
        color:#4F4F4F;
    }
    
    
  
  #banner{
    z-index: 1;
    position:relative;
    margin:0 auto;
    margin-bottom:0px;
    max-width:100%;
    margin-bottom:-10px;
}
#banner .owl-pagination {
    margin-top: -70px;
    z-index: 22;
    float:right;
    margin-right:20px;
    position: relative;
}
#banner .item {
    line-height: 0px;
    border-radius:0px;
    overflow: hidden;
    position: relative;
}
#banner .item img{
    width:auto;
}
#banner .owl-theme .owl-controls .owl-page span{
	display: block;
	width: 8px;
	height:8px;
	margin:0px 12px;
	border-radius: 50%;
    background:none;
    transition-duration:0.2s;    
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
    
}
#banner .owl-theme .owl-controls .owl-page span:after{
    content:'';
    width:16px;
    height:16px;
    display:table;
    border:2px solid #bbb;
    border-radius:50%;
    margin-left:-6px;
    margin-top:-6px;
    position:absolute;
    transition-duration:0.2s;    
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}

#banner .owl-theme .owl-controls .owl-page.active span,
#banner .owl-theme .owl-controls.clickable .owl-page:hover span{
	background:#D2880D;
}
#banner .owl-theme .owl-controls .owl-page.active span:after,
#banner .owl-theme .owl-controls.clickable .owl-page:hover span:after{
    border-color:#D2880D;
}
#banner li div{
    width:50%;
    display:table;
}

#banner li div.right{
    margin-top:15%;
    text-align:center;
}
#banner li div.right img{
    margin:0 auto;
    width:auto;
    display:table;
}

  
  
nav#menu_index{
    display:table;
    width:100%;
    float:left;
}
nav#menu_index li{
    width:32.666%;
    margin-right:1%;
    display:table;
    float:left;
    margin-bottom:15px;
    border-radius:6px;
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
nav#menu_index li:nth-of-type(3n){
    margin-right:0px;
}
nav#menu_index li a{
    padding:20px 30px 20px 60px;
    display:table;
    font-weight:600;
    color:#FFF;
    width:100%;
}
nav#menu_index li a span{
    padding-left:0px;
    top:-1px;
    position:relative;
    font-size:11px;
    font-weight:normal;
    color:#fff;
}
nav#menu_index li:last-child a{
    color:#ddd;
}
nav#menu_index li a span.fone_index{
    font-size:14px;
}
nav#menu_index li:nth-of-type(2):hover{
    background:#303030;
}
nav#menu_index li:nth-of-type(2){
     background:#E9750E url("../img/icon_sgs.png") no-repeat left 20px center;
}
nav#menu_index li:nth-of-type(2):hover{
    background:#636363 url("../img/icon_sgs.png") no-repeat left 20px center;
}
nav#menu_index li:nth-of-type(3){
     background:#303030 url("../img/icon_fone.png") no-repeat left 20px center;
}
nav#menu_index li:nth-of-type(3):hover{
    background:#303030 url("../img/icon_fone.png") no-repeat left 20px center;
}
nav#menu_index li:nth-of-type(1){
     background:#E9750E url("../img/icon_chamado.png") no-repeat left 20px center;
}
nav#menu_index li:nth-of-type(1):hover{
    background:#636363 url("../img/icon_chamado.png") no-repeat left 20px center;
}


.box_index{
    float:left;
    padding:60px 30px;
    width:32.666%;
    margin-right:1%;
    height:150px;
    min-height:150px;
    display:table;
    background:url("../img/box_index.png") repeat-x center bottom;
    border-bottom: 5px solid #CFD0D0;
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
.box_index:nth-of-type(3n){
    margin-right:0px;
}
.box_index p{
    padding-left:20px;
    font-size:12px;
    color:#232545;
    line-height:16px;
    position:relative;
}
.box_index p strong{
    font-size:20px;
    font-weight:700;
}
.box_index:hover{
    background:url("../img/box_index_2.png") repeat-x center top;
    border-bottom-color:#D2880D;
}

.box_index p:before{
    content: "";
    display:table;
    position:absolute;
    top:8px;
    left:0px;
    vertical-align: middle;
    width: 0; 
    height: 0;     
    border-top: 7px solid transparent;
    border-left: 7px solid #E9750E;
    border-bottom: 7px solid transparent;
}

.content{
    padding:30px 0px;
}

.titulos{
    font-size: 20px;
    font-weight: 700;
    color:#232545;
    position:relative;
    width:100%;
    display:table;
    padding-left:15px;
    margin-bottom:20px;
}
.titulos:before{
    content: "";
    display: table;
    position: absolute;
    top:3px;
    left: 0px;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-left: 7px solid #E9750E;
    border-bottom: 7px solid transparent;
}

.diretrizes{
    width:32%;
    padding:30px;
    display:table;
    float:left;
    min-height:190px;
    height:190px;
    margin-top:15px;
    margin-bottom:25px;
    margin-right:2%;
    background:#eee;
}
.diretrizes:nth-of-type(3n){
    margin-right:0px;
}

/* PRODUTOS E SERVIÇOS */
nav#menu_open_close{
     margin:0;
     padding:0;
 }   
 
nav#menu_open_close li{
     float:left;
     width:100%;
     display:table;
     box-sizing: border-box;
     position:relative;
     margin-bottom:5px;
 }
 nav#menu_open_close > ul > li:after{
    content: "";
    display: table;
    position: absolute;
    top:25px;
    right:20px;
    margin-left: -3.5px;
    vertical-align: middle;
    margin-right: 10px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #E9750E;
 }
 nav#menu_open_close li span{
     position:relative;
     background:#eee;
     border-top:1px dotted #ccc;
     border-bottom:1px dotted #ccc;
     padding:20px 20px;
     width:100%;
     display:table;
     box-sizing: border-box;
     color:#212E63;
     font-weight:700;
     font-size:16px;
     cursor: pointer;
     
     transition-duration:0.2s;
     -webkit-transition-duration:0.2s;
     -moz-transition-duration:0.2s;
 }
 nav#menu_open_close li:hover span,
 nav#menu_open_close li.ativo span{
     background:#DBDBEA;
 }
 
 nav#menu_open_close li span::after{
     content:'';
     position:absolute;
     right:0%;
     margin-right:10px;
     width:25px;
     height:25px;
     top:50%;
     margin-top:-12px;
     background:url("../img/sprites.png") no-repeat left -171px top -4px;
     overflow: hidden;
 }
 nav#menu_open_close li:hover span::after,
 nav#menu_open_close li.ativo span::after{
     background:url("../img/sprites.png") no-repeat left -196px top -4px;
 }

div.conteudo_li{
    display:none;
    width:100%;
    padding:20px;
}

div.conteudo_li p{
	text-align:justify;
}

nav#menu_open_close li p{
    width:80%;
    float:left;
}

ul.itens{
    width:80%;
    display:table;
    margin-bottom:15px;
}
ul.itens li{
    width:100%;
    float:left;
    font-family:'Open Sans',sans-serif;
    font-size:12px;
    line-height:20px;
    padding-left:20px;
    background:url("../img/bullet.png") no-repeat left center;
}

.foto_produto{
    float:right;
    width:18%;
    margin-left:15px;
    margin-bottom:15px;
}

h5{
    font-weight:700;
    font-size:15px;
    color:#333;
    width:100%;
    height:auto;
    display:table;
    float:left;
    margin-top:20px;
    margin-bottom:20px;
}

.link_cliente{
    border:3px solid #ddd;
    float:left;
    width:19%;
    margin-right:1.25%;
    height:auto;
    display:table;
    margin-bottom:10px;
}
.link_cliente img{
    width:100%;
}
.link_cliente:nth-of-type(5n){
    margin-right:0px;
}

.link_cases{
    border:3px solid #ddd;
    float:left;
    width:24%;
    margin-right:1.333%;
    height:auto;
    display:table;
    padding:25px;
    margin-bottom:20px;
    
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
.link_cases img{
    width:100%;
    margin-bottom:10px;
}
.link_cases:nth-of-type(4n){
    margin-right:0px;
}
.link_cases h6{
    width:100%;
    font-weight:700;
    color:#444;
    font-size:13px;
    height: 45px;
    min-height:45px;
}
.link_cases span{
    width:100%;
    display:table;
    color:#666;
    font-size:12px;
}

.link_cases:hover{
    border-color:#F3AD3A;
}

#mapa_abrangencia{
    width:100%;
    height:auto;
    display:table;
}
#mapa_abrangencia img{
    margin:0 auto;
    max-width:auto;
    display:table;
}
#lista_abrangencia{
    display:none;
}

#info_contato{
    float:left;
    width:34%;
    padding:25px;
    background:#ddd;
}

#info_contato p strong{
    font-weight:700;
    color:#222;
}
#info_contato p a{
    color:#222;
}
#info_contato a.titulos{
    font-size:14px;
    margin-top:15px;
}
#info_contato a.titulos:before{
    top:1px;
}

#lado_form{
    width:62%;
    display:table;
    float:right;
}

.input_field{
    background:#F0F0F2;
    font-size:12px;
    color:#4A4A4A;
    padding: 12px 17px;
    margin-bottom:5px;
}
.input_double{
    width:49.6%;
}
#estado, #prioridade, #modalidade{
    background:#F0F0F2 url("../img/set_down.png") no-repeat right 15px center;
}
.msg{
    height:190px;
    min-height:190px;
}

#btn_send{
    float:right;
    border:0px;
    width:100px;
    height:39px;
    display:table;
    cursor:pointer;
    background:url("../img/bt_enviar.png") no-repeat left top;
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
#btn_send:hover{
    background:url("../img/bt_enviar.png") no-repeat left bottom;
}

#btn_send.chamado{
    width:160px;
    background:url("../img/bt_chamado.png") no-repeat left top;
}
#btn_send.chamado:hover{
    background:url("../img/bt_chamado.png") no-repeat left bottom;
}


.foto_case{
    float:left;
    margin-right:20px;
    margin-bottom:5px;
}

.alert {
  padding: 20px 30px;
  background: #ddd;
  color: #222;
  font-weight: bold;
}

.foto_case{
        width:100%;
        margin-right:0px;
        padding:25px;
        margin-bottom:25px;
        border:2px solid #ddd;
    }
    .foto_case img{

        margin:0 auto;
        display:table;
    }
    
    #cases p{
        text-align:justify;
    }