/*
Theme Name: Ahgora
Author: Solução Digital
Author URI: https://solucao.digital/
Version: 2.0.0
Text Domain: solucaodigital
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Normalize
# Typography
# Elements
# Navigation
    ## Links
    ## Menus
# Accessibility
# Alignments
# Clearings
# Content
    ## Pages
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: "Open Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  color: #ff0856;
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
a:focus, a:hover{
  outline: 0 !important;
  box-shadow: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #4c4c4c;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: none;
  outline: 0 !important;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button:focus{
  outline: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

::selection {
  color: #fff;
  background: #333; /* WebKit/Blink Browsers */
}
::-moz-selection {
  color: #fff;
  background: #333; /* Gecko Browsers */
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #797991;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #78788f;
}

h1{
  font-size: 44px;
}

h2{
  font-size: 38px;
}

h3{
  font-size: 34px ;
}

h4{
  font-size: 30px;
}

h5{
  font-size: 28px;
}

h6{
  font-size: 26px;
}

p{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #797991;
  font-weight: 300;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #202020;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
}

abbr, acronym {
  border-bottom: 1px dotted #4c4c4c;
  cursor: help;
}

mark, ins {
  background: #4c4c4c;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
}

hr {
  background-color: #f8f8f8;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 0em;
}

ul {
  list-style: disc;
  padding: 0px;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

li:focus{
  outline: 0 !important;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a:hover, a:focus {
  color: #d8003d;
}

a:focus {
  outline: 0;
}

a:hover, a:active {
  outline: 0;
}

button.btn-padrao,
a.btn-padrao {
  display: inline-block;
  min-height: 50px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  border-radius: 4px;
  padding: 10px 20px;
  border: #ff0856 solid 1px;
  background: #ff0856;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(255, 8, 86, 0.3);
  -moz-box-shadow:    0px 4px 20px 0px rgba(255, 8, 86, 0.3);
  box-shadow:         0px 4px 20px 0px rgba(255, 8, 86, 0.3);
}
button.btn-off,
a.btn-off {
  display: inline-block;
  height: 50px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  border-radius: 4px;
  padding: 12px 20px;
  border: #fff solid 1px;
  background: transparent;
}
button.btn-padrao:focus,
a.btn-padrao:focus,
button.btn-padrao:hover,
a.btn-padrao:hover{
  outline: 0 !important;
  color: #ffffff;
  border: #d8003d solid 1px;
  background: #d8003d;
  text-decoration: none;
}
button.btn-off:focus,
a.btn-off:focus,
button.btn-off:hover,
a.btn-off:hover {
  outline: 0 !important;
  color: #ffffff;
  border: #ff0856 solid 1px;
  background: #ff0856;
  text-decoration: none;
}

/*button.btn-bigger,
a.btn-bigger {
  height: 60px;
  padding: 16px 15px;
}*/

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
header#masthead {
  margin:0 auto;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 60px;
  padding: 0;
  z-index: 1040;
  background: transparent;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
#menu-principal{
  background: transparent;
  position: relative;
  padding: 0;
}
#masthead .navmenu {
  display: flex;
  position: relative;
}

#menu-principal .navbar-logo{
  padding: 6px 0;
  text-align: left;
  position: relative;
  z-index: 99;
}
#menu-principal .navbar-logo a.image-logo{
  display: inline-block;
  width: 45%;
  height: 50px;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}
#menu-principal .navbar-logo a.image-logo img{
  width: 125px;
  height: auto;
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
#menu-principal .navbar-logo a.image-logo .logo-menu{
  opacity: 0;
}
#menu-principal .navbar-logo a.image-logo .logo-menu-scroll{
  opacity: 1;
}

#menu-principal .navbar-logo a.btn-padrao{
  width: 55%;
  font-size: 14px;
  line-height: 14px;
  padding: 20px 5px;
  vertical-align: top;
  background: transparent;
  position: absolute;
  border: none;
  box-shadow: none;
}
#menu-principal .navbar-logo a.btn-padrao:after{
  display: inline-block;
  content: ' ';
  width: 100%;
  height: 35px;
  border-radius: 4px;
  background: #ff0856;
  position: absolute;
  top: 9px;
  left: 0;
  z-index: -1;
}

