* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--text-color: #41494D;
	--bg-color: #F4EFED;
	--black-color: #161A1C;
	--bg-gray: #EAE6E4;
	--bg-dark-gray: #D5D0CE;
	--orange-color: #FF5800;
	--red-color: #D60808;
	--font-primary: 'Albert Sans', sans-serif;
	--font-title: 'Albert Sans', sans-serif;
	--radius-btn: 100%;
	--radius-ele: 8px;
	--transition-normal: all .35s ease-in-out;
	--transition-fast: all .15s ease-in-out;
	--transition-slow: all .5s ease-in-out;
	--transition-especial: all .25s cubic-bezier(.35, 0, .49, .99);
	--hero-opacity: 100;
	--boxshadow: 4.1px 10.6px 6.7px rgba(0, 0, 0, 0.04), 8.5px 22px 24.7px rgba(0, 0, 0, 0.055), 33px 85px 113px rgba(0, 0, 0, 0.08);
	--font-size-base: clamp(0.8125rem, 0.7822rem + 0.1515vw, 0.9375rem);
	--line-height-base: 1.36;
	--font-size-xl: clamp(2rem, 1.0476rem + 4.7619vw, 4rem);
	--font-size-small: clamp(0.6875rem, 0.6723rem + 0.0758vw, 0.75rem);
	--font-size-h1: clamp(1.75rem, 1.3258rem + 2.1212vw, 3.5rem);
	--font-size-h2: clamp(1.5rem, 1.1364rem + 1.8182vw, 3rem);
	--font-size-h3: clamp(1.25rem, 1.0076rem + 1.2121vw, 2.25rem);
	--font-size-h4: clamp(1rem, 0.7576rem + 1.2121vw, 2rem);
	--font-size-h5: clamp(0.9375rem, 0.7405rem + 0.9848vw, 1.75rem);
	--font-size-h6: clamp(0.9375rem, 0.892rem + 0.2273vw, 1.125rem);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in iOS. */
html {
	line-height: 1;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections ========================================================================== */
/** Remove the margin in all browsers. 

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.container{
	width: 1200px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
*/


/** Render the `main` element consistently in IE. */
main {
	display: block;
}

/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content ========================================================================== */
/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	border: none;
	overflow: visible;
	margin-bottom: 50px;
	border-top: 1px solid rgba(0, 0, 0, .1);
	/* 2 */
}

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics ========================================================================== */
/** Remove the gray background on active links in IE 10. */
a {
	background-color: transparent;
}

/** 1. Remove the bottom border in Chrome 57- 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	/* 2 */
}

/** Add the correct font weight in Chrome, Edge, and Safari. */
b,
strong {
	font-weight: bolder;
}

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/** Add the correct font size in all browsers. */
small {
	font-size: 80%;
}

/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content ========================================================================== */
/** Remove the border on images inside links in IE 10. */
img {
	border-style: none;
	max-width: 100%;
	height: auto;
}

.fullwidth {
	width: 100vw;
	height: auto;
}

/* end new */

a {
	text-decoration: none;
}

ul {
	list-style-type: none;
}

li {
	list-style-type: disc;
}


/* Forms ========================================================================== */
/** 1. Change the font styles in all browsers. 2. Remove the margin in Firefox and Safari. */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/** Show the overflow in IE. 1. Show the overflow in Edge. */
button,
input {
	/* 1 */
	overflow: visible;
}

/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
button,
select {
	/* 1 */
	text-transform: none;
}

/** Correct the inability to style clickable types in iOS and Safari. */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/** Restore the focus styles unset by the previous rule. */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/** Correct the padding in Firefox. */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	min-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/** Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
	vertical-align: baseline;
}

/** Remove the default vertical scrollbar in IE 10+. */
textarea {
	overflow: auto;
}

/** 1. Add the correct box sizing in IE 10. 2. Remove the padding in IE 10. */
[type="checkbox"],
[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/** Remove the inner padding in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive ========================================================================== */
/* Add the correct display in Edge, IE 10+, and Firefox. */
details {
	display: block;
}

/* Add the correct display in all browsers. */
summary {
	display: list-item;
}

/* Misc ========================================================================== */
/** Add the correct display in IE 10+. */
template {
	display: none;
}

/** Add the correct display in IE 10. */
[hidden] {
	display: none;
}

/* http://meyerweb.com/eric/tools/css/reset/  v2.0 | 20110126 License: none (public domain) */
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: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

p,
li {
	display: block;
	margin-bottom: 1.68em;
	font-size: var(--font-size-base);
	line-height: 132%;
	font-weight: 500;
}

li {
	margin-bottom: 0;
}

h1 {
	font-size: var(--font-size-h1);
}

h2 {
	font-size: var(--font-size-h4);
}

h3 {
	font-size: var(--font-size-h5);
}

h4 {
	font-size: var(--font-size-h6);
}

h5 {
	font-size: var(--font-size-h6);
}

h6 {
	font-size: var(--font-size-h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-title);
	font-weight: 900;
	line-height: 100%;
	margin-bottom: .88em;
}

.zindex-10 {
	z-index: 10;
	position: relative;
}

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;
}

