#topo {
	position: relative;
	z-index: 2;
}
#topo, #topo a {
	background: var(--branco);
	font-size: 14px;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--cinzatopo);
	text-decoration: none;
}
#topo:before, #topo:after {
	display: block;
	content: '';
	clear: both;
}
#topo a:hover {
	color: var(--vermelho);
}
#topo ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	justify-content: flex-end;
	margin: 0 0;
	height: 45px;
	padding-top: 13px;
}
#topo li {
	padding-right: 40px;
}
#topo li a {
	display: block;
	height: 20px;
}
#topo #acess-opcoes {
	padding-left: 16px;
	padding-right: 0;
	margin-right: 0;
}
#topo #acess-handtalk {
	padding-left: 0;
	padding-right: 0;
}
#topo #acess-opcoes svg,
#topo #acess-handtalk svg {
	margin-top: -2px;
}
#topo #acess-opcoes a:after,
#topo #acess-handtalk a:after,
h1.navbar-brand a:after, a.navbar-brand:after	{
	display: none;
	transform: none;
}
#topo svg path {
	fill: var(--cinzamenu);
}
#topo a:hover svg path {
	fill: var(--vermelho);
}
h1.navbar-brand, a.navbar-brand {
	display: block;
	float: left;
	margin-top: 24px;
	margin-bottom: 24px;
}
h1.navbar-brand span, .navbar-brand span {
	display: none;
}
h1.navbar-brand a, a.navbar-brand svg {
	float: left;
	display: block;
}
#logobranco {
	position: absolute;
	top: 0;
	left: 0;
}
#logobranco svg {
	opacity: 0;
}
#logobranco path {
	fill: var(--branco);
}
h1.navbar-brand:after, a.navbar-brand:after {
	content: '|\00a0\00a0\00a0\00a0 BLOG';
	display: block;
	float: left;
	text-transform: uppercase;
	color: var(--preto);
	font-size: 20px;
	font-weight: 400;
	margin-left: 20px;
	margin-top: 24px;
	width: auto;
	height: auto;
	background-color: transparent;
}
.single-post h1.navbar-brand:after, .single-post a.navbar-brand:after {
	color: var(--branco);
}
.single-post .navbar-brand svg path[fill="#020203"] {
	fill: var(--branco);
}
#topo a:after {
	background-color: var(--vermelho);
}




#bsc { display:none; }
#menu-topo {
	background-color: #F7F8FCcc;
	position: absolute;
	width: 100%;
	-webkit-backdrop-filter: blur(15px);
	-moz-backdrop-filter: blur(15px);
	/*backdrop-filter: blur(15px);*/
	z-index: 100;
}
.single-post #menu-topo {
	background: transparent;
	-webkit-backdrop-filter: none;
	-moz-backdrop-filter: none;
	backdrop-filter: none;
}
#wrapper-navbar:before, 
#wrapper-navbar:after, 
#menu-topo:before, 
#menu-topo:after, 
.wrapper:before, 
.wrapper:after {
	content: '';
	display: block;
	clear: both;
}
#menu-principal,
#menu-principal>ul {
	display: flex;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	justify-content: flex-end;
	float: right;
	overflow: visible;
}

@media (max-width: 575px) {
	#menu-principal,
	#menu-principal>ul {
		opacity: 0;
	}
	.loaded #menu-principal,
	.loaded #menu-principal>ul {
		opacity: 1;
	}
}