/* MENU MOBILE */
.hamburger {
  position: absolute;
  top: 5px;
  right: -5px;
  width: 50px;
  height: 50px;
  z-index:999;
  padding: 5px 0px !important;
  background: transparent !important;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.hamburger:hover, .hamburger:focus{
  outline: none !important;
}
.hamburger span.hamburger-inner,
.hamburger span.hamburger-inner::after,
.hamburger span.hamburger-inner::before{
  width: 30px;
  height: 3px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.hamburger--collapse .hamburger-inner{
  bottom: -1px;
}
.hamburger span.hamburger-inner:before{
  top: -8px;
}
.hamburger span.hamburger-inner:after{
  top: -16px;
}
header#masthead.scroll .hamburger span.hamburger-inner,
header#masthead.scroll .hamburger span.hamburger-inner::after,
header#masthead.scroll .hamburger span.hamburger-inner::before{
  background: #ff0856;
}
.hamburger-box{
  width: 30px !important;
  height: 30px !important;
}
.overlay {
  height: 100vh;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 97; /* Sit on top */
  top: 60px;
  right: -100%;
  opacity: 1;
  background: rgba(0,15,92,0.95) !important;
  transition: 0.75s;
  -webkit-transition: 0.75s;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
header#masthead.scroll .overlay{
  background: #fff !important;
}
.overlay-content {
  position: relative;
  top: 10px;
  width: 100%;
  text-align: left;
  height: 100vh;
  padding-bottom: 70px;
  /** ajusta o scroll no mobile **/
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.responsive-container{
  height: 100%;
}

.menu-responsivo{
  position: relative;
  padding: 0 20px;
}
.menu-responsivo ul{
  list-style: none;
  padding: 0;
}
.menu-responsivo ul li{
  display: block;
  margin: 2px 0;
}
.menu-responsivo ul li{
  display: block;
  margin: 0;
}
.menu-responsivo ul li.menu-home,
.menu-responsivo ul li.menu-ipad{
  display: none;
}
.menu-responsivo ul li a{
  display: block;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  border-bottom: rgba(255,255,255,0.3) solid 1px;
  padding: 18px 0 0 0;
  position: relative;
}
header#masthead.scroll .menu-responsivo ul li a{
  color: #4e586c;
  border-bottom: #efefef solid 1px;
}
.menu-responsivo ul li a i{
  display: inline-block;
  position: relative;
  top: 2px;
  left: 5px;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.menu-responsivo ul li a.show i{
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.dropdown-toggle::after{
  display: none !important;
}
.menu-responsivo ul li a:before,
.menu-responsivo ul li.current-menu-item.active a:before{
  display: inline-block;
  content: ' ';
  width: 100%;
  height: 1px;
  opacity: 1;
  background: rgba(255,255,255,0.2);
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.menu-responsivo ul li:last-child a:before,
.menu-responsivo ul li.current-menu-item .dropdown-menu a:before{
  display: none;
}
.menu-responsivo ul li.current-menu-item a.dropdown-toggle,
.menu-responsivo ul li.current-menu-parent a.active{
  background: transparent;
}
.menu-responsivo .dropdown-menu{
  display: none;
  position: relative !important;
  top: 0px;
  width: 100%;
  border: none !important;
  background: none !important;
  padding: 0 0 0px 25px !important;
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active,
.dropdown-item.active{
  background: none !important;
}

#menu-superior{
  display: none;
}

.menu-idiomas a.nav-link{
  display: none;
}
.menu-idiomas ul.lista-idiomas li{
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

/** menu de produtos **/
li.menu-produtos a.dropdown-item{
  display: none !important;
}
.lista-menu-produtos span.item-categoria{
  display: inline-block;
  width: 100%;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #00b7f3;
  font-weight: 600;
  border-bottom: #efefef solid 1px;
  padding: 18px 0 0 0;
}

/** quando da scroll **/
header#masthead.scroll{
  background: #fff;
  -webkit-box-shadow: -3px 0 10px 0 rgba(0,0,0,0.18);
  -moz-box-shadow: -3px 0 10px 0 rgba(0,0,0,0.18);
  box-shadow: -3px 0 10px 0 rgba(0,0,0,0.18);
}
header#masthead.scroll #menu-principal .navbar-logo a.image-logo .logo-menu{
  opacity: 1;
}
header#masthead.scroll #menu-principal .navbar-logo a.image-logo .logo-menu-scroll{
  opacity: 0;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.no-paddings{
  padding-right: 0px !important;
  padding-left: 0px !important;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
#content{
  min-height: calc(100vh - 350px);
}
.site-content{
  position: relative;
}
#breadcrumbs{
  min-height: 20px;
  position: absolute;
  z-index: 3;
  top: 70px;
}
#breadcrumbs a,
#breadcrumbs span{
  font-size: 12px;
  color: #fff;
  font-weight: 300;
}
#breadcrumbs a{
  display: inline-block;
  height: 50px;
  padding-right: 5px;
  color: #00afeb;
  padding-top: 15px;
}