button:focus {
	outline: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

strong,
b {
	font-weight: 900;
}

.t-right {
	text-align: right;
}

.t-left {
	text-align: left;
}

.t-center {
	text-align: center;
}

/* NEW CSS */
main {
	display: block;
}

body {
	margin: 0;
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	overflow-x: hidden;
}

.h-100 {
	height: 100%;
}

.h-auto {
	height: auto;
}

/* ////// HEADER */

.btn-cta {
	border-radius: var(--radius-btn);
	display: inline-flex;
	align-items: center;
	margin-left: 5px;
}

.btn-cta .icon {
	width: 32px;
	height: 32px;
	display: inline-block;
	line-height: 0;
	padding: 4px;
	position: relative;
	z-index: 2;
}

.o-title, .orange-block h1, .orange-block h2 {
	font-size: var(--font-size-h2);
	line-height: .88em;
	font-family: var(--font-title);
	margin-bottom: .25em;
}
.cat-title{
	font-size: var(--font-size-h5);
	line-height: .88em;
	font-family: var(--font-title);
	margin-bottom: 2em;
	line-height: 1;
	font-weight: 500;
}
.cat-title span{
	display: block;
	font-weight: 700;
	font-size: var(--font-size-h2);
}
.orange-block .img{
	width: 200px;
	max-width: 100%;
	margin: 0 auto;
	display: block;
}
.meta.pagemeta{
	font-size: var(--font-size-small);
	margin-bottom: 2em;
	margin-top: .36em;
}
.o-title.big {
	font-size: var(--font-size-h1);
}
.oferta .o-title,
.oportunidades .o-title {
	font-size: var(--font-size-h1);
	margin-bottom: .5em;
}
.o-title.o-ofertas__block-title,
.o-title.o-oportunidades__block-title {
	font-size: var(--font-size-h4)
}
.oferta .o-title.o-title__filters,
.oportunidades .o-title.o-title__filters {
	margin-bottom: 1rem;
	margin-top: .5em;
	margin-right: 30px;
	font-size: var(--font-size-h3);
}

.o-subtitle {
	font-size: 1.36em;
	line-height: 1.2em;
	font-family: var(--font-title);
	margin-bottom: 0;
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
	border: 1px solid var(--bg-dark-gray);
	border-radius: 6px;
	font-size: 16px;
	width: 100%;
	height: 44px;
	line-height: 44px;
	font-weight: 500;
	text-align: left;
	padding: 0 10px;
	color: var(--text-color);
	max-width: 100%;
}
textarea{
	height: 120px;
	line-height: 120%;
	padding: 10px;

}
input[type="date"]:hover, 
input[type="date"]:focus,
input[type="search"]:hover, 
input[type="search"]:focus,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
textarea:hover,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus{
	border: 1px solid var(--text-color);
}
.contato input[type="submit"], 
input[type="submit"]{
	display: inline-flex;
align-items: center;
justify-content: center;
width: auto;
text-align: center;
color: var(--bg-color);
text-align: center;
border-radius: var(--radius-ele);
padding: 0 1.86em;
font-weight: 500;
font-size: 1.1rem;
line-height: 1em;
min-height: 44px;
letter-spacing: -0.025em;
position: relative;
transition: var(--transition-especial);
cursor: pointer;
	border: none;
	background-color: var(--orange-color);
color: var(--bg-color);
margin-top: 1em;
}
.bg-orange input[type="submit"]{
	background-color: var(--text-color);
	color: var(--bg-color);
}
.bg-orange input[type="submit"]:hover{
	background-color: var(--black-color);
}
.bg-orange input{
	margin-top: 5px;
}

.bg-laranja-new {
	 background: url(../design/imagem-banner-fundolaranja.png) right center no-repeat!important;
	 background-size:cover;
}


form .group{
	width: 100%;
}
.contato label, form label{
	margin-top: 1em;
	font-size: var(--font-size-small);
	text-align: left;
	display: inline-block;
	width: 100%;
}
.contato select, form select {
    border: 1px solid var(--bg-dark-gray);
	border-radius: 6px;
	font-size: 16px;
	width: 100%;
	height: 44px;
	line-height: 44px;
	font-weight: 500;
	text-align: left;
	padding: 0 15px;
	color: var(--text-color);
	max-width: 100%;
    display: inline-block;
    cursor: pointer;
    color: var(--text-color);
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url(../design/select.svg) right center no-repeat;
    background-size: 25px;
    box-sizing: border-box;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
}

.contato select:hover, form select:hover {
	border: 1px solid var(--text-color);
}
.anbbt_ordering{
	width: 300px;
	max-width: 100%;
}
.site-main .eb-accordion-container .eb-accordion-content-wrapper .eb-accordion-content{
	background-color: #fff;
	border: none;
	padding: 10px 20px 15px 44px;
}
.site-main .eb-accordion-container .eb-accordion-wrapper + .eb-accordion-wrapper,
.site-main .eb-accordion-container .eb-accordion-wrapper + .eb-accordion-wrapper{
	padding-top: 5px;
}
.search-ofertas,
.search-post,
.search-oportunidades {
	position: relative;
}
.search-ofertas div,
.search-post div,
.search-oportunidades div {
	display: flex;
}
.search-ofertas input[type="search"],
.search-post input[type="search"],
.search-oportunidades input[type="search"]{
	border: none;
	height: 38px;
	line-height: 38px;
	padding-left: 40px;
}
.search-ofertas input[type="search"]:hover,
.search-ofertas input[type="search"]:focus,
.search-post input[type="search"]:hover,
.search-post input[type="search"]:focus,
.search-oportunidades input[type="search"]:hover,
.search-oportunidades input[type="search"]:focus {
	box-shadow: inset 0 0 0 1px rgb(0 0 0 / 20%);
}
.search-ofertas button,
.search-post button,
.search-oportunidades button {
	position: absolute;
	cursor: pointer;
	height: 38px;
	width: 38px;
	min-height: 38px;
	padding: 0;
	top: 0;
	left: 0;
  }
  .search-ofertas button img,
  .search-oportunidades button img,
  .search-post button img{
	width: 18px;
	margin: 0!important;
  }
.btn-search .wp-block-search__inside-wrapper {
	position: relative;
}
.btn-search button[type="submit"]{
	background-image: url(../design/search.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    background-color: transparent;
    border: none;
    top: 2px;
    right: 2px;
    font-size: 0;
}
.popmake .wpcf7 form.sent .wpcf7-response-output{
	position: absolute;
	z-index: 999;
	top: 0;
	background-color: var(--bg-color);
	height: 100%;
	margin: 0;
	display: flex;
	align-items: center;
	text-align: center;
	border: none;
	font-size: var(--font-size-h5);
}
.input-top {
	margin-right: 15px;
	width: 240px;
	max-width: 100%;
}

.icon-w {
	width: 4vw;
	min-width: 30px;
}

.icon-80 {
	width: 80px;
}

.icon-60 {
	width: 60px;
}

.icon-50 {
	width: 50px;
}

.icon-40 {
	width: 40px;
}

.icon-20 {
	width: 20px;
}

.p-b {
	padding: 2rem !important;
}

.pt-b,
.py-b {
	padding-top: 2rem !important;
}

.pr-b,
.px-b {
	padding-right: 2rem !important;
}

.pb-b,
.py-b {
	padding-bottom: 2rem !important;
}

.pl-b,
.px-b {
	padding-left: 2rem !important;
}

.o-hamburguer {
	width: 32px;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	cursor: pointer;
	align-items: flex-start;
	margin: 0 0 0 20px;
}

.o-hamburguer__line {
	width: 28px;
	height: 2px;
	background-color: var(--text-color);
	display: block;
	border-radius: 0;
	margin: 3px 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.o-hamburguer.active .o-hamburguer__line:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}

.o-hamburguer.active .o-hamburguer__line:nth-child(2) {
	opacity: 0;
}

.o-hamburguer.active .o-hamburguer__line:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}

.mainmenu.desktop,
.o-header .mainmenu-secundary .menu-item {
	display: none;
}
.o-header .mainmenu-secundary .menu-item.btn.btn-login{
	display: inline-flex;
}
.is-open .mainmenu {
	display: block;
}

.mainmenu .menu,
.mainmenu-secundary .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.mainmenu-secundary {
	margin: 0 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: end;
}
.mainmenu .menu .sub-menu,
.mainmenu-secundary .menu .sub-menu {
	display: block;
	visibility: hidden;
	opacity: 0;
	position: relative;
	top: 0;
	left: 0;
	line-height: 1em;
	transition: var(--transition-especial);
	width: 100%;
	background-color: var(--bg-color);
	padding: 1em;
	border-radius: 0 0 6px 6px;
	box-shadow:var(--boxshadow);
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f4efed+57,fcf8f7+100 */
background: -moz-linear-gradient(top,  #f4efed 57%, #fcf8f7 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #f4efed 57%,#fcf8f7 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #f4efed 57%,#fcf8f7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4efed', endColorstr='#fcf8f7',GradientType=0 ); /* IE6-9 */

  }
.mainmenu .menu li:hover .sub-menu,
.mainmenu-secundary .menu li:hover .sub-menu{
	display: block;
	visibility: visible;
	opacity: 1;
	left: 0;
	top: 0;
  }
.mainmenu ul li,
.mainmenu-secundary ul li {
	padding: 0;
	margin: 0;
	position: relative;
}
.mainmenu .menu .sub-menu li,
.mainmenu-secundary .menu .sub-menu li {
	display: block;
	width: 100%;
  }

.mainmenu ul li a,
.submenu-item ul li a,
.mainmenu-secundary ul li a {
	font-weight: 500;
	font-size: var(--font-size-base);
	letter-spacing: -0.035em;
	color: var(--text-color);
	padding: 1em 0;
	line-height: 1.2em;
	margin: 0 .5em;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.mainmenu ul li a::before,
.mainmenu-secundary ul li a::before {
	content: "";
	display: block;
	width: 0;
	bottom: 5px;
	right: 0;
	position: absolute;
	height: 3px;
	background-color: var(--text-color);
	transition: var(--transition-especial);
}
.mainmenu-secundary ul li .sub-menu a {
	justify-content: start;
	text-align: left;
}
.mainmenu ul li a:hover:before,
.mainmenu ul li.droplink.active a:before,
.mainmenu-secundary ul li a:hover::before {
	width: 100%;
	right: auto;
	left: 0;
}
.mainmenu ul.sub-menu li a,
.mainmenu-secundary ul.sub-menu li a  {
	padding: .5em 0;

}
.JS__menu .mainmenu ul {
	flex-direction: column;
}

.JS__menu .mainmenu ul li {
	display: block;
	width: 100%;
	margin-bottom: 2px;
}
.nav-mobile .mainmenu.navbar-nav{
	padding: 0;
	margin-bottom: 50px;
	margin-top: 30px;
}
.JS__menu .mainmenu ul li a,
.JS__menu .submenu-item ul li a {
	color: var(--text-color);
	font-size: var(--font-size-h4);
	padding: .6em;
	margin: 0;
	border-radius: 0;
	border-bottom: 1px solid #00000013;
	text-align: left;
}
.JS__menu .mainmenu ul.sub-menu li a,
.JS__menu .mainmenu ul li.active a{
	border-bottom: none!important;
}
.submenu-item ul li a {
	padding: 0 10px;
}

.mainmenu ul li a img,
.submenu-acougue ul li a img,
.submenu-item li a img {
	width: 42px;
	margin-right: 15px;
	-webkit-transition: var(--transition-fast);
	transition: var(--transition-fast);
}

.submenu-item ul li a:hover img {
	margin-right: 20px;
	transform: scale(1.2);
}

.submenu-item ul li a {
	text-transform: inherit;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.submenu-item ul li:last-child a {
	border-bottom: none;
}

.acougue-menu a,
.menu-close-search {
	cursor: pointer;
}

.mainmenu ul li.droplink.active .sub-menu a:before,
.nav-mobile .mainmenu ul li a:before {
	display: none;
}

.nav-mobile .droplink a:after {
	top: 18px;
}

.nav-mobile .mainmenu ul li a img {
	width: 35px;
}

.nav-mobile .mainmenu ul.sub-menu li a {
	padding: .6em 0 .6em 1.6em;
}
.wpml-ls-legacy-list-vertical a{
	text-align: left;
	color: var(--text-color);
}

.relative {
	position: relative;
}
.nav-mobile .menu-item-has-children a::after{
	right: 15px;
}
.nav-mobile .mainmenu .menu li .sub-menu{
	max-height: 0;
	transition: var(--transition-especial);
	visibility: hidden;
	opacity: 0;
    padding: 0;
}
.nav-mobile .mainmenu .menu li.active .sub-menu{
	max-height: 1000px;
	opacity: 1;
    visibility: visible;
}
.alert {
	width: 100%;
	position: relative;
	z-index: 9999;
	background-color: var(--orange-color);
	overflow: hidden;
	height: 40px;
	top: 0;
	left: 0;
	transition: var(--transition-normal);
}

.alert.remove {
	height: 0;
}

.bg-orange {
	background-color: var(--orange-color);
	color: var(--bg-color);
}

.bg-black {
	background-color: var(--text-color);
	color: var(--bg-color);
}

.btn-alert {
	padding: 1px 5px;
	margin-left: 10px;
	border-radius: 20px;
	border: 1px solid #fff;
	transition: var(--transition-fast);
	white-space: nowrap;
}

.btn-alert:hover {
	background-color: var(--text-color);
	border-color: var(--text-color);
	text-decoration: none;
}
.hidden-mobile{
	visibility: hidden;
	display: none;
}
.closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
	position: absolute;
	right: 30px;
	top: 10px;
	z-index: 999;
}

.closebtn:hover {
	color: black;
}

.o-header {
	position: fixed;
	z-index: 998;
	width: 100%;
	top: 0;
	left: 0;
	padding: 0;
	height: 90px;
	background-color: var(--bg-color);
	-webkit-transition: var(--transition-normal);
	transition: var(--transition-normal);
	border: none;
	display: flex;
	align-items: center;
}
.o-header .col-main-menu{
	padding-left: 15px;
	padding-right: 15px;
}
.o-header .container {
	z-index: 10;
	position: relative;
}
.print-brand{
	display: none;
}
.brand {
	width: 130px;
	position: relative;
	z-index: 10;
}

.brand .bbh-brand {
	width: 130px;
	margin-bottom: 5px;
	height: auto;
	display: block;
}

.brand .door-hanger {
	width: 26px;
	height: auto;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	animation: doorhanger cubic-bezier(0.5, 0, 0.5, 1) 7s infinite;
	transform-origin: 55% 10%;
}

.login-form-bbh .brand {
	width: 50px;
}

.login-form-bbh .brand .door-hanger {
	position: relative;
}
.br{
	border-radius: var(--radius-ele);
}
@keyframes doorhanger {
	0% {
		transform: rotate(0deg);
	}

	92% {
		transform: rotate(0deg);
	}

	94% {
		transform: rotate(-5deg);
	}

	96% {
		transform: rotate(7deg);
	}

	98% {
		transform: rotate(-3deg);
	}
}

.submenu-page {
	background-color: var(--blue-color);
}

.submenu-page a {
	font-weight: 600;
	color: var(--bg-color);
	padding: 14px 0;
	line-height: 1.2em;
	margin: 0;
	text-transform: uppercase;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	font-size: 14px;
	letter-spacing: .025em;
	padding: 8px 15px;
	border-radius: 20px;
	margin: 5px;
	transition: var(--transition-fast);
	box-shadow: inset 0 0 0 2px #fff;
}

.submenu-page a:hover {
	background-color: var(--bg-color);
	color: var(--text-color);
}

.hide {
	top: -180px;
}


.nav-right {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: end;
	justify-content: end;
}


.no-gutter-r {
	padding-right: 0 !important;
}

.space-top-25 {
	margin-top: 2vw;
}

.space-top-50 {
	margin-top: 4vw;
}

.space-top-80 {
	margin-top: 5vw;
}

.space-top-100 {
	margin-top: 8vw;
}

.space-top-120 {
	margin-top: 10vw;
}

.space-bottom-25 {
	margin-bottom: 2vw;
}

.space-bottom-50 {
	margin-bottom: 4vw;
}

.space-bottom-80 {
	margin-bottom: 5vw;
}

.space-bottom-100 {
	margin-bottom: 8vw;
}

.space-bottom-120 {
	margin-bottom: 10vw;
}

.login-form-bbh {
	background-color: var(--text-color);
	color: var(--bg-color);
	padding: 30px;
	border-radius: var(--radius-ele);
	margin: 0 auto;
	box-shadow: var(--boxshadow);
	margin-top: 30px;
	position: relative;
	z-index: 990;
}
.login-form-bbh .top-login{
	display: block
}
.login-form-bbh .top-login-input{
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
}
.login-form-bbh label {
	width: 100%;
	font-weight: 900;
	font-size: 1.88em;
	margin-bottom: 1em;
	margin-top: 0;
	line-height: 100%;
	text-align: center;
}
.multiply{
	mix-blend-mode: multiply;
}
.login-form-bbh.header-login .top-login,
.login-form-bbh__modal .top-login{
	display: block;
}
/* FORM CONTATO */
.cadastro-container {
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	padding: 3em 15px;
  }

input.previous.action-button {
    border: none;
    background-color: transparent;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    z-index: 10;
    position: relative;
    display: block;
    cursor: pointer;
    box-shadow: none;
	width: 100%;
	height: 100%;
}

.voltar {
	display: block;
	position: absolute;
	top: auto;
	left: 0;
	width: 60px;
	height: 50px;
	font-size: 3em;
	font-weight: 400;
	margin: 0 auto;
	box-sizing: content-box;
	opacity: .5;
	bottom: 0;
	right: 0;
}
.voltar:hover{
	opacity: 1;
}
.voltar:before {
	content: "";
	display: block;
	width: 35px;
	height: 35px;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../design/arrow-voltar.svg);
	background-repeat: no-repeat;
	background-size: contain;
	right: 0;
	margin: 7px auto;
}

#msform {
    min-height: 700px;
    text-align: center;
    position: relative;
    margin-bottom: 3em;
}

#msform fieldset {
    box-sizing: border-box;
    width: 100%;
    min-height: 500px;
    /*stacking fieldsets above each other*/
    position: relative;
}

