html, 
body {
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
    font:18px/30px 'Lato', sans-serif;
    font-weight:normal; 
    color:#727376; 
    background: #fefefe;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
a {
    cursor:pointer; 
    outline:none; 
    text-decoration:none; 
    -webkit-transition: all 0.3s ease-in-out; 
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:focus {
    outline: none;
}
input, textarea  {
    -webkit-transition: all 0.3s ease-in-out; 
    -moz-transition: all 0.3s ease-in-out; 
    -ms-transition: all 0.3s ease-in-out; 
    -o-transition: all 0.3s ease-in-out; 
    transition: all 0.3s ease-in-out;
}
.group:before,
.group:after {
    content: "";display: table;
} 
.group:after {
    clear: both;
}
.group {
    zoom: 1;
}
img {
    max-width: 100%;
}
/* Globais -------------------------------------- */
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.nopad {
    padding: 0;
}
ul.menu,
ul.menu-sub-footer,
ul.cli-footer,
ul.menu-footer,
.main ul.menu-interno {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* sub-header -------------------------------------- */
.head {
    background-color: #728472;
}
.social a {
    padding: 5px;
    font-size: 20px;
    color: #b1976b; /* amarelo */
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}
.social a:hover {
    color: #000;
}
.social a.zap {
    background-color: #b1976b;
    font-size: 15px;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-right: 0;
    letter-spacing: 1px;
}
.social a.zap:hover {
    background-color: #25d366;
    color: #fff;
}
.m1 {
    margin-left: 30px;
    display: block;
}
/* header -------------------------------------- */
.header {
    padding-top: 35px;
    padding-bottom: 35px;
}
/* Menu -------------------------------------- */
ul.menu {
    float: right;
    padding-top: 25px;
}
ul.menu li {
    display: inline-block;
    position: relative;
}
ul.menu li a {
    color: #b3d2b3;
    font-size: 18px;
    font-weight: bolder;
    margin-left: 30px;
    text-decoration: none;
    position: relative;
}
ul.menu li a:hover {
    color: #fff;
}
ul.menu li a:hover:after {
    content: "";
    width: 2px;
    height: 25px;
    position: absolute;
    background-color: #fff;
    bottom: -30px;
    left: calc(50% - 1px);
}
ul.menu li.current-menu-item a {
    color: #fff;
}
ul.menu li.current-menu-item a:after {
    content: "";
    width: 2px;
    height: 25px;
    position: absolute;
    background-color: #fff;
    bottom: -30px;
    left: calc(50% - 1px);
}
/* Slide -------------------------------------- */
.slider {
    height: auto;
    position: relative;
    z-index: 1;
}
.white {
    color: white;
}
.white h2 {
    color: white;
}
/* Credibilidade -------------------------------------- */
.credibilidade {
    box-shadow: 0 0 25px rgba(0,0,0,.2);
    background-color: #fff;
    margin-top: -100px;
    z-index: 90;
    position: relative;
    padding: 0;
}
h2 {
    font-size: 23px;
    color: #000;
    padding: 0;
    margin:0;
    font-weight: bolder;
}
.text-cred {
    padding: 50px 50px 0 50px;
}
.bar1 {
    width: 40px;
    height: 4px;
    background-color: #708169;
    display: inline-block;
    position: relative;
    margin-top: 15px;
}
a.bt-mais {
    background-color: #708169;
    color: #fff;
    text-decoration: none;
    font-weight: bolder;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 25px;
    font-size: 16px;
}
a.bt-mais:hover {
    background-color: #343b34;
    color: #fff;
}
h1 {
    margin: 0;
    color: #000;
    margin-bottom: 30px;
}
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
  display: flex;
  flex-direction: column;
}
/* Blog -------------------------------------- */
.blog {
    padding-top: 100px;
    padding-bottom: 60px;
}
.blog h1 {
    margin: 0;
    margin-bottom: 15px;
}
.blog h4 {
    font-size: 30px;
    font-weight: bolder;
    color: #fff;
    line-height: 30px;
}
.box-blog {
    position: relative;
}
.box-blog img {
    width: 100%;
}
.overlay {
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    display: block;
}
.box-blog a {
    text-decoration: none;
}
.box-blog a img {
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}
.box-blog a:hover img {
    -webkit-transform: scale3d(2,2,2);
    transform: scale3d(2,2,2);
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}
.box-blog a:hover p,
.box-blog a:hover .date {
    color: #708169;
}
.box-blog p {
    color: #000;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0;
}
.box-blog small  {
    color: #000;
    font-size: 18px;
    line-height: 25px;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 15px;
    margin-top: 5px;
    display: block;
    color: #727376;
}
.box-blog .date {
    padding-left: 5%;
    color: #727376;
    padding-top: 15px;
    display: block;
    font-size: 15px;
}
.pblog .date {
    color: #727376;
}
.pblog {
    display: block;
    margin-bottom: 30px;
}
/* Footer -------------------------------------- */
.footer {
    background-color: #728472;
    color: #a9abae;
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 40px;
}
.footer p {
    color: #fff;
}
ul.cli-footer {
    padding-top: 80px;
    padding-bottom: 40px;
}
ul.cli-footer li {
    width: 20%;
    float: left;
    text-align: center;
}
.footer hr {
    height: 1px;
    background-color: #3d3d3e;
    display: block;
    border: none;
    width: 70%;
}
.m3 {
    display: block;
    padding-top: 50px;
}
.bar2 {
    display: inline-block;
    width: 2px;
    height: 30px;
    background-color: #000;
    margin-bottom: 10px;
    position: relative;
}
h3 {
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    font-weight: bolder;
}
.space {
    margin-top: 50px;
    display: block;
}
.footer a {
    color: #404a3c;
    display: inline-block;
}
.footer a:hover {
    color: #3d3d3e;
}
.footer i {
    margin-right: 15px;
    font-size: 22px;
}
.p1 {
    padding-right: 30px;
}
ul.menu-footer {
    margin-top: 15px;
}
ul.menu-footer li {
    margin-bottom: 10px;
}
.ul ul {
  list-style: none; /* Remove default bullets */
}

.ul ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #b1976a; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */ 
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  font-size: 14px;
}
.tit-m {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 0;
    margin:0;
    font-weight: bolder;
    margin-bottom: 15px;
    display: block;
}
.space2 {
    display: block;
    position: relative;
    height: 40px;
}
ul.menu-interno li {
    margin-bottom: 30px;
}

ul.menu-interno li a {
    display: block;
    text-transform: uppercase;
    color: #727376;
    text-decoration: none;
    border-left: 2px solid #727376;
    padding-left: 20px;
    padding-top: 3px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    position: relative;
}
ul.menu-interno li a:before  {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #727376;
    position: absolute;
    bottom: -10px;
    left: 0;

}
ul.menu-interno li a:hover {
    color: #c59262;
    border-color: #c59262;
}
.footer .social a {
    padding: 5px;
    font-size: 20px;
    color: #fff; /* amarelo */
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}
.footer .social a:hover {
    color: #a7c39c;
}
/* Sub-footer -------------------------------------- */
.sub-footer {
    background-color: #576557;
    color: #a7c39c;
    padding-top: 15px;
    padding-bottom: 15px;
}
.copy {
    font-size: 14px;
    line-height: 16px;
}
ul.menu-sub-footer li {
    display: inline-block;
    position: relative;
}
ul.menu-sub-footer li a {
    color: #a7c39c;
    font-size: 16px;
    font-weight: bolder;
    margin-left: 15px;
    text-decoration: none;
    position: relative;
}
ul.menu-sub-footer li a:hover {
    color: #fff;
}
/* Page -------------------------------------- */
.titulo {
    padding-top: 100px;
    padding-bottom: 100px;
}
.titulo-page {
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    letter-spacing: 6px;
    color: #fff;
    font-weight: bolder;
    position: relative;
}
.titulo-page:before {
    content: "";
    width: 16px;
    height: 94px;
    background: url(../images/barrinha-1.png) 0 0 no-repeat;
    position: absolute;
    top: -25px;
    left: -15%;
    opacity: .5;
}
.titulo-page:after {
    content: "";
    width: 16px;
    height: 94px;
    background: url(../images/barrinha-2.png) 0 0 no-repeat;
    position: absolute;
    top: -25px;
    right: -15%;
    opacity: .5;
}
.main {
    padding-top: 55px;
}
.loca {
    margin-bottom: 15px;
}
.main h2 {
    position: relative;
    margin-bottom: 30px;
}
.voltar-blog {
    color: #708169;
    font-weight: bolder;
}
.voltar-blog:before {
    content: " ";
    font-family: 'FontAwesome';
}
.main h2:before {
    content: "";
    width: 40px;
    height: 4px;
    background-color: #708169;
    display: inline-block;
    position: relative;
    position: absolute;
    bottom: -15px;
}
.cor {
    background-color: #f5f4ed;
}
/* Contato -------------------------------------- */
.contato input,
.contato textarea {
    width: 100%;
    padding: 10px;
    background: #fff;
    color: #000;
    border:none;
    outline: none;
    resize: none;
    border: solid 1px #708169;
}
.contato textarea {
    height: 120px;
}
.contato textarea:focus,
.contato input:focus {
    background: rgba(255,255,255,.3);
    border-color: rgba(0,0,0,.1);
}
.contato input[type=submit] {
    background-color: #708169;
    color: #fff;
    text-transform: uppercase;
    font-weight: bolder;
    border-color: #708169
}
.contato input[type=submit]:hover {
    background-color: #25d366;
    border-color: #25d366;
}
/* Wordpress core -------------------------------------- */
.alignnone {
    margin: 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin:0;
}

.wp-caption.alignleft {
    margin: 5px 20px 15px 0;
}

.wp-caption.alignright {
    margin: 5px 0 15px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
    
}
.wp-caption p.wp-caption-text {
    font-size: 12px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 0px;
    color:#000;
}
.gallery-item {
    float:left; 
    width:110px; 
    margin-right:15px; 
    margin-bottom:10px; 
    text-align:center;
    visibility:hidden; 
    visibility:visible; 
    -moz-opacity: 1; 
    opacity: 1; 
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=100); 
    -webkit-transition: all 0.3s ease-in-out; 
    -moz-transition: all 0.3s ease-in-out; 
    -ms-transition: all 0.3s ease-in-out; 
    -o-transition: all 0.3s ease-in-out; 
    transition: all 0.3s ease-in-out;
}
.gallery-item:hover {
    -moz-opacity: 0.6; 
    opacity: 0.6; 
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha"(Opacity=60);
    -webkit-transition: all 0.3s ease-in-out; 
    -moz-transition: all 0.3s ease-in-out; 
    -ms-transition: all 0.3s ease-in-out; 
    -o-transition: all 0.3s ease-in-out; 
    transition: all 0.3s ease-in-out;
}
.gallery-item .attachment-thumbnail {
    height: auto; 
    width: 110px;
}
.gallery-caption {
    font-size:12px;
}
.gallery-item a {
    display:block; 
    outline: none;
}
/* Paginação -------------------------------------- */
div#emm-paginate {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
}
span.emm-title {
    display: none;
}
span.emm-page.emm-current {
    background: #b1976a;
    padding: 7px 12px;
    display: inline-block;
    color: #fff;
    font-weight: bolder;
    margin-right: 5px;
}
a.emm-page {
    padding: 4px 10px;
    background: #e0dac8;
    color: #5e513b;
    text-decoration: none;
    padding: 7px 12px;
    margin-right: 5px;
}
a.emm-page:hover {
    color: #b1976a;
    color: #fff;
}
/* Fancybox -------------------------------------- */
.f-direita {
    width:26px; 
    height:44px; 
    z-index:999;  
    background:url(../images/seta-esq.png) no-repeat 0 0;   
    position:absolute; 
    left:-60px; 
    top:50%; 
    margin-top:-16px;
}
.f-esquerda {
    width:26px; 
    height:44px; 
    z-index:999; 
    background:url(../images/seta-dir.png) no-repeat 0 0; 
    position:absolute; 
    right:-60px; 
    top:50%; 
    margin-top:-16px;
}
/* Medias Queries -------------------------------------- */
@media (max-width: 1024px) {
    .sub-header {
        font-size: 12px;
    }
    .credibilidade {
        margin-top: 0;
    }
    
}
@media (max-width: 768px) {
   .sub-header,
   .sub-header .right,
   .header,
   .credibilidade,
   .footer,
   .sub-footer {
    text-align: center;
   }
   .space {
    margin-top: 20px;
   }
   ul.menu,
    ul.menu-sub-footer {
    width: 100%;
    text-align: center;
   }
   ul.menu li:first-child a {
    margin-left: 0;
   }
   .blog {
    background-repeat: repeat;
   }
   ul.cli-footer li {
    width: 100%;
    display: block;
    margin-bottom: 15px;
   }
   .footer h3 {
    margin-top: 30px;
   }
}
@media (max-width: 480px) {
    .text-sub,
    ul.menu,
    ul.menu-sub-footer
      {
        display: none;
    }
    .box-blog {
        margin-bottom: 30px;
    }

    .subir {
        margin-bottom:0;
    }
    .box-ama {
        padding-top:60px;
        padding-bottom: 30px;
    }
    a.bt-mais {
        margin-bottom: 20px;
    }
    .footer i {
        margin-right: 5px;
    }
    
}