/*--------------------------------------------------------------
# GERAL
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Topo
--------------------------------------------------------------*/
#bloco-banner{
  width: 100%;
  height: 100vh;
  min-height: 420px;
  padding-top: 120px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#bloco-banner h1,
#bloco-banner h2{
  font-size: 34px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
#bloco-banner p{
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 20px;
}

#bloco-banner a.btn-padrao,
#bloco-banner a.btn-off{
  display: block;
  max-width: 255px;
  margin: 7px 0;
}

.page-home #bloco-banner{
  height: 1000px;
  background-size: auto 1000px;
}

#bloco-banner.banner-destaque{
  height: inherit;
  background-size: auto 100vh;
}
#bloco-banner.banner-destaque #bloco-diferenciais{
  padding-bottom: 0px !important;
}
#bloco-banner.banner-destaque #bloco-diferenciais .container{
  width: 100%;
  max-width: 100% !important;
}

#bloco-banner.banner-reduzido{
  height: inherit;
  background-size: auto 100vh;
}

#show-produtos{
  padding-top: 100px;
}

#bloco-banner span.subtitle,
#bloco-banner h1.subtitle,
#page-produto #bloco-banner h1{
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.page-ahgora #bloco-banner a{
  width: 190px;
}

#page-normal.post-content{
  margin: 160px 0 60px;
}
#page-normal.post-content #breadcrumbs{
  top: 90px;
}
#page-normal.post-content #breadcrumbs a,
#page-normal.post-content #breadcrumbs span{
  color: #797991;
}

#page-investidor.post-content{
  margin: 160px 0 60px;
}
#page-investidor.post-content #breadcrumbs{
  top: 90px;
}
#page-investidor.post-content #breadcrumbs a,
#page-investidor.post-content #breadcrumbs span{
  color: #797991;
}

/** HOME **/
#bloco-diferenciais{
  display: block;
  padding: 60px 0px;
  margin: 0px auto;
}
#bloco-diferenciais .vc_column-inner{
  padding: 0px;
}

.item-diferencial{
  display: block;
  width: 100%;
  margin: 15px 0;
  padding-bottom: 35px;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow:    0px 5px 20px 0px rgba(0, 0, 0, 0.08);
  box-shadow:         0px 5px 20px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.item-diferencial img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.item-diferencial h3{
  font-size: 26px;
  line-height: 32px;
  color: #797991;
  font-weight: 700;
  padding: 30px 12px;
  margin-bottom: 0px;
  text-align: center;
}
.item-diferencial p{
  font-size: 16px !important;
  color: #797991 !important;
  text-align: center;
  padding: 0 25px;
}

/** pagina de busca **/
#page-busca{
  margin-bottom: 60px;
}
#page-busca.post-content{
  margin: 160px 0 60px;
}
#page-busca.post-content #breadcrumbs{
  top: 90px;
}
#page-busca.post-content #breadcrumbs a,
#page-busca.post-content #breadcrumbs span{
  color: #797991;
}
#page-busca #bloco-banner{
  height: 260px;
  min-height: 260px;
  background-position: center 100%;
}
#page-busca #bloco-banner h1.subtitle{
  padding-top: 20px;
}

/** Topo Blog **/
#page-blog{
  padding-left: 0px;
  padding-right: 0px;
}
#page-blog #bloco-titulo h1.subtitle{
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0px;
}
#page-blog #bloco-titulo h2{
  font-size: 25px;
  line-height: 36px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