.reveal-if-active {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.2s;
	position: absolute;
left: 200px;
top: 0px;
display: flex;
}

.reveal-if-active label {
    display: inline-block;
    margin: 0 0 3px 0;
    width: 30%;
}

.content-form.como-conheceu ul li input[type=radio]:checked ~ .reveal-if-active {
    opacity: 1;
    max-height: 100px;
    padding: 0;
    overflow: visible;
	z-index: 10;
}

.content-form.como-conheceu input[type=text] {
    width: 70%;
    max-width: 300px;
    float: left;
	margin-top: -3px;
}

/*Hide all except first fieldset*/
.contato .title{
	font-size: var(--font-size-h3);
}
#msform fieldset:not(:first-of-type) {
    display: none;
}

.contato .upload {
    padding: 20px;
    background-color: var(--bg-gray);
    display: inline-block;
    margin: 0 0 30px 0;
    width: 100%;
    border-radius: 3px;
}

.contato .upload button {
    width: 100%;
    background-color: #41494d;
}

.contato .upload button:hover {
    background-color: #fff;
    color: var(--text-color);
}

.contato label.sr-only {
    display: none;
}

.content-form ul.ul-form {
    margin: 0 0 30px 0;
    display: inline-block;
}

.content-form ul.ul-form li {
    margin-bottom: .25em;
	list-style: none;
	text-align: left;
}
.content-form h2{
	font-size: var(--font-size-h5);
	font-weight: 500;
	margin-top: 2em;
}
form p{
	margin-bottom: 0;
}
.col-curriculo-file .wpcf7-file, 
.contato .inputdnd input.form-control-file {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 6em;
    margin: 0;
    padding: 0;
    outline: none;
    visibility: hidden;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 0 0 5px solid var(--text-color);
}
.col-curriculo-file .wpcf7-file:before,
.form-control-file:before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    width: 100%;
    min-height: 6em;
    line-height: 5.5em;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    text-align: center;
    border: 2px dashed var(--text-color);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    overflow: hidden;
    border-radius: 6px;
}

.wpcf7-file:hover:before {
    border-style: solid;
    box-shadow: inset 0px 0px 0px 3px var(--text-color);
}

.content-area.cadastro header {
    min-height: 150px;
	width: 100%;
	position: relative;
	padding: 0;
	margin: 0;
}


.content-form {
    min-height: 250px;
    float: left;
    width: 100%;
    position: relative;
    padding: 0;
}

.content-area.cadastro .first header {
    min-height: 200px
}

.first .content-form {
    min-height: 200px;
}


.percent {
    display: inline-block;
    width: 50%;
    text-align: left;
    margin-top: .5em;
    font-weight: 400;
}

.percent .label {
    display: block;
    text-align: center;
    font-size: 1em;
    margin-bottom: 2em;
}

.percent.right {
    float: right;
    text-align: right;
}

.label {
    width: auto;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    color: var(--text-color);
    font-size: .8em;
    font-weight: 400;
}

.slider-form {
    width: 100%;
    float: none;
}

input.amount {
    color: var(--orange-color);
    font-weight: bold;
    width: auto;
    display: block;
    text-align: center;
    border: 0;
    box-shadow: none;
    margin: 0 auto;
    padding: 0;
    float: none;
    font-size: 1.4em;
    height: 2em;
    font-family: 'Roboto', sans-serif;
	background-color: transparent;
}

.content-form ul {
    list-style: none;
    margin: 2em auto;
    padding: 0;
    display: block;
    max-width: 540px;
}

.content-form ul li {
    color: var(--text-color);
    display: block;
    position: relative;
    float: left;
    width: 100%;
    background: none;
    padding: 0;
}

.content-form ul li input[type=radio],
.content-form ul li input[type=checkbox] {
    position: absolute;
    visibility: hidden;
    left: 0;
}

.content-form ul li label {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 1em;
    color: var(--text-color);
    padding: .5em 2.2em;
    margin: .25em auto;
    height: auto;
    z-index: 9;
    line-height: 1.2em;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
}

.content-form ul li:hover label {
    color: #333;
}
.errors-box .errors {
	margin: 0 auto 1.5em;
	padding: .25em .75em;
	text-transform: uppercase;
	text-align: center;
	background-color: var(--orange-color);
	color: var(--bg-color);
	font-weight: 700;
	display: block;
  }
.contato .next.action-button{
	min-width: 180px;
}
.content-form ul li .check {
    display: block;
    position: absolute;
    border: 4px solid #cccccc;
    background-color: #cccccc;
    border-radius: 0;
    height: 22px;
    width: 22px;
    top: 50%;
	transform: translateY(-50%);
    left: 0;
    z-index: 5;
    -webkit-transition: border 0.25s ease 0s;
    -moz-transition: border 0.25s ease 0s;
    -o-transition: border 0.25s ease 0s;
    -ms-transition: border 0.25s ease 0s;
    transition: border 0.25s ease 0s;
	border-radius: 6px;
}

.content-form ul li:hover .check {
    background-color: #999;
}

.content-form ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 0;
    height: 15px;
    width: 15px;
    top: 5px;
    left: 5px;
    margin: auto;
    -webkit-transition: background 0.25s ease 0s;
    -moz-transition: background 0.25s ease 0s;
    -o-transition: background 0.25s ease 0s;
    -ms-transition: background 0.25s ease 0s;
    transition: background 0.25s ease 0s;
}

.content-form ul li input[type=radio]:checked ~ .check,
.content-form ul li input[type=checkbox]:checked ~ .check {
    border: 4px solid #cccccc;
    background-color: var(--orange-color)
}

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: 160px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    display: none;
}

