/* 
    Created on : 09/02/2016, 14:13:33
    Author     : Edivaldo Moreira Martins
*/

/*-------------------------------PRIMEIRA DOBRA HEADER------------------------*/

.content{
    width: 80%; /*Largura do conteúdo*/
}

.main_header{
    padding: 20px 0; /*Margens interna do cabeçalho*/
    margin-bottom: 20px;
    background-color: #8A4B08; /*cor do fundo do cabeçalho*/
		-webkit-box-shadow: 9px 7px 5px rgba(50, 50, 50, 0.77);
		-moz-box-shadow:    9px 7px 5px rgba(50, 50, 50, 0.77);
		box-shadow:         9px 7px 5px rgba(50, 50, 50, 0.77);

}

.main_header header{
    float: left;
    text-align: center;
    color: #fff;
}


/*-----------------------------------------------------------------HEADER logo*/
.main_header img{
    width: 70px;
    margin-left: -150px; /*Posição da logo*/
    margin-top: 40px;

}

/*---------------------------------------------------------------HEADER Título*/
.main_header h1{
    font-size: 1.3em;
    font-weight: 500;
    text-shadow: 2px 2px 6px green;
    margin-left: 200px;
    margin-top: -60px;
   
}

/*---------------------------------------------------------------HEADER Slogan*/
.main_header p{
    font-size: 1.1em;
    margin-left: 180px;
    text-shadow: 2px 2px 4px #000000; /*font-style: italic;*/
    margin-bottom: -6px;
}


/*-----------------------------------------------------------------HEADER Menu*/

.main_header nav{
    float: left; 
    margin-left: 300px;
    width: 500px;
    max-width: 100%;
    margin-top: 10px;
    margin-left: 140px;
}

.main_header nav ul ul{
    margin-top: 5px;/*Distância do menu do topo*/
    width: 100%;
    
}

.main_header nav ul ul ul li{
    margin-top: 5px;
    width: 100%;
    
}

.main_header nav li{
    display: inline-block;
    position: relative;
    
}

.main_header nav li a{
    display: inline-block;
    padding: 10px;/*Espaçamento dos itens do menu*/
    color: #fff;/*Cor da fonte do menu*/
    text-decoration: none;
   
}

.main_header nav .login{
    background: #b29146; /*fundo do menu logar-se*/
}

.main_header nav li:hover,
.main_header nav li a:hover{
    background: rgba(0,0,0,0.5);
}

.main_header nav li:hover .sub,
.main_header nav li a:hover .sub{
    display: block;
    width: 250px;/*Largura do fundo do submenu*/
}

.main_header nav .sub{
    display: none;
    z-index: 99;
    position: absolute;
    width: 50px;/*Largura do fundo do submenu*/
    background: #eee;/*Cor de fundo do submenu*/
    margin: 0;
}

.main_header nav .sub li,
.main_header nav .sub li a{
    color: #4682B4;/*Cor da fonte do submenu*/
    display: block;
    width: 100%;
}

.main_header nav .sub li a:hover{
    background: rgba(0,0,0,0.5);
    color: #fff;/*Cor da fonte hover do submenu*/
}

/*-------------------------------------------------------------HEADER Pesquisa*/

.search_form{
    width: 100%; /*Tamanho do imput do formulário*/
    margin-top: 20px;
    margin-right: 200px;
    
    display: flex;
    float: left;/*Posição do formulário*/
}

.search_form input{
    text-align: left; /* O texto dentro do imput fica do lado esquerda*/
    border-radius: 40px;
}

.search_form button{
    text-transform: uppercase;
    font-size: 1em;/*Tamanho da font*/
    margin-left: 10px;
}



/*-----------------------------SEGUNDA DOBRA CONTENT--------------------------*/



/*---------------------------------------------------------------------CONTENT*/
.main_content{
    padding: 40px 0; /*Distância do conteúdo do cabeçalho*/
    background: #eaeaea; /*Fundo do conteúdo*/
      margin-bottom: 100px;
}

/*----------------------------------------------------------------CONTENT Home*/