#page-blog #bloco-titulo{
  height: 260px;
  min-height: 260px;
  padding-top: 120px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3b3684+0,4a1f78+100 */
  background: rgb(59,54,132); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(59,54,132,1) 0%, rgba(74,31,120,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(59,54,132,1) 0%,rgba(74,31,120,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(59,54,132,1) 0%,rgba(74,31,120,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b3684', endColorstr='#4a1f78',GradientType=0 ); /* IE6-9 */
}
#blog-menu{
  width: 100%;
  height: 120px;
  background: #e7e7eb;
  margin-bottom: 15px;
}
#bloco-filtros{
  margin: 7px 0 0 0;
}
#bloco-filtros ul.lista-categorias,
#bloco-filtros ul.lista-conteudos {
  display: block;
  list-style: none;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0px;
  background: #e7e7eb;
  z-index: 99;
  position: relative;
}
#bloco-filtros ul.lista-categorias li,
#bloco-filtros ul.lista-conteudos li{
  display: none;
  width: 100%;
  margin: 0px;
  padding: 0;
  background: #e7e7eb;
}
#bloco-filtros ul.lista-categorias li.label,
#bloco-filtros ul.lista-conteudos li.label{
  display: block;
  position: relative;
  cursor: pointer;
}
#bloco-filtros ul.lista-categorias li.label i,
#bloco-filtros ul.lista-conteudos li.label i{
  display: inline-block;
  color: #78788f;
  font-weight: bold;
  margin-left: 15px;
}
#bloco-filtros ul.lista-categorias li.label,
#bloco-filtros ul.lista-categorias li a,
#bloco-filtros ul.lista-conteudos li.label,
#bloco-filtros ul.lista-conteudos li a{
  opacity: 1 !important;
  display: block;
  font-size: 14px;
  color: #78788f;
  text-align: left;
  padding: 12px 20px;
}
#bloco-filtros ul.lista-categorias li.label,
#bloco-filtros ul.lista-conteudos li.label{
  padding: 12px;
}
#bloco-filtros ul.lista-categorias li a.active,
#bloco-filtros ul.lista-categorias li a:hover,
#bloco-filtros ul.lista-conteudos li a:active,
#bloco-filtros ul.lista-conteudos li a:hover{
  opacity: 1;
  color: #ee1155;
}

a.btn-menu-blog{
  display: inline-block;
  height: 50px;
  font-size: 14px;
  color: #78788f;
  text-align: left;
  padding: 12px 20px 12px 0;
  margin-top: 8px;
}

/*--------------------------------------------------------------
## Single Post
--------------------------------------------------------------*/
#single-blog{
  margin-top: 70px;
}
#single-blog #breadcrumbs{
  display: none;
}
#single-blog .thumb-destaque{
  border-top: #7696bc solid 4px;
}
#single-blog h1{
  display: inline-block;
  width: 100%;
  font-size: 26px;
  line-height: 34px;
  color: #797991;
  font-weight: 700;
  text-align: center;
  padding: 0px;
  margin: 15px 0;
}
#single-blog .post-infos{
  width: 100%;
  text-align: center;
  margin: 0 0 30px 0;
  padding: 10px;
  background: #f8f8f9;
}
#single-blog .post-infos span{
  font-size: 14px;
  line-height: 20px;
  color: #797991;
  font-weight: 300;
}
#single-blog ul.lista-itens-cat{
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0px;
}
#single-blog ul.lista-itens-cat li{
  display: inline-block;
  margin: 0 10px;
  font-size: 14px;
  line-height: 20px;
  color: #797991;
  font-weight: 300;
  position: relative;
}
#single-blog ul.lista-itens-cat li:before{
  display: inline-block;
  content: '|';
  font-size: 14px;
  line-height: 20px;
  color: #797991;
  font-weight: 300;
  position: absolute;
  left: -11px;
}
#single-blog p,
.post-content p{
  font-weight: 300;
}