#progressbar li {
    list-style-type: none;
    color: #999;
    text-transform: uppercase;
    font-size: 9px;
    width: 16.66%;
    float: left;
    position: relative;
    background: none;
    padding: 0;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 1em;
    color: #fff;
    background: #ddd;
    border-radius: 100%;
    margin: 0 auto 5px auto;
}

#progressbar li.active:before {
    background-color: var(--orange-color);
}


/*progressbar connectors*/

#progressbar li:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li.active:after {
    background-color: var(--orange-color);
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

.contato .ui-widget.ui-widget-content {
    border: none;
    background-color: var(--text-color);
    height: .4em;
    border-radius: .2em;
}

.contato .ui-slider-horizontal .ui-slider-range-min {
    background-color: var(--text-color);
}

.contato .ui-state-default,
.contato .ui-widget-content .ui-state-default,
.contato .ui-widget-header .ui-state-default,
.contato .ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    background-color: var(--text-color);
    border: none;
    border-radius: .5em;
    width: 2em;
    height: 2em;
    top: -.8em;
    margin-left: -1em;
    cursor: pointer;
}

.contato .ui-state-default:hover,
.contato .ui-widget-content .ui-state-default:hover,
.contato .ui-widget-header .ui-state-default:hover,
.contato .ui-button:hover {
    background-color: var(--orange-color);
}
.illustration{
	width: 80px;
	margin: 30px auto;
}
/* SWIPER STYLE */
.swiper-creative .swiper-slide {
	line-height: 0;
}

.JS__home-banner {
	line-height: 0;
}

.swiper-container.JS__home-banner .image {
	width: 100%;
	height: 50vw;
	background-size: cover;
}
.swiper-container{
	position: relative;
}
.swiper-slide-shadow {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 80%);
	position: absolute;
}

.swiper-navigation {
	display: none;
	visibility: hidden;
}

.o-image-container {
	width: 100%;
	height: auto;
	position: sticky;
	top: 120px;
	overflow: hidden;
}

.c-home__banner {
	position: relative;
	width: 100vw;
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto;
}

.c-home__banner__item.c-home__banner__mobile {
	display: block;
}

.c-home__banner__item.c-home__banner__desktop {
	display: none;
}

.c-home__banner__item.c-home__banner__desktop img {
	width: 100vw;
	margin-right: 0;
	margin-left: 0;
	height: auto;
	object-fit: cover;
	display: block;
}

.c-home__banner__item.c-home__banner__desktop img.fullimage {
	width: 100vw;
	margin-left: 0;
}

.c-home__banner__item.c-home__banner__desktop a {
	display: inline-block;
	width: 100%;
	color: var(--text-color);
}

.c-home__banner_content {
	height: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	top: 0;
	position: absolute;
	left: 0;
	right: 0;
	text-align: left;
	box-sizing: border-box;
	z-index: 99999;
	opacity: 1;
	-webkit-transition: var(--transition-fast);
	transition: var(--transition-fast);
}

.c-home-title-inner {
	display: flex;
	padding: 0;
	min-height: 100%;
	align-items: center;
}

.c-home__banner_content h1 {
	font-size: 6.6vw;
	letter-spacing: -0.025em;
	font-family: var(--font-title);
	line-height: .88em;
	font-weight: 900;
	margin-bottom: .35em;
	display: block;
	width: 100%;
	color: var(--bg-color);
}

.c-home__banner_content h1 .chamada {
	font-weight: 300;
	display: block;
	font-size: .35em;
	letter-spacing: .25em;
	text-transform: uppercase;
}

.c-home__banner_content b {
	font-weight: 800;
	display: block;
}
.border-top{
	border-top: 1px solid rgba(255, 255, 255, .1);
}
#antidesign {
	background-image: url(../design/antidesign.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	height: 28px;
	width: 60px;
	display: block;
	margin: 0 auto;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	opacity: .5;
  }
  #antidesign:hover {
	opacity: 1;
  }
.c-home__banner_content .btn,
.btn,
#navigation .button a, 
#agente-menu .button a, 
a.button, button, 
.contato input[type="submit"], 
.action-button.next,
.o-header .btn a {
	display: inline-flex;
	border: none;
	align-items: center;
	justify-content: center;
	width: auto;
	text-align: center;
	color: var(--bg-color);
	text-align: center;
	border-radius: var(--radius-ele);
	padding: 0 1.86em;
	font-weight: 500;
	font-size: var(--font-size-base);
	line-height: 1em;
	min-height: 44px;
	letter-spacing: -0.025em;
	position: relative;
	transition: var(--transition-especial);
	cursor: pointer;
}
.o-header .btn.btn-light a {
	box-shadow: 0 0 0 1px var(--text-color);
	color: var(--text-color);
}
.o-header .btn.btn-light a:hover {
	box-shadow: 0 0 0 1px var(--text-color);
	color: var(--bg-color);
	background-color: var(--text-color);
}
.o-header .menu-main-menu-direita-container .btn:last-child a{
	margin-right: 0;
}
.o-header .btn a:before {
	display: none;
}

.o-header .btn a {
	margin: 0 .15em;
	padding: 0 1.16em;
}

.c-home__banner_content .btn {
	padding-right: 5.3em;
	box-shadow: 0 0 0 1px var(--bg-color);
}