.main_blog{
    float: right;
    width: 68%; /*Tamanho dos posts*/
    margin-bottom: 100px;
}

.main_blog_post img{
    width: 100%; /*Tamanho da imagem dentro do espaço do post*/
}

.main_blog_post{ 
    background: #fff; /*Fundo dos posts*/
    margin-bottom: 40px; /*Distância entre os posts*/
    border: 2px solid #ccc;
    border-radius: 0px 0px 10px 10px; /*Leve arredondamento dos cantos do post*/
    -moz-border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
}

.main_blog_post header{
    padding: 20px;/*Distância interna do conteúdo/texto do post*/
    margin-bottom: -5px; /*Distância da descrição da margem inferior*/    
}

/*-------------------------------------------------CONTENT HOME Titulo do post*/
.main_blog_post h1{
    font-weight: 400;/*Espessura do título*/
    font-size: 1.5em; /*Tamanho do título*/
    margin: -20px 0 2px;/*Margem do titulo e subtitulo do post*/    
}

.main_blog_post a{
    color: #4682B4; /*Cor da fonte*/
    text-decoration: none;
}

.main_blog_post a:hover{
    text-decoration: underline;  /*efeito h1 do post*/
}


/*----------------------------TERCEIRA DOBRA SIDEBAR--------------------------*/



/*----------------------------------------------------------------SIDEBAR HOME*/

.main_sidebar{
    float: left;
    width: 30%; /*largura*/
    padding: 20px; 
    background: #fff; /*fundo*/
   
    
}

/*---------------------------------------------------------SIDEBAR HOME Widget*/
.main_sidebar_widget{
    display: block;
    width: 100%;
    color: #4682B4;/*Cor da fonte do widget*/
}

.main_sidebar_widget > p{
    font-size: 1em ;
    margin-bottom: 20px;
}

/*------------------------------------------------------SIDEBAR HOME Widget H1*/
.main_sidebar_widget > h1{
    font-size: 1.1em; /*Titulo*/
    font-weight: 600;/*Espessura da fonte do widget*/
    margin-bottom: 5px;/*Distancia titulo subtitulo*/
    border-bottom: 1px solid #4682B4;
    color: blue;
    
}

/*------------------------------------------------SIDEBAR HOME Widget a itens */
.main_sidebar_widget a{
    color: #4682B4;
    text-decoration: none;
}

.main_sidebar_widget a:hover{
    text-decoration: underline;
}

.main_sidebar_widget ul{
    display: block;
    width: 100%;
}

.main_sidebar_widget ul li{
    display: block;
    width: 100%;
    background: #fbfbfb;
    padding: 2px 5px; /*Margem interna*/
    border-bottom: 1px solid #fff; /*Borda das fontes*/
    text-transform: uppercase;/*Deixa tudo maiúcula*/
    font-size: 1.1em;/*Tamanho da fonte */
    font-weight: 700;/*Espessura da fonte */
    margin-bottom: -2px;/*Distância do topo interno*/
}

/*--------------------------------------------------------------SINGLE SIDEBAR*/
.post_single .main_sidebar{
    float: right;/*Posião da sidebar*/
    margin-left: 10px;
}

/*--------------------------------------------SIDEBAR HOME Widget Mais vistos */
.main_sidebar_widget_post{
    display: block;
    width: 100%;
    margin-bottom: 20px;/*Distância entre os posts*/
}

/*-------------------------------------SIDEBAR HOME Widget Mais vistos Título */
.main_sidebar_widget_post h1{
    font-size: 1em;/*Título do post*/
    font-weight: 500;/*Espessura do post*/
    margin-bottom: 5px;
}

/*-----------------------------------SIDEBAR HOME Widget Mais vistos Descriçao*/
.main_sidebar_widget_post .tagline{
    font-size: 0.8em; /*Tamanho da fonte da descrição*/
    color: #4682B4;/*Cor da font*/
    font-weight: 500;/*Espessura da descrição*/
}

/*---------------------------QUARTA DOBRA PAGINATOR---------------------------*/