/*--------------------------------------------------------------
## Páginas estruturadas estilo blog
--------------------------------------------------------------*/
#page-single{
  margin-top: 80px;
}
#page-single #breadcrumbs{
  display: none;
}
#page-single h1{
  display: inline-block;
  width: 100%;
  font-size: 26px;
  line-height: 34px;
  color: #797991;
  font-weight: 300;
  text-align: center;
  background: #f4f4f6;
  padding: 20px 15px;
  margin: 15px 0;
}
#page-single p{
  font-weight: 300;
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## MEDIA
--------------------------------------------------------------*/
@media (min-width: 992px) {
  button.btn-off,
  a.btn-off,
  button.btn-padrao,
  a.btn-padrao {
    padding: 10px 25px;
  }
  #bloco-banner button.btn-off,
  #bloco-banner a.btn-off{
    margin-right: 15px;
  }
  /** MENU **/
  header#masthead{
    height: 150px;
  }
  #menu-superior{
    display: block;
    height: 70px;
    padding: 30px 0 10px 0;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
  }
  .navbar-superior ul{
    display: block;
    list-style: none;
    width: 100%;
    text-align: right;
    margin: 0;
    padding-right: 10px;
  }
  .navbar-superior ul li{
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .navbar-superior ul li a{
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    padding: 5px 10px;
  }
  .navbar-superior ul li a:hover{
    color: #00b7f3;
  }
  #menu-principal{
    height: 80px;
  }
  #menu-principal .navbar-logo{
    float: left;
  }
  #menu-principal .navbar-menu{
    float: right;
  }
  #menu-principal .navbar-logo a.btn-padrao{
    display: none;
  }
  #menu-principal .navbar-logo{
    padding: 0;
  }
  #menu-principal .navbar-logo a.image-logo{
    width: 100%;
    height: 60px;
  }
  #menu-principal .navbar-logo a.image-logo img{
    width: 200px;
    top: 5px;
  }
  #responsive-button{
    display: none;
  }
  .overlay {
    left: 0%;
    width: 100%;
    height: 80px;
    position: relative;
    top: 0px;
    background: transparent !important;
  }
  .overlay-content {
    position: relative;
    top: 0px;
    width: 100%;
    text-align: left;
    display: table;
    height: 80px;
    padding-bottom: 0px;
  }
  .menu-responsivo{
    padding: 0px;
    width: 100%;
  }
  .menu-responsivo ul{
    display: block;
    width: 100%;
    text-align: right;
  }
  .menu-responsivo ul li{
    display: inline-block;
    margin: 0;
    cursor: pointer;
  }
  .menu-responsivo ul li a{
    height: 60px;
    font-size: 14px;
    color: #fff;
    text-align: left;
    border-bottom: none;
    padding: 35px 17px 30px 17px !important;
  }
  .menu-responsivo ul li a.nav-link:hover,
  .menu-responsivo ul li.current-menu-ancestor a,
  .menu-responsivo ul li.current-menu-item a.nav-link,
  header#masthead.scroll .menu-responsivo ul li.current-menu-item a.nav-link{
    color: #00b7f3;
  }
  .menu-responsivo ul li a:before,
  .menu-responsivo ul li.current-menu-item.active a:before{
    display: none !important;
  }
  .menu-responsivo ul li.btn-padrao a{
    height: 40px;
    color: #fff;
    border-radius: 3px;
    background: #ff0856;
    padding: 9px 17px !important
  }
  .menu-responsivo ul li.btn-padrao a:hover{
    color: #fff;
    background: #d8003d !important;
  }

  .menu-responsivo .dropdown-menu{
    position: absolute !important;
    display: none !important;
    width: 100% !important;
    min-width: 250px !important;
    border-radius: 4px !important;
    padding: 10px 15px !important;
    top: 98% !important;
    left: -50% !important;
    text-align: left !important;
    background: rgba(0,15,92,0.85) !important;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(1, 13, 57, 0.3);
    -moz-box-shadow:    0px 3px 5px 0px rgba(1, 13, 57, 0.3);
    box-shadow:         0px 3px 5px 0px rgba(1, 13, 57, 0.3);
  }
  .menu-responsivo ul.dropdown-menu li{
    display: block;
    width: 100%;
    padding: 0;
  }
  .menu-responsivo ul.dropdown-menu li a{
    height: 30px;
    font-weight: 400;
    padding: 5px 0px 5px 20px !important;
    border-bottom: none !important;
    position: relative;
  }
  .menu-responsivo ul.dropdown-menu li:last-child a{
    border-bottom: none !important;
  }
  .menu-responsivo ul.dropdown-menu li a:hover,
  .menu-responsivo ul.dropdown-menu li.current-menu-item a,
  .menu-responsivo ul.dropdown-menu li a.nav-sublink.link-active {
    color: #fff;
    background: rgba(0,183,243,0.15) !important;
    border-bottom: none !important;
    text-decoration: none !important;
  }
  .menu-responsivo ul.dropdown-menu li a:before{
    display: none !important;
  }
  .menu-responsivo ul li.current-menu-ancestor a:before,
  .menu-responsivo ul li a:hover:before{
    opacity: 1;
  }

  .dropdown-toggle::after{
    top: 75px;
    left: 30px;
  }
  .dropdown .dropdown-menu{
    display: none !important;
  }
  .menu-responsivo ul li.dropdown:hover .dropdown-menu,
  .dropdown.show .dropdown-menu{
    display: block !important;
  }
  /** menu de produtos **/
  li.menu-produtos .dropdown-menu{
    width: 660px !important;
    left: -100% !important;
  }
  .lista-menu-produtos span.item-categoria{
    height: 45px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: none;
    padding-left: 20px;
  }
  .lista-menu-produtos .menu-categorias{
    display: inline-block;
    width: 33%;
    vertical-align: top;
    margin-bottom: 5px;
  }

  /** scroll **/
  header#masthead.scroll,
  header#masthead.scroll #menu-principal,
  header#masthead.scroll #menu-principal .navbar-logo a.image-logo,
  header#masthead.scroll .overlay,
  header#masthead.scroll .overlay-content{
    height: 80px;
  }
  header#masthead.scroll .overlay{
    background: transparent !important;
  }
  header#masthead.scroll #menu-superior{
    margin-top: -70px;
  }
  header#masthead.scroll .menu-responsivo ul li a{
    color: #4e586c;
    border-bottom: none;
  }
  header#masthead.scroll .menu-responsivo .dropdown-menu{
    background: rgba(231,231,235,0.95) !important;
  }
  header#masthead.scroll .menu-responsivo ul.dropdown-menu li a{
    color: #595972 !important;
    background: transparent !important;
  }
  header#masthead.scroll .menu-responsivo ul.dropdown-menu li a:hover,
  header#masthead.scroll .menu-responsivo ul.dropdown-menu li.current-menu-item a,
  header#masthead.scroll .menu-responsivo ul.dropdown-menu li a.nav-sublink.link-active{
    color: #595972;
    background: #B0B1BD !important;
  }
  header#masthead.scroll .menu-responsivo ul li.btn-padrao a{
    color: #fff !important;
  }
  header#masthead.scroll #menu-principal .navbar-logo a.image-logo img{
    top: 10px;
  }
  /** MENU **/

  /** TOPO **/
  #bloco-banner{
    height: 770px;
    padding-top: 300px;
  }
  #bloco-banner .bloco-intro{
    height: 400px;
  }
  #bloco-banner h1,
  #bloco-banner h2{
    font-size: 54px;
    line-height: 60px;
  }
  #bloco-banner p{
    font-size: 18px;
    line-height: 26px;
  }
  #bloco-banner a.btn-padrao,
  #bloco-banner a.btn-off{
    display: inline-block;
    max-width: inherit;
    margin: 7px 10px 0 0;
  }
  .page-home #bloco-banner{
    height: 1550px;
    background-size: auto 1500px;
  }
  #page-produtos #bloco-banner{
    height: 770px;
  }
  #show-produtos{
    padding-top: 120px;
  }
  #show-produtos a.btn-padrao{
    display: none;
  }

  #bloco-banner.banner-destaque{
    height: 1470px;
    background-size: auto 1120px;
  }
  #bloco-banner.banner-destaque #bloco-diferenciais{
    padding-top: 110px;
  }

  #bloco-banner.banner-reduzido{
    height: 460px;
    background-size: cover;
  }

  .page-ahgora #bloco-banner a{
    width: inherit;
  }

  #breadcrumbs{
    top: 150px;
  }

  #page-busca #bloco-banner{
    height: 420px;
    min-height: 420px;
    background-position: center 90%;
  }
  #page-busca #bloco-banner h1.subtitle{
    padding-top: 0px;
  }

  #page-blog #bloco-titulo{
    height: 210px;
    min-height: 210px;
    padding-top: 125px;
  }
  #page-blog .no-bread #bloco-titulo{
    padding-top: 110px;
  }
  #page-blog #breadcrumbs{
    top: 75px
  }
  #page-blog #bloco-titulo h2{
    font-size: 36px;
    line-height: 50px;
  }
  #blog-menu{
    height: 60px;
    margin-bottom: 5px;
  }

  /** HOME **/
  #bloco-diferenciais{
    margin-left: 0px;
    padding-left: inherit;
    padding-right: inherit;
  }
  #bloco-diferenciais .vc_column-inner{
    padding: 0px 15px;
  }
  .item-diferencial{
    min-height: 600px;
    padding-bottom: 30px;
  }
  .item-diferencial.item-small{
    min-height: 450px;
  }
  .item-diferencial h3{
    font-size: 30px;
    line-height: 36px;
  }
  .item-diferencial p{
    font-size: 18px !important;
  }
  /** TOPO **/

  /** BLOG **/
  #single-blog{
    margin-top: 80px;
  }
  #single-blog #blog-content{
    padding: 0px 15px !important;
  }
  #single-blog .thumb-destaque img{
    width: 100%;
    height: 595px;
    object-fit: cover;
    object-position: center;
  }
  #single-blog #breadcrumbs{
    display: inline-block;
    width: 100%;
    position: relative;
    top: 0;
  }
  #single-blog #breadcrumbs a,
  #single-blog #breadcrumbs span{
    color: #797991;
  }
  #single-blog #sidebar{
    margin-top: -40px;
    padding-left: 30px;
  }
  #single-blog h1{
    font-size: 36px;
    line-height: 40px;
    padding: 0;
    margin-top: 0px;
    text-align: left;
  }
  #single-blog .post-infos{
    padding: 10px 30px;
  }
  #single-blog p,
  .post-content p{
    font-size: 18px;
    line-height: 28px;
  }
  /** BLOG **/

  /** PÁGINAS ESTRUTURADAS **/
  #page-single .thumb img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
  }
  #page-single #breadcrumbs{
    display: inline-block;
    width: 100%;
    position: relative;
    top: 0;
  }
  #page-single #breadcrumbs a,
  #page-single #breadcrumbs span{
    color: #797991;
  }
  #page-single h1{
    font-size: 36px;
    line-height: 40px;
    padding: 30px;
    margin-top: 0px;
  }
  #page-single p{
    font-size: 18px;
    line-height: 28px;
  }
  /** PÁGINAS ESTRUTURADAS **/
}