.btn.btn-submit,
.o-header .btn.btn-orange a,
#navigation .button a, 
#agente-menu .button a, 
a.button, button, 
.contato input[type="submit"], 
.action-button.next,
.btn.btn-orange,
.o-header .btn.btn-login.active a {
	background-color: var(--orange-color);
	color: var(--bg-color);
}
.btn.btn-black {
	background-color: var(--black-color);
	color: var(--bg-color);
}
.btn.btn-black:hover{
	background-color: var(--text-color);
}
.printomatictext{
	margin-left: 10px;
}
.o-header .btn.btn-login a:before{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	z-index: -1;
	opacity: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border: 0 solid transparent;
	border-left-width: 6px;
	border-right-width: 6px;
	border-top: 6px solid var(--text-color);
	background-color: transparent;
	transition: var(--transition-especial);
}
.o-header .btn.btn-login.active a:before{
		bottom: -6px;
		opacity: 1;
		border-top: 6px solid var(--orange-color);
}
.o-header .btn.btn-login a {
	background-color: var(--text-color);
	color: var(--bg-color);
}
.o-header .btn.btn-login a:after {
	content: "";
	background-image: url(../design/user.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
	margin-left: 8px;
}
.o-header .ico-regiao a:after{
	content: "";
	background-image: url(../design/globo.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-left: .35em;
}
.btn.btn-ghost {
	background-color: transparent;
	color: var(--text-color);
	box-shadow: inset 0 0 0 1px var(--text-color);
}
.btn.clear-search{
	min-height: 38px;
	background-color: transparent;
	color: var(--text-color);
	box-shadow: inset 0 0 0 1px var(--bg-dark-gray);
	margin-left: 10px;
}
.btn.clear-search:hover{
	background-color: #fff;
}
.btn.btn-ghost:hover {
	background-color: var(--text-color);
	color: var(--bg-color);
}

.btn.btn-ghostnew {
	background-color: transparent;
	color: var(--bg-color);
	box-shadow: inset 0 0 0 1px var(--text-color);
	font-size: .88rem;
}

.btn.btn-ghostnew:hover {
	box-shadow: inset 0 0 0 1px var(--bg-color);
}

.o-header .btn a:hover,
.btn-submit:hover,
.btn.btn-orange:hover,
.action-button.next:hover,
.contato input[type="submit"]:hover {
	background-color: var(--black-color);
}

.btn-white {
	background-color: var(--bg-color);
	color: var(--text-color);
}

.btn-white:hover {
	background-color: var(--text-color);
	color: var(--bg-color);
}

.o-header .btn.btn-orange,
.o-header .btn.btn-orange:hover {
	background-color: transparent;
}
.btn-min{
	min-width: 210px;
}
.btn-arrow,
.a-arrow {
	padding: 0;
	padding-right: 50px;
	margin-right: 50px;
	box-sizing: border-box;
	align-items: end;
	line-height: 1.2em;
	align-self: end;
	font-size: 1.06rem;
	color: var(--bg-color);
	position: relative;
	font-family: var(--font-title);
}

.btn-arrow:after,
.a-arrow:after {
	content: "";
	background-image: url(../design/arrow.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: center;
	display: inline-block;
	width: 30px;
	height: 30px;
	min-height: 30px;
	margin-left: 30px;
	transition: var(--transition-especial);
	bottom: -6px;
	right: 0;
	position: absolute;
}

.btn-arrow:after {
	height: 100%;
	bottom: 0;
	top: 0;
	right: 1.36em;
}

.a-arrow:hover:after {
	right: -10px;
}

.btn:hover:after {
	right: -.86em;
}
.content-area table{
	border-collapse: collapse;
    border-spacing: 0;
	width: 100%;
    border: 1px solid #0000002e;
	height: auto!important;
    margin-bottom: 1.68em;
}
.content-area th, td {
	padding: 0.25rem;
	text-align: left;
	border: 1px solid #0000002e;
  }
.content-area tbody tr:hover {
	background:var(--bg-dark-gray);
  }
.content-area ul{
	margin-left: 1.86em;
	margin-bottom: 2.16em;
	margin-top: .28em;
}
.content-area ul li{
	margin-bottom: .36em;
	list-style-type: disc;
	list-style-position: inside;
	display: list-item;
	
}
.content-area ul li.o-list_item{
	margin-bottom: 0;
	display: block;
}
.c-home__banner__item.c-home__banner__desktop a:hover .btn {
	background-color: var(--orange-color);
}

.c-home__banner .swiper-container .swiper-pagination-bullets {
	width: auto;
	margin: 0 auto;
	padding: 0 0 15px 30px;
	position: absolute;
	left: auto;
	right: 5%;
	bottom: 20px;
	text-align: center !important;
	border-radius: 0;
	line-height: 0;
}

.c-home__banner .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullet {
	border-radius: 4px;
	width: 8px;
	height: 8px;
	margin: 2px;
	background-color: var(--bg-dark-gray);
	opacity: 1;
	transition: var(--transition-especial);
}

.c-home__banner .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
	background-color: var(--orange-color);
	height: 8px;
	width: 15px;
}

.swiper-pagination-bullet-active {
	width: 15px;
	background-color: var(--orange-color);
}

.swiper-button-container {
	position: absolute;
	left: auto;
	right: 10vw;
	bottom: 10px;
	width: 100px;
	height: 45px;
	z-index: 9;
	display: flex;
}

.o-swiper-button-next,
.o-swiper-button-prev {
	background: #fff;
	box-shadow: var(--boxshadow);
	color: var(--text-color);
	font-weight: 600;
	line-height: 44px;
	margin: 0 4px;
	height: 44px;
	width: 44px;
  min-height: 44px;
	min-width: 44px;
	border-radius: var(--radius-btn);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	-webkit-transition: var(--transition-fast);
	transition: var(--transition-fast);
	background-image: url(../design/arrow-right.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 28px;
}

.o-swiper-button-prev,
.swiper-button-prev {
	border-radius: var(--radius-btn);
	background-image: url(../design/arrow-left.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 28px;
}

.o-swiper-button-next:hover,
.o-swiper-button-prev:hover {
	background-color: var(--orange-color);
}

.swiper-button-disabled,
.swiper-button-disabled.o-swiper-button-next:hover,
.swiper-button-disabled.o-swiper-button-prev:hover {
	opacity: .1;
	background-color: var(--bg-color);
	pointer-events: auto ! important;
	cursor: not-allowed ! important;
}

.submenu-acougue,
.submenu-search,
.submenu-item {
	height: auto;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	position: absolute;
	background: var(--bg-color);
	top: -1px;
	width: 100%;
	-webkit-transition: var(--transition-normal);
	transition: var(--transition-normal);
	will-change: transform;
	overflow: hidden;
	min-height: inherit;
	padding: 30px 0 30px 175px;
	opacity: 1;
	z-index: 888;
}

.submenu-acougue.open,
.submenu-search.open,
.submenu-item.open {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	box-shadow: 0 30px 30px 0 #00000047;
}

.submenu-search.open {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.submenu-search {
	top: auto;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	background-color: var(--bg-gray);
	-webkit-transition: var(--transition-fast);
	transition: var(--transition-fast);
}

.submenu-search button {
	position: relative;
	cursor: pointer;
}

.submenu-search button svg,
.menu-close-search svg {
	width: 42px;
}

.submenu-search input[type="search"] {
	border-radius: 0;
	width: 400px;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid;
}

.site-main {
	margin-bottom: 5vw;
}
.single .post img{
	margin-bottom: 1.36em;
}
.all-image {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	flex-direction: column;
}

.self-right {
	margin: 0 0 0 auto;
}

input:focus {
	outline: none;
}

button {
	-webkit-appearance: none;
	border: 0;
	background: transparent;
}

.o-container {
	padding: 0 15px;
	width: 100%;
}


.JS__menu,
.JS__login {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	max-height: 100vh;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-webkit-transition: transform .35s cubic-bezier(.65, .65, .21, 1);
	transition: transform .35s cubic-bezier(.65, .65, .21, 1);
	will-change: transform;
	background-color: var(--bg-color);
	opacity: 1;
	z-index: 1;
	overflow-x: hidden;
	padding: 0 0 100px 0;
}

.JS__login {
	top: 90px;
	left: 0;
	width: 100%;
	min-height: auto;
	max-height: none;
	background-color: transparent;
	-webkit-transform: translate3d(20px, 0, 0);
	transform: translate3d(20px, 0, 0);
	opacity: 0;
	z-index: 2;
	visibility: hidden;
	-webkit-transition: all .35s cubic-bezier(.65, .65, .21, 1);
	transition: all .35s cubic-bezier(.65, .65, .21, 1);
}

.JS__login .login-form-bbh {
	width: 300px;
	margin: 0 15px 50px auto;
	padding: 30px 30px 30px 30px;
	border-radius: 0 0 15px 15px;
}


.JS__menu.is-open,
.JS__login.is-open {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
	-webkit-transition: transform opacity.35s cubic-bezier(.65, .65, .21, 1);
	transition: transform opacity .35s cubic-bezier(.65, .65, .21, 1);
}
.nav-mobile {
	display: block;
}

.submenu-acougue__menu::-webkit-scrollbar-track,
.submenu-item__menu::-webkit-scrollbar-track {
	background-color: #F5F5F5;
}

.submenu-acougue__menu::-webkit-scrollbar,
.submenu-item__menu::-webkit-scrollbar {
	width: 6px;
	border-radius: 6px;
}

.submenu-acougue__menu::-webkit-scrollbar-thumb,
.submenu-item__menu::-webkit-scrollbar-thumb {
	background-color: #05445D;
	border-radius: 6px;
}

.submenu-acougue,
.submenu-search,
.mainmenu,
.submenu-item {
	padding-left: 1em;
	padding-right: 0;
}

.col-submenu-acougue,
.col-submenu-item {
	display: none;
}

.menu-categorias-container,
.menu-categorias-emporio-container {
	width: 100%;
}



.droplink a,
.dropsubmenu a,
.menu-item-has-children a {
	cursor: pointer;
	padding-right: 1em !important;
}

.droplink>a:after,
.dropsubmenu>a:after,
.menu-item-has-children a::after{
	content: '';
	background-image: url("../design/arrow-down.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 12px;
	height: 12px;
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	right: 0;
	-webkit-transition: var(--transition-fast);
	transition: var(--transition-fast);
}

.droplink.active a:after,
.menu-item-has-children:hover a::after,
.nav-mobile .menu-item-has-children.active:hover a::after {
	transform: rotate(180deg);
}
.nav-mobile .menu-item-has-children:hover a::after {
	transform: rotate(0deg);
}
.droplink .sub-menu a:after,
.menu-item-has-children .sub-menu a::after {
	display: none;
}

.o-header__breadcrumb {
	width: 100%;
	background: transparent;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 14px;
	position: relative;
}

.o-header__breadcrumb__content {
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0;
}

.antidesign {
	width: 70px;
	opacity: .5;
	margin: 20px auto;
	display: block;
}

.antidesign:hover {
	opacity: 1;
}

.ac-content {
	display: none;
	padding-bottom: 15px;
}

.prefooter {
	padding-top: 40px;
	margin-top: 20px;
	background-color: var(--bg-color);
}
.footer .wp-block-social-links.is-style-logos-only .wp-social-link svg{
	width: 35px;
	height: 35px;
}
.footer {
	padding: 5em 0 8em;
	background: var(--text-color);
	width: 100%;
	color: var(--bg-color);
}
.footer .row div{
	margin-bottom: 1em;
}
.footer p,
.footer a,
.footer h2,
.footer h3 {
	color: var(--bg-color);
}

.footer li a {
	margin-bottom: .6em;
	display: block;
	opacity: .75;
}
.footer li a:hover{
	color: var(--bg-color);
	opacity: 1;
}
.footer h2 {
	font-size: var(--font-size-h5);
	margin-bottom: .5em;
}

.footer h2,
.footer h3,
.footer h4,
.footer h5 {
	font-weight: 900;
}

.footer-logo {
	margin-top: 5em;
}

.footer-logo img {
	display: block;
	margin: 30px auto;
	width: 100px;
}

.icon-footer {
	display: flex;
	align-items: center;
	margin-right: 20px;
	font-size: var(--font-size-base);
	line-height: 1.2em;
	color: var(--text-color);
}

.icon-footer:last-child {
	margin-right: 0;
}

a.icon-footer {
	border-radius: 30px;
	padding: 10px;
}

.footer-social .icon-footer {
	font-size: 0;
	margin-right: 0;
}

.icon-footer img {
	margin-right: 15px;
}

.footer-social .icon-footer img {
	margin-right: 0;
	width: 36px;
}

.footer-social,
.footer-info {
	-ms-flex-pack: center !important;
	justify-content: center !important;
	align-items: center;
}

a.icon-footer:hover {
	background-color: var(--bg-color);
}

.footer-bar {
	background-color: var(--bg-gray);
	padding: 25px 0;
}

.hidden {
	overflow: hidden;
}

section.hidden {
	width: 100vw;
}

.swiper-container-fade .swiper-slide {
	line-height: 0;
}

.inner-flex {
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	height: 100%;
}

.institucional .header-icone {
	width: 250px;
	height: auto;
	margin: 50px auto;
}

.institucional iframe {
	min-height: 80%;
	min-width: 100%;
	width: 100%;
}
.institucional ol{
    display: block;
	margin-bottom: 1.68em;
	margin-left: 1.26em;
}
.institucional ol li{
	margin-bottom: 1.68em;
	display: list-item;
	list-style-type: decimal;
}
.institucional ol ol{
	margin-bottom: 1.68em;
}
.institucional ol ol li {
	display: list-item;
  list-style-type: upper-roman;
}
.institucional li strong{
	 font-size: var(--font-size-h5);
    margin-bottom: 1em;
    display: block;
}
.institucional ul li, .institucional ul ul li{
	margin-bottom: 1.68em;
	display: list-item;
	list-style-type: initial!important;
}
.arq{
	border-radius: var(--radius-ele);
	background-color: var(--bg-gray);
	padding: 2em;
	position: relative;
	height: 100%;
}
.arq h2{
	font-size: var(--font-size-h3);
}
.arq h3{
	font-size: var(--font-size-h6);
}
.arq p{
	margin-bottom: 0;
}
.arq .icon-60{
	position: absolute;
	right: 1em;
	top: 1em;
}
.inner-height-25 {
	height: 25vw;
}

.bg-offset-50 {
	position: absolute;
	width: 50vw;
	max-width: 50vw;
	left: 0;
	top: 0;
	margin-right: calc(50% - 50vw);
	background-position: center;
	background-size: cover;
	min-height: 100%;
	display: block;
	z-index: -1;
}

.bg-offset-50.offset-left-50 {
	margin-left: calc(100% - 50vw);
	right: auto;
}
.descricao{
	margin-bottom: .86em;
	margin-top: 1.36em;
	background-color: var(--orange-color);
	color: var(--bg-color);
	padding: .5em 1.2em;
	border: dashed 1px var(--bg-color);
	border-radius: 2em;
	display: inline-block;
}
.ofertas-menu-mobile, 
.oportunidades-menu-mobile {
	margin-bottom: 130px;
}
.ofertas-menu-mobile h3,
.oportunidades-menu-mobile h3 {
	color: var(--text-color);
	font-size: var(--font-size-h2);
}
.col-oferta,
.col-oferta.sem-menu,
.col-oportunidade,
.col-oportunidade.sem-menu {
	flex: 0 0 auto;
	width: 50%;
}
.col-oferta.col-oferta--sidebar,
.col-oportunidade.col-oportunidade--sidebar {
	width: 100%;
}
.ofertas-box,
.oportunidades-box {
	margin-bottom: 60px;
	display: block;
	position: relative;
	width: 100%;
}
.o-content__container__oportunidades img {
	max-width: 100%;
	margin-bottom: 30px;
	border-radius: var(--radius-ele);
}
.o-oportunidades__block{
	background-color: var(--bg-gray);
}
.o-ofertas__block .ofertas-box,
.o-oportunidades__block .oportunidades-box {
	width: auto;
}
.page-circuitos .ofertas-box,
.page-circuitos .oportunidades-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	margin-bottom: 0;
}
.page-circuitos .card-title p{
	margin-top: 0;
	margin-bottom: auto;
}
.page-circuitos .card-box .card-image{
	margin-bottom: 0;
	border-radius: 8px 8px 0 0;
}
.page-circuitos .card-box .card-title{
	padding: 20px;
	background-color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	margin-bottom: 60px;
	border-radius: 0 0 8px 8px;
}
.page-circuitos .card-box .card-title .btn{
	width: 100%;
	margin-top: 20px;
}
.page-circuitos .card-box:hover .card-image img{
	transform: scale(1.05);
}
.page-circuitos .slider-ofertas:hover .inner-cat-home::after, .page-circuitos .card-box:hover .card-image::after{
	opacity: 0;
}
.swiper-gallery, .img-destaque {
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
}

.swiper-gallery .slider-gallery {
	width: auto;
}

.swiper-gallery .slider-gallery img {
	width: auto;
	height: 25vw;
	min-height: 200px;
	max-height: 400px;
	border-radius: var(--radius-ele);
}
.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	width: 100%;
  }
.video-container iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
/* blog */
.categorias_bullets {
	display: flex;
    flex-wrap: wrap;
}
.categorias_bullets li {
	display: inline-block;
}
.card-flags {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
	display: flex;
	gap: 5px;
	align-items: flex-end;
}

.card-flags .card-flag {
	width: 30px;
	height: 30px;
	background-color: var(--bg-color);
	border-radius: 100%;
	display: block;
	text-align: center;
	padding: 7px;
	display: flex;
}

.card-flags .card-flag img {
	width: auto;
	filter: brightness(.7) invert(1);
	margin-right: 5px;
}

.card-box .card-title h2 {
	font-size: var(--font-size-h6);
	color: var(--text-color);
	font-weight: 900;
	font-family: var(--font-title);
	line-height: 1em;
	margin-bottom: 0;
}
.oferta .validade,
.oportunidades .validade {
	font-size: var(--font-size-base);
}
.oferta .card-box .validade, .validade,
.oportunidades .card-box .validade, .validade {
	color: var(--orange-color);
	border-radius: 30px;
	font-size: var(--font-size-small);
}
.card-title p {
	color: var(--text-color);
	opacity: .8;
	margin-top: .5em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: .5em;
}
.wp-block-tag-cloud a{
	padding: .25em .5em;
	border-radius: var(--radius-ele);
	background-color: var(--bg-gray);
	color: var(--text-color);
	margin: 0 2px 2px 0;
}
.wp-block-tag-cloud a:hover{
	background-color: var(--orange-color);
	color: var(--bg-color);
}
.content-area ul.wp-block-categories-list,
.content-area ul.wp-block-latest-posts{
	margin: 30px 0;
}
.content-area ul.wp-block-categories-list li,
.content-area ul.wp-block-latest-posts li{
	display: block;
}
.content-area ul.wp-block-categories-list li a,
.content-area ul.wp-block-latest-posts li a{
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--text-color);
	padding: .5em .75em;
	border-radius: var(--radius-ele);
	line-height: 1.2em;
	margin: 0;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}
.content-area .tool-bar ul.wp-block-categories-list{
	margin: 0 0 10px 0;
}
.content-area .tool-bar ul.wp-block-categories-list li a {
	margin: 0 2px 2px 0;
	background-color: var(--bg-gray);
}
.content-area .tool-bar ul.wp-block-categories-list li a:hover{
	background-color: var(--orange-color);
	color: var(--bg-color);
}
.content-area ul.wp-block-categories-list li a:hover{
	background-color: var(--bg-gray);
	color: var(--text-color);
}
.card-box .card-tags,
.o-oferta__tags__link,
.o-oportunidade__tags__link {
	font-size: var(--font-size-small);
	color: var(--text-color);
	margin: 0 5px 5px 0;
	background-color: var(--bg-gray);
	display: inline-block;
	padding: .15em .75em;
	border-radius: 20px;
}
a.o-oferta__tags__link:hover,
a.o-oportunidade__tags__link:hover {
	background-color: var(--bg-dark-gray);
}
.o-oferta__tags,
.o-oportunidade__tags {
	font-size: var(--font-size-small);
	color: var(--text-color);
}
.o-oferta__tags .o-oferta__tags__link,
.o-oportunidade__tags .o-oportunidade__tags__link {
	margin-right: 0;
}
.card-box .card-image {
	display: block;
	max-width: 100%;
	padding-bottom: 100%;
	overflow: hidden;
	margin: 0;
	transform: translateZ(0);
	position: relative;
	border-radius: var(--radius-ele);
	-moz-transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	-webkit-transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	-o-transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	margin-bottom: 10px;
}

.blog .card-box .card-image{
	margin-bottom: var(--bs-gutter-x);
}
.blog .ofertas-box.card-box .card-image, 
.ofertas-box.card-box .card-image,
.blog .oportunidades-box.card-box .card-image, 
.oportunidades-box.card-box .card-image {
	margin-bottom: .5em;
}
.term-circuitos .ofertas-box.card-box .card-image,
.term-marketing .ofertas-box.card-box .card-image{
	margin-bottom: 0;
}
.card-box .card-image img {
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: none;
	-moz-transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	-webkit-transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	-o-transition: transform .35s cubic-bezier(.23, 1, .32, 1);
	transition: transform .35s cubic-bezier(.23, 1, .32, 1);
}

.card-box:hover .card-image img {
	transform: scale(1.05);
	border: 1px solid transparent;
}

.posts-home .post-box .card-box .card-inner {
	padding: 30px;
	position: absolute;
	bottom: 0;
}

.posts-home .post-box .card-box .card-inner .meta,
.posts-home .post-box .card-box .card-inner .card-title h2 {
	color: var(--bg-color);
	background-color: transparent;
}
.posts-home .post-box .card-box .card-inner .card-title h2{
	font-size: var(--font-size-h5);
}
.posts-home .post-box .card-box .card-title {
	width: 100%;
	max-width: 100%;
}

.posts-home .post-box .card-box .card-image {
	padding-bottom: 65%;
	position: relative;
	z-index: -1;
}

.posts-home .post-box .card-box .card-image:before {
	content: "";
	opacity: 1;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.65);
	z-index: 0;
	top: 0;
	left: 0;
	transition: var(--transition-especial);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.posts-home.posts-width .post-box:nth-child(4),
.posts-home.posts-width .post-box:nth-child(5) {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.posts-home.posts-width .post-box:nth-child(4) .card-box .card-image,
.posts-home.posts-width .post-box:nth-child(5) .card-box .card-image {
	padding-bottom: 65%;
}

.posts-home .card-tags {
	margin-bottom: 0;
}

/* Ofertas */
.swiper-equipe {
	overflow: hidden;
	padding-bottom: 50px;
}
.oferta .swiper-pagination,
.swiper-equipe .swiper-pagination,
.swiper-ofertas-cat .swiper-pagination {
	text-align: left;
	padding: 0 15px;
	bottom: -20px;
}
.swiper-equipe .swiper-pagination{
	bottom: 20px;
}
.swiper-ofertas-cat .swiper-pagination{
	text-align: right;
}
.o-ofertas__pagination__container,
.o-oportunidades__pagination__container {
	margin-top: 30px;
	margin-bottom: 60px;
}

.o-ofertas__pagination,
.o-oportunidades__pagination {
	border: 0;
	float: none;
	text-align: center;
	margin: 10px auto;
	padding: 0 30px;
	display: flex;
}

.o-ofertas__pagination__button,
.o-oportunidades__pagination__button {
	display: inline-block;
	border: none !important;
	float: none;
	margin: 0;
}

.o-ofertas__pagination__button a,
.o-ofertas__pagination__button--current,
.o-ofertas__pagination__button--disabled,
.o-oportunidades__pagination__button a,
.o-oportunidades__pagination__button--current,
.o-oportunidades__pagination__button--disabled {
	background: #fff;
	color: var(--text-color);
	font-weight: 500;
	line-height: 45px;
	margin: 2px;
	height: 45px;
	width: 45px;
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	outline: none;
	-webkit-transition: var(--transition-fast);
	transition: var(--transition-fast);
	-webkit-box-shadow: inset 0 0 0 2px var(--bg-color);
	box-shadow: inset 0 0 0 2px var(--bg-color);
}

.o-ofertas__pagination__button--current,
.o-oportunidades__pagination__button--current {
	background-color: var(--orange-color);
	-webkit-box-shadow: none;
	box-shadow: none;
	color: var(--bg-color);

}

.o-ofertas__pagination__button a:hover,
.o-oportunidades__pagination__button a:hover {
	-webkit-box-shadow: inset 0 0 0 2px var(--text-color);
	box-shadow: inset 0 0 0 2px var(--text-color);
}
.o-filters__container{
	display: flex;
	align-items: center;
}
.o-list__filters::-webkit-scrollbar-track {
	background-color: var(--bg-gray);
	}
	.o-list__filters::-webkit-scrollbar {
	height: 3px;
	border-radius: 3px;
	}
	.o-list__filters::-webkit-scrollbar-thumb {
	background-color: var(--text-color);
	border-radius: 3px;
	}
.o-filters__container .o-list__filters{
	width: 100%;
white-space: nowrap;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
padding-top: 20px;
padding-bottom: 10px;
margin-bottom: 10px;
}
.o-list_item__link {
	text-decoration: none;
	display: block;
	padding: .35em 0;
	margin-right: 20px;
	color: var(--text-color);
	border-bottom: none
}
.o-list_item:last-child .o-list_item__link{
	border-bottom: none;
}
.o-list_item__switch {
	display: flex;
	align-items: center;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently
                                                    supported by Chrome, Edge, Opera and Firefox */
}

.o-list_item__switch i {
	position: relative;
	display: inline-block;
	margin-right: .3rem;
	width: 30px;
	min-width: 30px;
	height: 16px;
	background-color: var(--bg-color);
	border-radius: 30px;
	vertical-align: text-bottom;
	transition: none;
	border: 1px solid var(--text-color);
}

.o-list_item__link:hover .o-list_item__switch i {
	background-color: var(--bg-gray);
}

.o-list_item__link:hover .o-list_item__switch i::after {
	transform: translateX(4px);
}

.o-list_item__switch i::after {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 10px;
	height: 10px;
	background-color: var(--text-color);
	border-radius: 100%;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.14);
	transform: translateX(2px);
	transition: all 0.2s ease-in-out;
}

.o-list_item__active .o-list_item__switch i {
	background-color: var(--orange-color);
	border: 1px solid var(--orange-color)
}

.o-list_item__active .o-list_item__switch i::after {
	transform: translateX(16px);
	background-color: var(--bg-color);
}
.o-list_item__active .o-list_item__link:hover .o-list_item__switch i {
	background-color: var(--orange-color);
}
.o-list_item__active .o-list_item__link:hover .o-list_item__switch i::after {
	transform: translateX(14px);
}
.bullet {
	padding: .4em 1.25em;
	font-size: var(--font-size-base);
	color: var(--text-color);
	border-radius: 40px;
	box-shadow: inset 0 0 0 1px var(--text-color);
	margin-right: 10px;
	display: flex;
	align-items: center;
}

.bullet .icon-bullet {
	width: auto;
	height: 24px;
	filter: brightness(.7) invert(1);
	margin-right: 10px;
}

.bullet.active {
	background-color: var(--orange-color);
	color: var(--bg-color);
	box-shadow: inset 0 0 0 2px var(--orange-color);
}

.bullet.active .icon-bullet {
	filter: none;
}

.bullet:hover {
	box-shadow: inset 0 0 0 2px var(--orange-color);
}

.menu-ofertas, .menu-oportunidades {
	position: fixed;
	top: 0;
	background-color: var(--bg-color);
	display: inline-block;
	width: 100%;
	z-index: 991;
}

.menu-ofertas .container, .menu-oportunidades .container {
	border-top: 1px solid rgba(0, 0, 0, .1);
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-top: 20px;
	padding-bottom: 20px;
}

.slider-ofertas {
	border-radius: var(--radius-ele);
	overflow: hidden;
}

.slider-ofertas .img-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.slider-ofertas .card-box:before {
	content: "";
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: 0;
}

.slider-ofertas .card-box .card-image {
	z-index: -1;
	margin-bottom: 0;
}
.card-chip{
	padding: 30px 20px 10px;
	border-radius: var(--radius-ele);
	border: solid 1px var(--bg-dark-gray);
}
.card-chip .title-chip{
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-chip .title-chip img{
	width: 1.2em;
	height: 1.2em;
	margin-right: 10px;
}
.card-chip .bullet-chip{
	border-radius: var(--radius-ele);
	background-color: var(--bg-gray);
	border: solid 1px var(--bg-dark-gray);
	display: flex;
	padding: 10px;
	justify-content: center;
	gap: 20px;
	width: 200px;
	max-width: 100%;
	margin: 0 auto 5px;
}
.card-chip .bullet-chip-info{
margin: 10px auto;
background-color: var(--orange-color);
color: var(--bg-color);
border-radius: var(--radius-ele);
width: 150px;
padding: 4px;
}
.card-inner-content {
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100%;
}

.slider-ofertas .inner-cat-home::after,
.card-box .card-image::after {
	content: "";
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: var(--orange-color);
	z-index: -1;
	top: 0;
	left: 0;
	transition: var(--transition-especial);
}

.slider-ofertas:hover .inner-cat-home::after,
.card-box:hover .card-image::after {
	opacity: .35;
}

.slider-ofertas h2 {
	font-size: var(--font-size-h3);
	line-height: 1.1em;
	margin-top: 15px;
	margin-bottom: 30px;
	color: var(--bg-color);
}

.parallax-bg {
	width: 100%;
	height: 40vw;
	background-size: cover;
}

.slider-ofertas .maquinas {
	flex-grow: 1;
	display: block;
	width: 100%;
}

.slider-ofertas .a-arrow {
	width: 100%;
	align-self: flex-start;
	border-bottom: 1px solid var(--bg-color);
	display: block;
	padding-top: .8em;
	padding-bottom: .8em;
	font-size: 1rem;
}

.slider-ofertas .a-arrow:first-child {
	border-top: 1px solid var(--bg-color);
}

.slider-ofertas .a-arrow::after {
	bottom: .4em;
}

.slider-ofertas .icon-cat {
	display: flex;
	gap: 15px;
	margin-top: 50px;
	filter: invert(1);
}
.container.container-md-fluid{
	width: 100%;
	max-width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.bbh_login_form__recovery_pass .input-top,
.JS__login .login-form-bbh .input-top,
.JS__login .login-form-bbh .btn,
.login-form-bbh .input-top,
.login-form-bbh .btn {
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
	max-width: 100%;
	width: 100%;
}
.login-form-bbh.login-form-bbh__modal{
padding: 30px 30px 30px 30px;
min-width: 300px;
}

.bbh__modal__opened {
    overflow-y: hidden;
}
.login-form-bbh__modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: none;
}
.login-form-bbh__modal--opened {
    display: block;
    z-index: 999;
}
.login-form-bbh__modal__overlay {
    display: none;
}
.login-form-bbh__modal--opened ~ .login-form-bbh__modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 998;
    background-color: #fff;
    opacity: 0.6;
}
.login-form-bbh__modal__close {
	cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5em;
    line-height: 0.5em;
    font-size: 1.8em;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.bbh_login_form__recovery_pass .input-top label.error {
    font-size: 0.9em;
}
.loader {
	display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 0 0 auto;
    border: 2px solid var(--black-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
	.p-b {
		padding: 2.5rem !important;
	}
	
	.pt-b,
	.py-b {
		padding-top: 2.5rem !important;
	}
	
	.pr-b,
	.px-b {
		padding-right: 2.5rem !important;
	}
	
	.pb-b,
	.py-b {
		padding-bottom: 2.5rem !important;
	}
	
	.pl-b,
	.px-b {
		padding-left: 2.5rem !important;
	}

.login-form-bbh .input-top{
	width: 35%;
	margin-bottom: 0;
}

.login-form-bbh .btn{
	width: 25%;
	margin-bottom: 0;
}
.login-form-bbh .btn.forgot{
	width: auto;
	margin-bottom: 0;
	margin-top: 5px;
	margin-right: auto;
}
.bbh_login_form__recovery_pass .input-top,
.bbh_login_form__recovery_pass .btn{
	width: 100%;
	margin-bottom: 10px;
}
.JS__login .login-form-bbh .btn.forgot{
	width: 100%;
}
	.orange-block .img{
		width: auto;
		margin: 0 auto;
	}
	.col-oferta,
	.col-oferta.sem-menu,
	.col-oportunidade,
	.col-oportunidade.sem-menu {
		flex: 0 0 auto;
		width: 33.33%;
	}
	
	.c-home__banner_content h1 {
		font-size: 3.6vw;
	}

	.posts-home.posts-width .post-box:nth-child(4) {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.posts-home.posts-width .post-box:nth-child(5) {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.posts-home.posts-width .post-box:nth-child(4) .card-box .card-image {
		padding-bottom: 65%;
	}
	.posts-home.posts-width .post-box:nth-child(5) .card-box .card-image {
		padding-bottom: 31.5%;
	}
	.c-home__banner__item.c-home__banner__mobile {
		display: none;
	}
	.c-home__banner__item.c-home__banner__desktop {
		display: block;
	}
}

@media (min-width: 992px) {
	.p-b {
		padding: 3.5rem !important;
	}
	
	.pt-b,
	.py-b {
		padding-top: 3.5rem !important;
	}
	
	.pr-b,
	.px-b {
		padding-right: 3.5rem !important;
	}
	
	.pb-b,
	.py-b {
		padding-bottom: 3.5rem !important;
	}
	
	.pl-b,
	.px-b {
		padding-left: 3.5rem !important;
	}
	.oferta .o-title.o-title__filters,
	.oportunidades .o-title.o-title__filters {
		margin-bottom: .5em;
		margin-right: auto;
		margin-top: 0;
	  }
	.o-filters__container{
		display: inherit
	}
	.o-filters__container .o-list__filters{
		width: 100%;
		padding: 0;
		margin: 0;
		white-space: inherit;
		display: inherit;
	}
	.o-list_item__link {
		text-decoration: none;
		display: flex;
		align-items: center;
		padding: .5em 0;
		color: var(--text-color);
		border-bottom: 1px solid rgba(0, 0, 0, .1);
	}
	.content-area ul li.o-list_item{
		margin-bottom: 0;
		display: block;
	}
	.o-list_item:last-child .o-list_item__link{
		border-bottom: none;
	}
	.hidden-mobile{
		visibility: visible;
		display: initial;
	}
	.col-oferta,
	.col-oferta.sem-menu,
	.col-oportunidade,
	.col-oportunidade.sem-menu {
		flex: 0 0 auto;
		width: 33.33%;
	}
.p-b {
	padding: 5rem !important;
}

.pt-b,
.py-b {
	padding-top: 5rem !important;
}

.pr-b,
.px-b {
	padding-right: 5rem !important;
}

.pb-b,
.py-b {
	padding-bottom: 5rem !important;
}

.pl-b,
.px-b {
	padding-left: 5rem !important;
}
	.c-home__banner .swiper-container .swiper-pagination-bullets {
		width: 16px;
		margin: 0 auto;
		padding: 0 0 15px 30px;
		position: absolute;
		left: 0px;
		right: auto;
		bottom: 20px;
		text-align: center !important;
		border-radius: 0;
		line-height: 0;
	}


.c-home__banner .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
	background-color: var(--orange-color);
	height: 15px;
	width: 8px;
}
	.swiper-navigation {
		display: flex;
		visibility: visible;
	}
	
.inner-flex {
	padding: 30px;
	display: inline-flex;
	align-items: center;
	gap: 30px;
	width: 100%;
	height: 100%;
}
	.login-form-bbh {
		padding: 40px 50px;
	}
	.login-form-bbh .top-login{
		display: block;
	}
	.login-form-bbh label, .login-form-bbh .top-login-input{
		width: 100%;
	}
	.login-form-bbh label{
		margin-bottom: .5em;
		text-align: left;
	}
	.login-form-bbh .input-top{
		width: 240px;
		margin-right: 10px;
		margin-left: 0;	
	}
	.login-form-bbh .btn{
		width: auto;
	}
	.login-form-bbh.page-login .btn.btn.btn-forgot{
		margin: 5px auto 0;
	}
	.bbh_login_form__recovery_pass .input-top,
	.bbh_login_form__recovery_pass .btn{
		margin-bottom: 10px;
		margin-right: auto;
		margin-left: auto;
		max-width: 100%;
		width: 100%;
}

}

@media (min-width: 1200px) {
	.o-header .col-main-menu{
		padding-left: 0;
		padding-right: 0;
	}
	.mainmenu .menu .sub-menu,
.mainmenu-secundary .menu .sub-menu {
	display: block;
	visibility: hidden;
	position: absolute;
	top: 35px;
	opacity: 0;
	left: 0;
	line-height: 1em;
	width: 280px;
	background-color: var(--bg-color);
	padding: 1em;
	border-radius: 0 0 6px 6px;
  }
  .mainmenu .menu li:hover .sub-menu,
  .mainmenu-secundary .menu li:hover .sub-menu {
	top: 45px;
  }
	.p-b {
		padding: 3.5rem !important;
	}
	
	.pt-b,
	.py-b {
		padding-top: 3.5rem !important;
	}
	
	.pr-b,
	.px-b {
		padding-right: 3.5rem !important;
	}
	
	.pb-b,
	.py-b {
		padding-bottom: 3.5rem !important;
	}
	
	.pl-b,
	.px-b {
		padding-left: 3.5rem !important;
	}
	.o-title.big {
		font-size: var(--font-size-xl);
	}
	.col-oferta,
	.col-oportunidade {
		flex: 0 0 auto;
		width: 33.33%;
	}
	.col-oferta.sem-menu,
	.col-oportunidade.sem-menu {
		flex: 0 0 auto;
		width: 25%;
	}

.p-b {
	padding: 5.5rem !important;
}

.pt-b,
.py-b {
	padding-top: 5.5rem !important;
}

.pr-b,
.px-b {
	padding-right: 5.5rem !important;
}

.pb-b,
.py-b {
	padding-bottom: 5.5rem !important;
}

.pl-b,
.px-b {
	padding-left: 5.5rem !important;
}
	.container.container-md-fluid{
		max-width: 1140px;
	}


	.c-home__banner_content {
		padding-bottom: 70px;
	}

	.swiper-button-container {
		bottom: 40px;
	}

	.login-form-bbh {
		margin-top: -35px;
	}

	.mainmenu.desktop,
	.o-header .mainmenu-secundary .menu-item {
		display: inline-flex;
	}

	.o-hamburguer {
		display: none;
	}

	.posts-home.posts-width .post-box:nth-child(4),
	.posts-home.posts-width .post-box:nth-child(5) {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.posts-home.posts-width .post-box:nth-child(4) .card-box .card-image,
	.posts-home.posts-width .post-box:nth-child(5) .card-box .card-image {
		padding-bottom: 50%;
	}
}

@media (min-width: 1400px) {
	.p-b {
		padding: 4.5rem !important;
	}
	
	.pt-b,
	.py-b {
		padding-top: 4.5rem !important;
	}
	
	.pr-b,
	.px-b {
		padding-right: 4.5rem !important;
	}
	
	.pb-b,
	.py-b {
		padding-bottom: 4.5rem !important;
	}
	
	.pl-b,
	.px-b {
		padding-left: 4.5rem !important;
	}
	.col-oferta,
	.col-oportunidade {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-oferta.sem-menu,
	.col-oportunidade.sem-menu {
		flex: 0 0 auto;
		width: 20%;
	}

.p-b {
	padding: 6rem !important;
}

.pt-b,
.py-b {
	padding-top: 6rem !important;
}

.pr-b,
.px-b {
	padding-right: 6rem !important;
}

.pb-b,
.py-b {
	padding-bottom: 6rem !important;
}

.pl-b,
.px-b {
	padding-left: 6rem !important;
}
	.posts-home .post-box .card-box .card-title {
		width: 75%;
		max-width: 100%;
	}
	.container.container-md-fluid{
		max-width: 1340px;
	}
}

@media (min-width: 1640px) {
	.col-oferta,
	.col-oportunidade {
		flex: 0 0 auto;
		width: 25%;
	}
	.col-oferta.sem-menu,
	.col-oportunidade.sem-menu {
		flex: 0 0 auto;
		width: 20;
	}
	.container.container-md-fluid{
		max-width: 1600px;
	}
	.c-home__banner_content {
		padding-bottom: 120px;
	}

	.swiper-button-container {
		bottom: 20px;
	}

	.login-form-bbh {
		margin-top: -45px;
	}

	.container {
		max-width: 1600px;
	}

}

@media (min-width: 1950px) {
	.col-oferta,
	.col-oportunidade {
		flex: 0 0 auto;
		width: 16.66%;
	}
	.col-oferta.sem-menu,
	.col-oportunidade.sem-menu {
		flex: 0 0 auto;
		width: 14.28%;
	}
	.container.container-md-fluid,
	.container,
	.c-home__banner,
	.container-fluid {
		max-width: 1920px;
		margin-right: auto;
		margin-left: auto;
		padding-left: 15px;
		padding-right: 15px;
	}

}


@media print {
	#brand,
	#printheader,
	#printimage,
	#printcontent{
		margin: 60px 45px!important;
		padding: 0;
	}
	#printcontent .col-xl-8,
	#printcontent .row > *{
		margin-left: 0!important;
		margin-right: 0!important;
		width: 100%!important;
		max-width: 100%!important;
		padding: 0;
	}
	.o-header{
		position: relative;
	}
	.swiper-gallery{
		margin: 0;
		padding: 0;
	}
	.o-header .brand{
		width: 130px;
		height: 60px;
		display: block;
		opacity: 1;
	}
	.container-lg, .container-md, .container-sm, .container{
		width: 100%;
		max-width: 100%;
	}
	.descricao{
		background-color: #fff!important;
		color: #000;
		font-size: 20px;
		font-weight: 700;
		border: none;
		padding: 0;
	}
	
	.print-brand{
	   width: 140px;
		margin-bottom: 30px;
		margin-left: 0;
		margin-right: auto;
		height: 58px;
		display: block;
	}
	
	p, li{
		font-size: 15px;
	}
 }