#menu-principal > li,
#menu-principal>ul > li {
	border-right: 1px solid var(--branco);
	margin-top: 38px;
	position: relative;
}
#menu-principal > li > a > span,
#menu-principal>ul > li > a > span {
	text-transform: uppercase;
	font-size: 14px;
	padding: 4px 22px;
	color: var(--cinzamenu);
	white-space: nowrap;
	transition: 0.3s color;
}
.single-post #menu-principal > li > a > span {
	color: var(--branco);
}
#menu-principal > li > a:hover > span {
	color: var(--vermelho);
}
#menu-principal > li > a:after {
	display: none;
}
#menu-principal > li.menu-item-has-children > a:after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-left: 1px;
	background: url(../images/setamenu.svg) center center no-repeat;
	transform: rotate(0deg);
	transform-origin: 50% 50%;
	margin-left: -18px;
	margin-right: 18px;
	will-change: transform;
	transition: 0.3s transform;
}
#menu-principal > li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.sub-menu {
	position: absolute;
	padding-left: 0;
	list-style: none;
	width: 200%;
	left: 49%;
	transform: translate(-50%,-10%);
	padding: 8px 12px;
	background: var(--cinzamenu);
	pointer-events: none;
	opacity: 0;
	transition: 0.2s opacity ease-out, 0.2s transform ease-out;
	will-change: opacity, transform;
}
.sub-menu a {
	padding: 8px 4px;
	color: var(--cinzaclaro);
	font-size: 14px;
	text-transform: uppercase;
	display: block;
}
.sub-menu a:after {
	background-color: var(--cinzaclaro);
}
#menu-principal > li.menu-item-has-children:hover .sub-menu {
	pointer-events: all;
	transform: translate(-50%,0);
	opacity: 1;
}
@media (max-width: 1440px) {
	#menu-principal > li > a > span {
		padding: 4px 12px;
		font-size: 13px;
	}
	#menu-principal > li.menu-item-has-children > a:after {
		width: 17px;
		height: 17px;
		background-size: 13px;
		margin-left: -8px;
		margin-right: 8px;
	}
	h1.navbar-brand, a.navbar-brand {
		margin-top: 18px;
		margin-bottom: 18px;
	}
	#menu-principal > li {
		margin-top: 32px;
	}
	.navbar-brand svg {
		width: 170px;
	}
	h1.navbar-brand:after, a.navbar-brand:after {
		font-size: 16px;
		margin-top: 29px;
		margin-left: 19px;
	}
}
@media (max-width: 720px) {
	.navbar-brand svg {
		width: 110px;
		height: 40px;
		display: block;
	}
	h1.navbar-brand, a.navbar-brand {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	h1.navbar-brand:after, a.navbar-brand:after {
		margin-top: 11px;
		margin-left: 18px;
	}
	#menu-principal > li {
		margin-top: 3px;
	}
}
.qt-redes-0 #menu-principal li:last-child a {
	padding-right: 0;
	margin-right: -10px;
}
#menu-principal li:first-child a {
	margin-left: 0;
}
#bt-menu {
	display: none;
}
/* @media (max-width: 1199px) {
	#menu-principal li a.nav-link {
		font-size: 12px;
		padding: 0.5rem 0.5rem;
	}
} */
@media (min-width: 768px) and (max-width: 991px) {
	.nav-container {
		max-width: 100%;
		margin-top: 32px;
		margin-bottom: 32px;
	}
}