@media only screen and (min-width: 767px) and (max-width: 1024px) {
  .menu-responsivo ul li.menu-ipad{
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #bloco-banner button.btn-off,
  #bloco-banner a.btn-off{
    padding: 10px 15px;
    margin: 7px 7px 0 0;
  }
  .menu-responsivo ul li a {
    padding: 35px 12px 30px 12px !important;
  }
  .menu-responsivo ul li.btn-padrao a {
    padding: 9px 12px !important;
  }
}


@media only screen and (max-width: 375px) {
  button.btn-padrao,
  a.btn-padrao{
    font-size: 16px;
  }
  #menu-principal .navbar-logo a.image-logo{
    width: 50%;
  }
  #menu-principal .navbar-logo a.btn-padrao{
    width: 52%;
    font-size: 13px;
  }
}
@media only screen and (max-width: 370px) {
  button.btn-padrao,
  a.btn-padrao{
    height: inherit;
    min-height: 50px;
    padding: 10px 15px;
  }
  #menu-principal .navbar-logo a.image-logo img{
    width: 110px;
  }
  #menu-principal .navbar-logo a.btn-padrao{
    font-size: 11px;
  }
  .hamburger{
    right: -8px;
  }
  .page-quem-somos #bloco-banner.banner-destaque{
    background-size: auto 670px;
  }
}