/*----------------------------------------------------HOME PAGINATOR Paginação*/
.paginator{
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.paginator li{
    display: inline-block;
    font-size: 0.9em;
}

.paginator li a,
.paginator li span{
    padding: 5px 10px;
    margin: 0 5px;
    background: #00B494;
    color: #fff;
    text-decoration: none;
}

.paginator li a:hover{
    background: #00CCA7
}

.paginator li span{
    background: #008068;
    font-weight: bold;
}


/*----------------------------QUINTA DOBRA POST SINGLE------------------------*/

/*-------------------------------------------------------------SINGLE CONTEUDO*/
.post_single{
    padding: 40px 10px;/*Distancia conteúdo do cabeçalho*/
    background: #eaeaea; /*Cor de fundo da página*/
}

.post_single .cover{width: 100%;} /*Tamanho da imagem/logo*/

.post_single .fb-comments{
    display: block;
    width: 100%;
    margin-top: 40px;
}

/*----------------------------------------------------------SINGLE POST Artigo*/
.post_single .left_content{
    float: left;
    width: 100%;/*Tamanho do bloco de conteúdo*/
}

.post_content{
    background: #fff;/*Cor do fundo superior*/
}

/*---------------------------------------------SINGLE POST Contador de Acessos*/
.post_single_contador{
    background-color: #4CAF50;
    border: none;
    color: white !important;
    padding: 10px;
    width: 100%;
    text-align: right;
    text-decoration: none !important;
    display: inline-block;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    text-shadow: 1px 1px 0 #000;
    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
    cursor: pointer;
    box-shadow: 1px 1px 3px 1px #ccc;
    -moz-box-shadow: 1px 1px 3px 1px #ccc;
    -webkit-box-shadow: 1px 1px 3px 1px #ccc;
}

/*-------------------------------------------------SINGLE POST Nome da Empresa*/
.post_content > h1{
    padding: 20px; /*Espaço entre os elementos e a margem*/
    margin-top: -22px;
    font-size: 1.2em; /*Tamanho título principal*/
    font-weight: 300; /*Expessura da fonte do título*/
}

/*---------------------------------------------SINGLE POST Endereço da Empresa*/
.post_content > h2{
    padding: 20px; /*Espaço entre os elementos e a margem*/
    margin-top: -32px;
    margin-left: 15px;
    font-size: 1.2em; /*Tamanho título principal*/
    font-weight: 300; /*Expessura da fonte do título*/
}

/*-----------------------------------------------------SINGLE POST Espaçamento*/
.post_content > h3{
    padding: 20px; /*Espaço entre os elementos e a margem*/
    margin-top: -30px;
    margin-left: 15px;
    font-size: 15em; /*Tamanho título principal*/
    font-weight: 300; /*Expessura da fonte do título*/
}

/*--------------------------------------------------------Seguimento Comercial*/
.post_content > h4{
    padding: 20px; /*Espaço entre os elementos e a margem*/
    margin-top: 10px;
    margin-left: 15px;
    font-size: 1.5em; /*Tamanho título principal*/
    font-weight: 300; /*Expessura da fonte do título*/
}

/*----------------------------------SINGLE POST Nome do Responsável da Empresa*/
.post_content > h5{
    padding: 20px; /*Espaço entre os elementos e a margem*/
    margin-top: 10px;
    margin-left: 15px;
    font-size: 1.2em; /*Tamanho título principal*/
    font-weight: 300; /*Expessura da fonte do título*/
}

/*---------------------------------------------------------------------Contato*/
.post_content > p{
    padding: 20px; /*Espaço entre os elementos e a margem*/
    margin-top: 10px;
    margin-left: 15px;
    font-size: 1.2em; /*Tamanho título principal*/
    font-weight: 300; /*Expessura da fonte do título*/
}

.post_content .tagline{
    padding: 10px 5px 0 5px; /*Espaço do endereço*/
    font-size: 1.2em; /*Tamanho da fonte do endereço*/
    font-weight: 300;
}

.single_post_more{
    float: left;
    width: 100%;
    padding: 25px; /*Distância do post e a margem*/
    background: #00B494; /*Cor do fundo inferior*/
    font-size: 1em;
}

.single_post_more header{
    margin-bottom: 20px; /*Distância entre o post e o texto*/
    color: #fff; /*Cor da fonte*/    
}

.single_post_more_post{
    float: left;
    width: 48%; /*Margens entre os posts */
    margin: 1%;
}

.single_post_more_post:hover{
    border-color: #fff;   
}

/*----------------------------------------------------------------HOME FOOTER */

.main_footer{
    background: #333;
    padding: 30px;
    color: #fff;
    font-size: 0.875em;
    text-align: center;
}

/*-------------------------------------------------------------------------404*/
.not_found{
    padding: 50px 0;
}

.not_found header{
    width: 800px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 40px auto;
}

.not_found header h1{
    font-size: 2em;
    font-weight: 400;
}

.not_found header p{
    font-size: 1.1em;
    font-weight: 300;
    margin: 10px 0 0 0;
}

.not_fount_post{
    display: inline-block;
    width: 50%;
    padding: 20px;
    margin-left: -4px;
    vertical-align: top;
}

.not_fount_post h1{
    margin-top: 20px;
    font-weight: 400;
}

.not_fount_post a{
    font-weight: 600;
    color: #00B494;
    text-decoration: none;
}

.not_fount_post a:hover{
    text-decoration: underline;
}

.not_found .search_form{
    display: block;
    padding: 0 20px;
    float: none;
    background: none;    
    text-align: center;
}

.not_found .search_form input{
    width: 400px;
    max-width: 100%;
    padding: 6px;
}

.page_single{
    padding: 40px 0;
    background: #eaeaea;
}

.page_single .content{
    background: #fff;
}

.page_single header{
    padding: 20px;
    text-align: right;
    background: #008068;
    color: #fff;
}

.wc_slides{
    margin: 30px auto;
}

/*-----------------------------------MEDIA QUERY------------------------------*/


/*-------------------------------------------------------------MEDIA HEADER 64*/

@media (max-width: 64em){
    .main_header img{
    width: 60px;
    margin-top: 10px;
    margin-left: -270px;
    margin-bottom: 8px;
}
    
 .main_header header{
        float: none;
        display: block;
        width: 100%;
    }
    
   
/*---------------------------------------------------------------HEADER Título*/
.main_header h1{
    font-size: 1.2em;
    font-weight: 600;
    margin-left: 100px;
    margin-top: -80px;
    
}

/*---------------------------------------------------------------HEADER Slogan*/

.main_header p{
    font-size: 1.3em;
    margin-left: 100px;
    margin-bottom: 3px;
}
    

    .main_header nav{
    width:80%;
    margin-left: 100px;
    margin-top: 5px;
    font-size: 1.3em;
    margin-bottom:5px;
}

.main_sidebar_widget ul li{
    
    width: 100%;
    
    
    font-size: 1em;/*Tamanho da fonte */
    margin-top: 7px;
    font-weight: 600;/*Espessura da fonte */
    margin-bottom: -5px;/*Distância do topo interno*/
}
    
/*--------------------------------------------------HEADER Formulário pesquisa*/

.search_form{
    width: 100%; /*Tamanho do imput do formulário*/
    padding: 20px;
    margin-right: 40px;
    margin-top: 5px;
   
}

.search_form input{
    text-align: left; /* O texto dentro do imput fica do lado esquerda*/
    display: flex;
    margin-left: 20px;
}

.search_form button{
    text-transform: uppercase;
    font-size: 0.8em;/*Tamanho da font*/
    margin-left: 10px;
}



/*---------------------------------------------------------CONTADOR DE ACESSOS*/

.panel_header {
    margin-left: 50px;
    font-size: 1em;
}

 .main_blog{
 
    width: 100%;/*Tamanho dos posts*/
    margin-left: 10px;
}


.content{
    width: 94%;
    margin: 0 3%;
    }
}

/*-------------------------------------------------------------MEDIA HEADER 50*/

@media (max-width: 50em){

.main_header img{
    position: relative;
    width: 50px;
    margin-top: 20px;
    margin-left: -300px;
    margin-bottom: 8px;
}

.main_header h1{
    font-size: 1.4em;
    font-weight: 700;
    display: flex;
    margin-left: 120px;
    margin-top: -70px;
    margin-bottom: 20px;
}

.main_header p{
    font-size: 1.3em;
    margin-top: -15px;
    margin-left: 50px;
    margin-bottom: 60px;
}

.main_header nav{
    float: right;/*Posição*/
    margin-left: -50px;
    margin-top: -50px;
     width: 300px;/*Largura do fundo do submenu*/
}

.main_header nav li:hover .sub,
.main_header nav li a:hover .sub{
    display: block;
    width: 300px;/*Largura do fundo do submenu*/
}

.main_header nav ul{
    width:100%;
    margin-left: 50px;
    margin-top: 50px; /*Distância do menu do topo*/
    display: block;
    max-width: 100%;
    font-size: 0.9em;
    font-weight: 700;
}



.main_header nav ul ul{
    margin-top: 5px;/*Distância do menu do topo*/
    width: 100%;
    
}

.main_header nav ul ul ul li{
    margin-top: 5px;
    width: 100%;
    
}

.main_header nav li{
    display: inline-block;
    position: relative;
    
}
    
    .search_form{
    width: 100%; /*Tamanho do imput do formulário*/
    padding: 10px;
    margin-top: 15px;
    margin-right: 5px;
    margin-bottom: -20px;
}

.search_form button{
    text-transform: uppercase;
    font-size: 0.8em;/*Tamanho da font*/
    margin-left: 5px;
}

/*---------------------------------------------------------CONTADOR DE ACESSOS*/

.panel{
    margin-top: 10px;
    padding: 20px;
    margin-bottom: 10px;
}

.main_header nav ul ul{
    margin-top: 5px;/*Distância do menu do topo*/
    width: 100%;
    display: flex;
}

.main_header .progress{
    width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    text-align: center;
   
}

.main_header .progress ul{
    display: inline-block;
}

.main_header .progress li {
    display: inline-block;
    color: #000;
    margin-left: 5px;
}

.main_header .progress a{
    text-decoration: none;
    font-size: 0.8em;
}
    
    .main_blog{
    float: left;
    width: 94%;/*Tamanho dos posts*/
    margin-left: 10px;
    
}

.left_content{
    float: left;
    width: 94%;/*Tamanho dos posts*/
    margin-left: 10px;
}

.main_sidebar{
    float: left;
    width: 30%; /*largura*/
    padding: 20px; 
    background: #fff; /*fundo*/
}

.main_sidebar{
    float: left;
    width: 100%; /*largura*/
    padding: 20px; 
    background: #fff; /*fundo*/
    font-size: 1.1em;
}
    
    .main_sidebar_widget,
    .main_sidebar_widget_most .main_sidebar_widget_post{
        padding: 0;
        width: 100%;
        margin-left: 0;
    }
    
     .main_header nav{
        float: none;
        display: block;
        width: 100%;
        text-align: center;

    }
}
    
  .main_header nav .sub{
    display: none;
    z-index: 99;
    position: absolute;
    width: 500px;/*Largura do fundo do submenu*/
    background: #eee;/*Cor de fundo do submenu*/
    margin: 0;}
    .not_fount_post{
    width: 100%;
    padding: 20px;
    }
    
    /*-------------------------------------------------CONTENT HOME Titulo do post*/
.main_blog_post h1{
    font-weight: 700;/*Espessura do título*/
    font-size: 1.3em; /*Tamanho do título*/
    margin: -20px 0 2px;/*Margem do titulo e subtitulo do post*/  
    
}


/* --------------------------------------------------------------- SINGLE POST*/

.post_single .fb-comments{
    display: block;
    width: 100%;
    margin-top: 40px;
    
}

.post_single .left_content{
    float: left;
    margin-left: 0px;
    width: 100%;/*Tamanho do bloco de conteúdo*/
    
}