.hamburguer #menu-principal {
	background-color: var(--cinza);
	color: var(--branco);
	position: fixed;
	margin-top: 45px;
	top: 0;
	right: 0;
	display: block;
	width: 395px;
	max-width: 100%;
	/*box-shadow: 0 0 30px rgba(0,0,0,0.6);*/
	padding-top: 82px;
	overflow: auto;
	height: calc( 100vh - 45px );
	transform: translateX(100%);
	transition: 0.3s transform 0.1s, 0.1s opacity 0.4s;
}
.hamburguer #menu-principal > li {
	border-right: none;
}
.hamburguer #menu-principal > li > a {
	display: block;
	text-align: right;
	padding-right: 0;;
}
.hamburguer #menu-principal > li > a > span {
	color: var(--branco);
	font-size: 24px;
	padding-right: 0;
}
.hamburguer #menu-principal > li.menu-item-has-children > a:after {
	position: absolute;
	right: -40px;
	margin-right: 0;
	margin-top: 2px;
	width: 22px;
	height: 22px;
	background-size: 16px;
	transform: rotate(90deg);
	pointer-events: none;
}
.hamburguer #menu-principal > li.menu-item-has-children.abrir > a:after {
	transform: rotate(0deg);
}
.hamburguer .sub-menu {
	position: relative;
	width: calc( 100% + 65px );
	opacity: 1;
	transform: none;
	left: 0;;
	margin-top: 7px;
	margin-bottom: -7px;
	padding-top: 0;
	padding-bottom: 0;
	height: 0;
	overflow: hidden;
	transition: 0.2s opacity, 0.2s height;
	will-change: opacity, height;
}
.hamburguer #menu-principal > li.menu-item-has-children:hover .sub-menu {
	transform: none;
}
.hamburguer #menu-principal li .sub-menu li {
	padding-right: 50px;
}
.hamburguer #menu-principal li .sub-menu li a:after {
	display: none;
}
.hamburguer .logo-nav-wrapper {
	transition: 0.8s margin-left 0.2s, 0.8s margin-right 0.2s;
}
.hamburguer #bt-menu {
	display: block;
	z-index: 10;
	width: 30px;
	height: 46px;
	float: right;
	position: fixed;
	right: 20px;
	top: 58px;
	transition: 0.8s right 0.2s;
}
.hamburguer .hamb {
	background: var(--preto);
	height: 4px;
	width: 30px;
	border-radius: 2px;
	margin: 6px 0;
	transition: 0.3s transform, 0.3s margin-left, 0.3s margin-top, 0.3s background-color;
	will-change: transform, margin-left, margin-top, background-color;
}
.hamburguer #menu-topo.aberto .hamb {
	background: var(--branco);
}
.hamburguer .hamb:nth-child(1) {
	width: 25px;
	margin-left: 5px;
}
.hamburguer .hamb:nth-child(3) {
	width: 20px;
	margin-left: 10px;
	opacity: 1;
	transition: 0.3s opacity;
}
.hamburguer .redes-nav-wrapper {
	position: fixed;
	margin-top: 0 !important;
	right: 0;
	bottom: 0;
	pointer-events: none;
}
.hamburguer .redes-nav {
	float: left;
	margin-right: 25px;
	opacity: 0;
}
.hamburguer .redes-nav:nth-child(1) {
	transition: 0.3s opacity 0s;
}
.hamburguer .redes-nav:nth-child(2) {
	transition: 0.3s opacity 0.1s;
}
.hamburguer .redes-nav:nth-child(3) {
	transition: 0.3s opacity 0.2s;
}
.hamburguer .redes-nav:nth-child(4) {
	transition: 0.3s opacity 0.3s;
}
.hamburguer .redes-nav:nth-child(5) {
	transition: 0.3s opacity 0.4s;
}

.hamburguer #menu-topo.aberto #menu-principal {
	transform: translateX(0%);
}
.hamburguer #menu-topo.aberto #bt-menu {
	/*right: calc( 285px - ( ( 100vw - 540px ) / 2 ) );*/
}
.hamburguer #menu-topo.aberto .logo-nav-wrapper {
	margin-left: calc( ( 84px - ( ( 100vw - 540px ) / 2 ) ) * -1 );
	margin-right: calc( ( 84px - ( ( 100vw - 540px ) / 2 ) ) );
}
.hamburguer #menu-topo.aberto .hamb:nth-child(1) {
	width: 30px;
	margin-left: 0;
	margin-top: 18px;
	transform: rotate(-45deg);
}
.hamburguer #menu-topo.aberto .hamb:nth-child(2) {
	transform: rotate(45deg);
	margin-top: -10px;
}
.hamburguer #menu-topo.aberto .hamb:nth-child(3) {
	transform: translateY(200%);
	margin-left: 5px;
	opacity: 0;
}
.hamburguer #menu-topo.aberto .redes-nav {
	opacity: 1;
}
.hamburguer #menu-topo.aberto .redes-nav:nth-child(1) {
	transition: 0.8s opacity 1s;
}
.hamburguer #menu-topo.aberto .redes-nav:nth-child(2) {
	transition: 0.8s opacity 0.9s;
}
.hamburguer #menu-topo.aberto .redes-nav:nth-child(3) {
	transition: 0.8s opacity 0.8s;
}
.hamburguer #menu-topo.aberto .redes-nav:nth-child(4) {
	transition: 0.8s opacity 0.7s;
}
.hamburguer #menu-topo.aberto .redes-nav:nth-child(5) {
	transition: 0.8s opacity 0.6s;
}

.hamburguer #menu-principal li {
	padding: 7px 0;
	margin-top: 0;
	padding-right: 65px;
}
.hamburguer #menu-principal li a {
	text-align: right;
	position: relative;
	font-size: 16px;
}
.hamburguer #menu-principal li a:hover,
.hamburguer #menu-principal li.current-menu-item a {
}
.hamburguer #menu-principal li.current-menu-item a:after {
}
.hamburguer .redes-nav {
	width: 20px;
	margin-right: 10px;
}
.hamburguer .redes-nav path {
}

@media (max-width: 615px) {
	.hamburguer #menu-principal {
		width: 100%;
	}
	h1.navbar-brand, a.navbar-brand {
		z-index: 10;
		position: relative;
	}
	h1.navbar-brand:after, a.navbar-brand:after {
		transition: 0.3s color;
	}
	.aberto h1.navbar-brand:after, .aberto a.navbar-brand:after {
		color: var(--branco);
		transition: 0.3s color 0.2s;
	}
	.navbar-brand svg {
		will-change: opacity;
		transition: 0.3s opacity;
	}
	.aberto .navbar-brand svg {
		opacity: 0;
		transition: 0.5s opacity 0.4s;
	}
	.aberto .navbar-brand #logobranco {
		z-index: 10;
	}
	.aberto .navbar-brand #logobranco svg {
		opacity: 1;
		transition: 0.5s opacity 0.4s;
	}
}

#topo #acess-opcoes a span {
	display: none;
}
#topo #acess-handtalk a span {
	display: none;
}
@media (min-width: 576px) {
	#topo #acess-opcoes {
		margin-right: -15px;
	}
	#topo #acess-opcoes a,
	#topo #acess-handtalk a {
		display: flex;
		align-content: center;
		line-height: 1;
		height: 34px;
		margin-top: -7px;
		padding: 4px 13px;
		border-radius: 20px;
		transition: 0.2s background;
	}
	#topo #acess-opcoes a path,
	#topo #acess-handtalk a path {
		fill: var(--preto);
		fill-opacity: 1 !important;
	}
	#topo #acess-opcoes a:hover,
	#topo #acess-handtalk a:hover {
		background: var(--cinzaclaro);
		color: var(--cinzatopo);
	}
	#topo #acess-opcoes a:hover path,
	#topo #acess-handtalk a:hover path {
		fill: var(--preto);
		fill-opacity: 1 !important;
	}
	#topo #acess-opcoes a span, 
	#topo #acess-handtalk a span {
		font-size: 14px;
		text-transform: none;
		display: block;
		padding-right: 5px;
		padding-top: 6px;
	}
}
@media (max-width: 575px) {
	.hamburguer #menu-principal {
		/*box-shadow: 0 0 15px rgba(0,0,0,0.6);*/
	}
	.hamburguer #menu-topo.aberto #bt-menu {
		/*right: 255px;*/
	}
	.hamburguer #menu-topo.aberto .logo-nav-wrapper {
		margin-left: -275px;
		margin-right: 275px;
	}
}
@media (max-width: 374px) {
	#topo li {
		padding-right: 20px;
	}
	#topo, #topo a {
		font-size: 13px;
	}
	.hamburguer #menu-principal > li > a > span {
		font-size: 19px;
	}
	.hamburguer #menu-principal > li.menu-item-has-children > a:after {
		width: 22px;
		height: 19px;
		background-size: 14px;
	}
}


#menu-rodape {
	margin-bottom: 0;
	list-style: none;
	padding-left: 0;
}
#menu-rodape li {
}
#menu-rodape a.nav-link {
	text-transform: uppercase;
}
#menu-rodape a.nav-link:hover {
}

@media (min-width: 992px and max-width: 1199px) {
	#menu-rodape li:last-child a.nav-link, #menu-rodape li:nth-last-child() a.nav-link {
		padding-right: 4px !important;
	}
}
@media (max-width: 991px) {
	#menu-rodape li a.nav-link {
		padding-left: 0;
	}
}
@media (max-width: 767px) {
	.conteudo-footer {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
}


