/* FONTES */

@import url("https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap");

/* VARIÃVEIS */

:root {
	--orange: #ee8600;

	--brown: #6e635b;

	--brown-light: #a49488;

	--gray: #67676b;

	--gray-light: #9c9ba0;

	--gray-lighter: #cecfd4;

	--gray-dark: #1e1e1e;

	--white: #ffffff;

	--black: #000000;

	--black-alpha: rgba(0, 0, 0, 0.6);

	--black-alpha-light: rgba(0, 0, 0, 0.2);

	--white-alpha: rgba(255, 255, 255, 0.2);

	--dummy: #ffcc00;
}

/* GERAL */

html,
body {
	height: auto;
	width: 100%;
	border: none;
	margin: 0;
	padding: 0;
	font-family: "Blinker", sans-serif;
	font-weight: 400;
	font-size: 10px;
	color: var(--black);
}

a {
	text-decoration: none;
	display: block;
}

a:hover,
a:active,
a:focus,
button:hover,
button:active,
button:focus,
input:hover,
input:active,
input:focus,
textarea:hover,
textarea:active,
textarea:focus,
select:focus,
select:focus-visible {
	outline: 0;
	border: none;
	text-decoration: none;
}

::selection {
	color: var(--white);
	background-color: var(--gray-dark);
}

* {
	box-sizing: border-box;
}

.container {
	width: 100%;
	max-width: 1366px;
	padding: 0 32px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	align-self: stretch;
}

.container.small {
	padding: 0 130px;
}

.container.smaller {
	padding: 0 15%;
}

.dummy {
	height: 80px;
}

body[data-contraste="on"] {
	background: var(--black);
	color: var(--white);
}

body[data-contraste="on"] img {
	filter: grayscale(100%) !important;
}

body[data-contraste="on"] a {
	color: var(--white) !important;
}

body[data-contraste="on"] h2 {
	color: var(--white) !important;
}

body[data-contraste="on"] p {
	color: var(--white) !important;
}

body[data-contraste="on"] .acs-img {
	mix-blend-mode: unset !important;
}

body[data-contraste="on"] .acs-bg-img {
	filter: grayscale(100%);
}

body[data-contraste="on"] .acs-before-img {
	filter: grayscale(100%);
}

body[data-contraste="on"] .acs-before:before {
	background: var(--black) !important;
}

body[data-contraste="on"] .acs-before-alt:before {
	background: var(--white) !important;
}

body[data-contraste="on"] .acs-txt {
	color: var(--white) !important;
}

body[data-contraste="on"] .acs-txt * {
	color: var(--white) !important;
}

body[data-contraste="on"] .acs-txt-alt {
	color: var(--black) !important;
}

body[data-contraste="on"] .acs-after:after {
	background: var(--white) !important;
}

body[data-contraste="on"] .acs-after-alt:after {
	background: var(--black) !important;
}

body[data-contraste="on"] .acs-after-bg:after {
	background: var(--black) !important;
}

body[data-contraste="on"] .acs-after-img {
	filter: grayscale(100%);
}

body[data-contraste="on"] .acs-bg {
	background: var(--black) !important;
}

body[data-contraste="on"] .acs-bg-img-white {
	filter: brightness(0) invert(1);
}

body[data-contraste="on"] .acs-bg-alt {
	background-color: var(--white) !important;
}

body[data-contraste="on"] .acs-border {
	border-color: var(--white) !important;
}

body[data-contraste="on"] .acs-border-alt {
	border-color: var(--black) !important;
}

body[data-contraste="on"] .acs-border-set {
	border: solid 1px var(--white) !important;
}

body[data-contraste="on"] .acs-input {
	background-color: var(--black) !important;
	border-color: var(--white) !important;
	color: var(--white) !important;
}

body[data-contraste="on"] .acs-stroke {
	stroke: var(--white) !important;
}

body[data-contraste="on"] .acs-stroke-alt {
	stroke: var(--black) !important;
}

body[data-contraste="on"] .acs-fill {
	fill: var(--black) !important;
}

body[data-contraste="on"] .acs-fill-alt {
	fill: var(--white) !important;
}

body[data-contraste="on"] .acs-fill-stroke {
	fill: var(--white) !important;
	stroke: var(--white) !important;
}

body[data-contraste="on"] .acs-bt-full a {
	color: var(--black) !important;
	background: var(--white) !important;
	border: solid 1px var(--white) !important;
}

body[data-contraste="on"] .acs-bt-full a .acs-stroke {
	stroke: var(--black) !important;
}

body[data-contraste="on"] .acs-bt-full a:hover {
	color: var(--white) !important;
	background: var(--black) !important;
}

body[data-contraste="on"] .acs-bt.selected a {
	color: var(--black) !important;
	background: var(--white) !important;
}

body[data-contraste="on"] .acs-placeholder:placeholder {
	color: var(--white) !important;
}

body[data-contraste="on"] .acs-boxshadow {
	box-shadow: 0px 0px 20px 0px rgba(225, 225, 2250, 0.5) !important;
}

body[data-contraste="on"] nav.sticky {
	background: var(--black);
}

body[data-contraste="on"] nav.sticky .holder .busca a .ico:after {
	background: var(--white) !important;
}

body[data-contraste="on"] nav.sticky .holder .busca form .aux-submit:after {
	background: var(--white) !important;
}

body[data-contraste="on"]
	nav.sticky
	.holder
	.busca
	form:hover
	.aux-submit:after {
	background: var(--black) !important;
}

body[data-contraste="on"]
	nav.sticky
	.holder
	.busca
	form:hover
	input[type="text"] {
	border-color: var(--black) !important;
}

body[data-contraste="on"]
	nav
	.holder
	.busca
	form
	.aux-submit
	input[type="submit"] {
	background: var(--black) !important;
}

body[data-contraste="on"] nav .holder .busca form .aux-submit:after {
	background: var(--white) !important;
}

body[data-contraste="on"] main .bt-laranja a {
	background: var(--black);
	box-shadow: none;
	border: solid 1px var(--white);
}

body[data-contraste="on"] main .bt-laranja a .ico:after {
	background: var(--black);
}

body[data-contraste="on"] main .bt-laranja-vazio a {
	background: var(--black);
	box-shadow: none;
	border: solid 1px var(--white);
}

body[data-contraste="on"] main .bt-laranja-vazio a .ico:after {
	background: var(--white);
}

body[data-contraste="on"] main .topo-home:after {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 0) 100%
	);
}

body[data-contraste="on"]
	main
	.holder-produto
	.categorias
	.listagem
	.linha.selected {
	border-color: var(--white) !important;
}

body[data-contraste="on"]
	main
	.holder-produto
	.categorias
	.listagem
	.linha
	.conteudos
	ul
	li
	a.selected:before {
	background: var(--white) !important;
}

body[data-contraste="on"] main .share .bts .bt a:hover .ico {
	background: var(--white) !important;
}

body[data-contraste="on"] main .share .bts .bt a:hover .txt {
	color: var(--white) !important;
}

body[data-contraste="on"]
	main
	.post-grid
	.filtros
	.alm-filters-container
	button[type="reset"] {
	background: var(--black) !important;
}

body[data-contraste="on"]
	main
	.post-grid
	.filtros
	.alm-filters-container
	button[type="reset"].hidden {
	border-color: var(--white) !important;
	color: var(--white) !important;
}

body[data-contraste="on"]
	main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	li
	div.alm-filter--link {
	background: var(--black) !important;
}

body[data-contraste="on"]
	main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	li
	div.alm-filter--link.active {
	border-color: var(--white) !important;
	color: var(--white) !important;
}

body[data-contraste="on"] main .post-grid .alm-btn-wrap .alm-load-more-btn {
	background: var(--black) !important;
	border-color: var(--white) !important;
	color: var(--white) !important;
}

body[data-contraste="on"] footer .news .social .redes a:hover {
	background: var(--white) !important;
	border-color: var(--white) !important;
}

body[data-contraste="on"] footer .news .social .redes a:hover .ico {
	background: var(--black) !important;
}

body[data-contraste="on"] footer .menu .links a:hover {
	text-decoration: underline;
}

body[data-contraste="on"] footer .news .newsletter form input[type="email"] {
	background: var(--black) !important;
	color: var(--white) !important;
	border-color: var(--white) !important;
}

body[data-contraste="on"]
	footer
	.news
	.newsletter
	form
	input[type="email"]:focus {
	border-color: var(--white) !important;
}

body[data-contraste="on"]
	footer
	.news
	.newsletter
	form
	input[type="email"]::placeholder {
	color: var(--white) !important;
}

body[data-contraste="on"]
	footer
	.news
	.newsletter
	form
	.wpforms-submit-container
	button {
	background: var(--white) !important;
	background-color: var(--white) !important;
}

body[data-contraste="on"]
	footer
	.news
	.newsletter
	form
	.wpforms-submit-container
	button:not(:hover):not(:active) {
	background-color: var(--white) !important;
}

body[data-contraste="on"]
	footer
	.news
	.newsletter
	form
	.wpforms-submit-container:after {
	background: var(--black) !important;
}

/* NAV */

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0;
	z-index: 99;
	transition: all 0.5s ease;
}

nav .container {
	flex-direction: row;
	justify-content: space-between;
}

nav .logo .logo-txt {
	fill: var(--white);
	transition: all 0.3s ease;
}

nav .logo .logo-ico {
	fill: var(--white);
	transition: all 0.3s ease;
}

nav .menu {
	position: relative;
	z-index: 2;
}

nav .menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	gap: 20px;
	list-style: none;
}

nav .menu ul li {
	position: relative;
}

nav .menu ul li a {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	padding: 6px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

nav .menu ul li a .arrow-down {
	margin-left: 5px;
	mask-image: url("../images/chevron_down.svg");
	mask-repeat: no-repeat;
	mask-size: 8px;
	width: 8px;
	height: 8px;
	mask-position: center;
	background: var(--white);
	transition: all 0.3s ease;
}

nav .menu ul li .drop {
	width: calc(100vw - 20px);
	max-width: 574px;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%);
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

nav .menu ul li .drop .holder {
	width: 100%;
	height: 426px;
	padding: 20px;
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - 65px),
		calc(100% - 65px) 100%,
		0 100%
	);
	background: var(--white);
	margin-top: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 35px;
}

nav .menu ul li .drop .holder .aux-img {
	width: 50%;
	height: 100%;
	position: relative;
}

nav .menu ul li .drop .holder .aux-img .img {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - 35px),
		calc(100% - 35px) 100%,
		0 100%
	);
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

nav .menu ul li .drop .holder .aux-img .img.on {
	opacity: 1;
}

nav .menu ul li .drop .holder .aux-img:before {
	content: "";
	background: url("../images/logo_trombini_t_shape.svg") no-repeat bottom
		right;
	background-size: contain;
	width: 200%;
	height: 90%;
	position: absolute;
	right: 20px;
	bottom: -10%;
}

nav .menu ul li .drop .holder .aux-img .img:after {
	content: "";
	background: url("../images/logo_trombini_t_overlay.svg") no-repeat bottom
		right;
	background-size: contain;
	width: 200%;
	height: 90%;
	position: absolute;
	right: 20px;
	bottom: calc(-10.5%);
}

nav .menu ul li .drop .holder .infos {
	flex: 1;
}

nav .menu ul li .drop .holder .infos .titulo {
	font-size: 20px;
	font-weight: 700;
	color: var(--orange);
	margin-bottom: 15px;
	text-transform: uppercase;
}

nav .menu ul li .drop a {
	color: var(--black);
	padding: 5px 0 5px 15px;
	font-weight: 300;
	transition: all 0.3s ease;
}

nav .menu ul li .drop a:before {
	content: "";
	background: var(--orange);
	width: 4px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all 0.3s ease;
}

nav .menu ul li .drop a:hover:before {
	opacity: 1;
}

nav .menu ul li .drop a:hover {
	font-weight: 600;
}

nav .menu ul li .drop a.selected {
	font-weight: 600;
}

nav .menu ul li .drop a.selected:before {
	opacity: 1;
}

nav .menu ul li .drop .externo .ico {
	margin: 5px 0 5px 10px;
	mask-image: url("../images/arrow_link.svg");
	mask-repeat: no-repeat;
	mask-size: 9px;
	width: 9px;
	height: 9px;
	mask-position: center;
	background: var(--black);
	transition: all 0.3s ease;
}

nav .menu ul li .drop .todos {
	margin-top: 30px;
}

nav .menu ul li .drop .todos a:before {
	display: none;
}

nav .menu ul li .drop .todos a .ico {
	margin: 5px 0 5px 10px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	width: 25px;
	height: 25px;
	mask-position: center;
	background: var(--orange);
	transition: all 0.3s ease;
}

nav .menu ul li .drop .todos a:hover .ico {
	margin: 5px 0 5px 15px;
}

nav .menu ul li:hover {
	z-index: 2;
}

nav .menu ul li:hover a {
	z-index: 2;
}

nav .menu ul li:hover .drop {
	opacity: 1;
	pointer-events: all;
}

nav .menu ul li:before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--black-alpha);
	pointer-events: none;
	opacity: 0;
	transition: all 0.5s ease;
}

nav .menu ul li.has-drop:hover:before {
	opacity: 1;
}

nav .menu ul li .drop a.selected:before {
	opacity: 1;
}

nav .menu ul li .drop a.selected {
	font-weight: 600;
}

nav .menu ul li.has-drop.selected:before {
	opacity: 1;
}

nav .holder {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

nav .holder .busca {
	position: relative;
	z-index: 2;
}

nav .holder .busca:before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--black-alpha);
	pointer-events: none;
	opacity: 0;
	transition: all 0.5s ease;
}

nav .holder .busca a {
	width: 38px;
	height: 38px;
	display: block;
}

nav .holder .busca a .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 38px;
	height: 38px;
	mask-image: url("../images/ico_search.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	width: 38px;
	height: 38px;
	mask-position: center;
	background: var(--white);
	pointer-events: none;
	transition: all 0.3s ease;
}

nav .holder .busca .drop {
	width: calc(100vw - 20px);
	max-width: 574px;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%);
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

nav .holder .busca .drop .holder {
	width: 100%;
	height: 320px;
	padding: 20px;
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - 65px),
		calc(100% - 65px) 100%,
		0 100%
	);
	background: var(--white);
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 35px;
}

nav .holder .busca .drop .holder h3 {
	font-size: 40px;
}

nav .holder .busca:hover .drop {
	opacity: 1;
	pointer-events: all;
}

nav .holder .busca:hover:before {
	opacity: 1;
}

nav .holder .busca form {
	position: relative;
	width: 100%;
	margin-top: 30px;
}

nav .holder .busca form .aux-submit {
	position: absolute;
	right: 8px;
	top: 8px;
}

nav .holder .busca form .aux-submit input[type="submit"] {
	width: 40px;
	height: 40px;
	background: var(--white);
	border-radius: 50%;
	border: none;
	padding: 0;
}

nav .holder .busca form .aux-submit:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/ico_search.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--black);
	pointer-events: none;
	transition: all 0.3s ease;
}

nav .holder .busca form input[type="text"] {
	font-size: 18px;
	color: var(--white);
	padding: 0 45px 0 15px;
	width: 100%;
	height: 56px;
	border-radius: 28px;
	border: solid 1px transparent;
	background: var(--gray-lighter);
	transition: all 0.3s ease;
}

nav .holder .busca form:hover .aux-submit:after {
	background: var(--gray-dark);
}

nav .holder .cta a {
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
	padding: 0 15px;
	height: 38px;
	border-radius: 19px;
	background: var(--white);
	border: solid 1px var(--white);
	text-align: center;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

nav .holder .cta a:hover {
	background: none;
	color: var(--white);
}

nav .holder .linguas {
	position: relative;
}

nav .holder .linguas .select a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	padding: 10px 6px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

nav .holder .linguas .select a .arrow-down {
	margin-left: 5px;
	mask-image: url("../images/chevron_down.svg");
	mask-repeat: no-repeat;
	mask-size: 8px;
	width: 8px;
	height: 8px;
	mask-position: center;
	background: var(--white);
}

nav .holder .linguas .select a img {
	margin-right: 4px;
}

nav .holder .linguas .select li {
	list-style: none;
}

nav .holder .linguas .select.pt .lang-item-en {
	display: none;
}

nav .holder .linguas .select.pt .lang-item-es {
	display: none;
}

nav .holder .linguas .select.en .lang-item-pt {
	display: none;
}

nav .holder .linguas .select.en .lang-item-es {
	display: none;
}

nav .holder .linguas .select.es .lang-item-pt {
	display: none;
}

nav .holder .linguas .select.es .lang-item-en {
	display: none;
}

nav .holder .linguas .drop {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translate(-50%);
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

nav .holder .linguas .drop .holder {
	padding: 10px;
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - 15px),
		calc(100% - 15px) 100%,
		0 100%
	);
	background: var(--white);
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

nav .holder .linguas .drop .holder ul {
	padding: 0;
}

nav .holder .linguas .drop .holder ul li {
	list-style: none;
}

nav .holder .linguas .drop .holder a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
	padding: 6px;
	display: flex;
	align-items: center;
}

nav .holder .linguas .drop .holder a img {
	margin-right: 4px;
}

nav .holder .linguas:hover .drop {
	opacity: 1;
	pointer-events: all;
}

nav .menu .cta {
	margin: 30px 0;
}

nav .menu .cta a {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	padding: 0 15px;
	height: 38px;
	border-radius: 19px;
	background: var(--orange);
	border: solid 1px var(--orange);
	text-align: center;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav .menu .linguas {
	display: none;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

nav .menu .linguas li {
	list-style: none;
}

nav .menu .linguas a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
	padding: 6px;
	display: flex;
	align-items: center;
}

nav .menu .linguas a img {
	margin-right: 4px;
}

nav .mobile {
	display: none;
}

nav.sticky {
	background: var(--white);
	padding: 25px 0;
	box-shadow: 0 0 30px var(--black-alpha-light);
}

nav.sticky .logo .logo-txt {
	fill: var(--black);
}

nav.sticky .logo .logo-ico {
	fill: var(--orange);
}

nav.sticky .menu ul li a {
	color: var(--black);
}

nav.sticky .menu ul li a .arrow-down {
	background: var(--black);
}

nav.sticky .menu ul li.has-drop:hover a {
	color: var(--white);
}

nav.sticky .menu ul li.has-drop:hover a .arrow-down {
	background: var(--white);
}

nav.sticky .menu ul li.has-drop .drop a {
	color: var(--black);
}

nav.sticky .holder .busca a .ico:after {
	background: var(--orange);
}

nav.sticky .holder .cta a {
	color: var(--white);
	background: var(--orange);
	border-color: var(--orange);
}

nav.sticky .holder .cta a:hover {
	background: none;
	color: var(--orange);
}

nav.sticky .holder .linguas .select a {
	color: var(--black);
}

nav.sticky .holder .linguas .select a .arrow-down {
	background: var(--black);
}

nav .bt-menu {
	display: none;
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 99;
	pointer-events: all;
	transition: all 0.5s ease;
}

nav .bt-menu a {
	text-decoration: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
}

nav .bt-menu .bar {
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--white);
}

nav .bt-menu .bar-1 {
	transform: rotate(0);
	position: absolute;
	top: 17px;
	left: 14px;
	transition: all 0.2s ease;
}

nav .bt-menu .bar-2 {
	opacity: 1;
	transition: all 0.2s ease;
}

nav .bt-menu .bar-3 {
	transform: rotate(0);
	position: absolute;
	top: 29px;
	left: 14px;
	transition: all 0.2s ease;
}

nav.open .bt-menu .bar {
	background: var(--gray-dark);
}

nav.open .bt-menu .bar-1 {
	transform: rotate(45deg);
	transform-origin: 50% 50%;
	transition: all 0.2s ease;
	width: 21px;
	height: 3px;
	top: 23px;
	left: 13px;
}

nav.open .bt-menu .bar-2 {
	opacity: 0;
}

nav.open .bt-menu .bar-3 {
	transform: rotate(-45deg);
	transform-origin: 50% 50%;
	transition: all 0.2s ease;
	width: 21px;
	height: 3px;
	top: 23px;
	left: 13px;
}

nav.sticky .bt-menu .bar {
	background: var(--gray-dark);
}

/* ASIDE */

aside {
	position: fixed;
	right: -130px;
	top: 385px;
	z-index: 99;
	transition: all 0.5s ease;
}

aside:hover {
	right: 0;
}

aside.open {
	right: 0;
}

aside .holder {
	display: flex;
}

aside .holder .bt {
	margin-right: 10px;
	filter: drop-shadow(0px 14px 14px rgba(0, 0, 0, 0.12));
}

aside .holder .bts {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 5px;
}

aside .holder .painel {
	background: var(--white);
	padding: 15px;
	box-shadow: 0px 3px 6px var(--black-medium-alpha);
	border-right: none;
	border: solid 1px var(--white);
	border-right: none;
	border-radius: 20px 0 0 20px;
	filter: drop-shadow(0px 14px 14px rgba(0, 0, 0, 0.12));
	text-align: center;
	width: 125px;
}

aside .holder .painel h4 {
	color: var(--black);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

aside .holder .painel h5 {
	color: var(--black);
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

aside .holder .painel a {
	margin: 0 5px;
	display: block;
}

aside .holder .painel a svg {
	pointer-events: none;
}

aside .holder .painel .divisoria {
	width: 90%;
	height: 1px;
	background: var(--black-dark-alpha);
	margin: 15px 0 15px 5%;
}

/* MAIN */

main {
	overflow: hidden;
	width: 100%;
}

h2 {
	font-size: 1.4em;
	font-weight: 600;
	letter-spacing: 9px;
	text-transform: uppercase;
	color: var(--orange);
	margin: 0;
}

h3 {
	font-size: 5.4em;
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

h3 strong {
	font-weight: 700;
}

p {
	font-size: 2em;
	color: var(--gray);
	line-height: 1.3;
	margin: 0;
}

main .bt-laranja {
	margin-top: 25px;
	position: relative;
	z-index: 2;
	display: inline-flex;
}

main .bt-laranja a,
main .bt-laranja .acs-bg {
	width: 300px;
	height: 56px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 70px 0 22px;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	background: var(--orange);
	border-radius: 28px;
	box-shadow: 0px 0px 20px 0px rgba(238, 134, 0, 0.5);
}

main .bt-laranja a .ico,
main .bt-laranja .acs-bg .ico {
	position: absolute;
	right: 8px;
	top: 8px;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	background: var(--white);
	border: none;
	padding: 0;
	border-radius: 50%;
}

main .bt-laranja a .ico:after,
main .bt-laranja .acs-bg .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--orange);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .bt-laranja a:hover .ico,
main .bt-laranja .acs-bg:hover .ico {
	transform: scale(1.05);
}

main .bt-laranja-vazio {
	position: relative;
	z-index: 2;
	display: inline-flex;
}

main .bt-laranja-vazio a {
	width: 300px;
	height: 56px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 70px 0 22px;
	font-size: 18px;
	font-weight: 600;
	border: solid 1px var(--orange);
	color: var(--orange);
	background: var(--white);
	border-radius: 28px;
}

main .bt-laranja-vazio a .ico {
	position: absolute;
	right: 8px;
	top: 8px;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
}

main .bt-laranja-vazio a .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--orange);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .bt-laranja-vazio a:hover .ico {
	right: 1px;
}

main .bt-arrow {
	display: inline-flex;
}

main .bt-arrow a {
	display: flex;
	align-items: center;
	font-size: 1.8em;
	white-space: nowrap;
	font-weight: 600;
	line-height: 1.6;
	color: var(--black);
	padding: 5px 0;
}

main .bt-arrow a .ico {
	margin: 5px 0 5px 10px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	width: 25px;
	height: 25px;
	mask-position: center;
	background: var(--orange);
	transition: all 0.3s ease;
}

main .bt-arrow a:hover .ico {
	margin: 5px 0 5px 15px;
}

main .bt-arrow a:hover .ico {
	margin: 5px 0 5px 15px;
}

main .bt-arrow.down a .ico {
	mask-image: url("../images/arrow_down.svg");
}

main .bt-arrow.down a:hover .ico {
	margin: 10px 0 0 10px;
}

main .bt-arrow-dummy {
	display: flex;
	align-items: center;
	font-size: 1.8em;
	white-space: nowrap;
	font-weight: 600;
	line-height: 1.6;
	padding: 5px 0;
}

main .bt-arrow-dummy.white {
	color: var(--white);
}

main .bt-arrow-dummy.black {
	color: var(--black);
}

main .bt-arrow-dummy .ico {
	margin: 5px 0 5px 10px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	width: 25px;
	height: 25px;
	mask-position: center;
	background: var(--orange);
	transition: all 0.3s ease;
}

main .bt-plus a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 4em;
	font-weight: 300;
	line-height: 1.6;
	color: var(--black);
	padding: 10px 0;
	border-bottom: solid 1px var(--gray-lighter);
}

main .bt-plus a .ico {
	mask-image: url("../images/ico_plus.svg");
	mask-repeat: no-repeat;
	mask-size: 21px;
	width: 21px;
	height: 21px;
	mask-position: center;
	background: var(--orange);
	transition: all 0.3s ease;
}

main .bt-plus a:hover .ico {
	transform: rotate(180deg);
}

main .bt-mais-menos {
	display: inline-flex;
	margin-top: 30px;
}

main .bt-mais-menos a {
	display: flex;
	align-items: center;
	font-size: 1.8em;
	white-space: nowrap;
	font-weight: 600;
	line-height: 1.6;
	color: var(--black);
	padding: 5px 0;
}

main .bt-mais-menos a .ico {
	margin: 5px 0 5px 10px;
}

main .bt-mais-menos a .ico svg {
	transition: all 0.3s ease;
}

main .bt-mais-menos a .ico .plus {
	transition: all 0.3s ease;
}

main .bt-mais-menos a .txt-menos {
	display: none;
}

main .bt-mais-menos a:hover .ico svg {
	transform: rotate(180deg);
}

main .bt-mais-menos.open {
	margin-top: 0;
}

main .bt-mais-menos.open a .ico svg .plus {
	opacity: 0;
}

main .bt-mais-menos.open a .ico .plus {
	opacity: 0;
}

main .bt-mais-menos.open a .txt-menos {
	display: block;
}

main .bt-mais-menos.open a .txt-mais {
	display: none;
}

main .bt-mais-menos.open a:hover .ico svg {
	transform: rotate(0deg);
}

main .topo-home {
	position: relative;
	overflow: hidden;
	min-height: 760px;
}

main .topo-home:after {
	content: "";
	width: 100%;
	height: 150px;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(
		to bottom,
		rgba(110, 99, 91, 1) 0%,
		rgba(110, 99, 91, 0) 100%
	);
}

main .topo-home .slider .slide {
	background-color: var(--brown);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
	overflow: hidden;
}

main .topo-home .slider .slide .container {
	height: calc(100dvh + 80px);
	min-height: 760px;
	flex-direction: row;
}

main .topo-home .slider .slide .container .infos {
	width: 50%;
	height: 100%;
	position: relative;
	background: var(--brown);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

main .topo-home .slider .slide .container .infos:after {
	content: "";
	width: 80%;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 1) 0%,
		rgba(110, 99, 91, 0) 100%
	);
}

main .topo-home .slider .slide .container .infos:before {
	content: "";
	width: 80%;
	height: 100%;
	position: absolute;
	right: 100%;
	top: 0;
	background: var(--brown);
}

main .topo-home .slider .slide .container .infos h1 {
	font-size: 7em;
	font-weight: 300;
	color: var(--white);
	line-height: 0.95;
}

main .topo-home .slider .slide .container .infos h1 strong {
	font-weight: 700;
}

main .topo-home .slider .slide .container .infos .selo {
	display: flex;
	justify-content: center;
	align-items: center;
}

main .topo-home .slider .slide .container .infos .selo .img {
	position: relative;
}

main .topo-home .slider .slide .container .infos .selo .img:before {
	content: url("../images/ico_t.svg");
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

main .topo-home .slider .slide .container .infos .selo .img img {
	position: relative;
	z-index: 2;
}

main .topo-home .slider .slide .container .infos .selo .txt {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--white);
	opacity: 0.7;
	margin-left: 15px;
}

main .topo-home .bottom {
	position: absolute;
	left: 0;
	bottom: 80px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .topo-home .bottom .container {
	height: 0;
	align-items: flex-start;
	padding-bottom: 20px;
	position: relative;
}

main .topo-home .bottom:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -80px;
	width: 100%;
	height: 100px;
	background: var(--white);
}

main .topo-home .bottom:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--gray-lighter);
}

main .topo-home .bottom .box {
	position: absolute;
	right: -70px;
	bottom: -80px;
	z-index: 4;
	width: 55%;
}

main .topo-home .bottom .box img {
	max-width: 100%;
}

main .topo-home .bottom .nav-slider {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

main .topo-home .bottom .nav-slider .bt {
	cursor: pointer;
}

main .topo-home .bottom .nav-slider .bt.left img {
	transform: scaleX(-1);
}

main .topo-home .bottom .nav-slider .dots .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: -3px 0 0 0;
}

main .topo-home .bottom .nav-slider .dots .slick-dots li {
	padding: 0;
	margin: 0;
	line-height: 0;
}

main .topo-home .bottom .nav-slider .dots .slick-dots li button {
	font-size: 0;
	padding: 0;
	border: none;
	background: var(--white);
	width: 4px;
	height: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

main .topo-home .bottom .nav-slider .dots .slick-dots li.slick-active button {
	width: 16px;
}

main .topo-home .bottom .aux-divisoria {
	position: absolute;
	right: 0;
	bottom: -1px;
	width: 50%;
	height: 85px;
	z-index: 3;
}

main .topo-home .bottom .aux-divisoria:after {
	content: "";
	position: absolute;
	left: 42px;
	top: -17px;
	width: 1px;
	height: 119px;
	background: var(--gray-lighter);
	transform: rotate(225deg);
	z-index: 3;
}

main .topo-home .bottom .aux-divisoria .divisoria {
	background: var(--white);
	width: 100%;
	height: 85px;
	clip-path: polygon(85px 0, 100% 0, 100% 100%, 0 100%);
	border-top: solid 1px var(--gray-lighter);
	z-index: 2;
}

main .topo-solucoes {
	background: var(--brown);
	height: 100vh;
	padding-top: 95px;
	overflow: hidden;
}

main .topo-solucoes .boxes {
	display: flex;
	width: 100%;
	height: 100%;
}

main .topo-solucoes .boxes .box {
	width: 25%;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border: solid 1px var(--black);
	transition: all 0.5s ease;
}

main .topo-solucoes .boxes .box:hover {
	width: 30%;
}

main .topo-solucoes .boxes .box a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
}

main .topo-solucoes .boxes .box a .info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
	padding: 25px 25px 85px 25px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}

main .topo-solucoes .boxes .box a .info .titulo {
	font-size: 2.1vw;
	line-height: 1.3;
	color: var(--white);
}

main .topo-solucoes .bottom {
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	display: none;
	justify-content: center;
	align-items: center;
}

main .topo-solucoes .bottom .nav-slider {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

main .topo-solucoes .bottom .nav-slider .bt {
	cursor: pointer;
}

main .topo-solucoes .bottom .nav-slider .bt.left img {
	transform: scaleX(-1);
}

main .topo-solucoes .bottom .nav-slider .dots .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: -3px 0 0 0;
}

main .topo-solucoes .bottom .nav-slider .dots .slick-dots li {
	padding: 0;
	margin: 0;
	line-height: 0;
}

main .topo-solucoes .bottom .nav-slider .dots .slick-dots li button {
	font-size: 0;
	padding: 0;
	border: none;
	background: var(--white);
	width: 4px;
	height: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

main
	.topo-solucoes
	.bottom
	.nav-slider
	.dots
	.slick-dots
	li.slick-active
	button {
	width: 16px;
}

main .topo-produto {
	background: url("../images/ico_t.svg") no-repeat left 60px top var(--brown);
	padding: 245px 0 150px 0;
	position: relative;
	overflow: hidden;
}

main .topo-produto .container {
	align-items: flex-end;
	height: 100%;
}

main .topo-produto .infos {
	width: 35%;
	margin-right: 5%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
}

main .topo-produto .infos h1 {
	font-size: 7em;
	font-weight: 300;
	color: var(--white);
	line-height: 0.95;
	margin: 0;
}

main .topo-produto .infos h1 strong {
	font-weight: 700;
}

main .topo-produto .infos p {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--white);
	line-height: 1.4;
	opacity: 0.7;
}

main .topo-produto .bottom {
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .topo-produto .bottom .container {
	height: 135px;
	align-items: flex-start;
	padding-bottom: 20px;
	position: relative;
}

main .topo-produto .bottom:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	height: 70px;
	background: var(--white);
}

main .topo-produto .bottom:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--gray-lighter);
}

main .topo-produto .bottom .box {
	position: absolute;
	left: -30px;
	bottom: -50px;
	z-index: 4;
	width: 55%;
}

main .topo-produto .bottom .box img {
	max-width: 100%;
}

main .topo-produto .bottom .aux-divisoria {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 50%;
	height: 85px;
	z-index: 3;
}

main .topo-produto .bottom .aux-divisoria:after {
	content: "";
	position: absolute;
	right: 42px;
	top: -17px;
	width: 1px;
	height: 119px;
	background: var(--gray-lighter);
	transform: rotate(-45deg);
	z-index: 3;
}

main .topo-produto .bottom .aux-divisoria .divisoria {
	background: var(--white);
	width: 100%;
	height: 85px;
	clip-path: polygon(calc(100% - 85px) 0, 100% 85px, 100% 100%, 0 100%, 0 0);
	border-top: solid 1px var(--gray-lighter);
	z-index: 2;
}

main .topo-default {
	position: relative;
	background-color: var(--brown);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
}

main .topo-default:after {
	content: "";
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 21px;
	background: linear-gradient(
		to bottom,
		rgba(110, 99, 91, 0) 0%,
		rgba(110, 99, 91, 1) 80%
	);
}

main .topo-default .container {
	align-items: flex-start;
	height: 100%;
	position: relative;
}

main .topo-default .container:before {
	content: "";
	width: 55%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--brown);
}

main .topo-default .container:after {
	content: "";
	width: 30%;
	height: 100%;
	position: absolute;
	left: 55%;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 1) 0%,
		rgba(110, 99, 91, 0) 100%
	);
}

main .topo-default .infos {
	width: auto;
	height: 100%;
	padding: 175px 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
}

main .topo-default .infos:before {
	content: "";
	width: 750px;
	height: 590px;
	position: absolute;
	left: -350px;
	top: 50px;
	background: url("../images/ico_t.svg") no-repeat left top;
}

main .topo-default .infos h1 {
	font-size: 7em;
	font-weight: 300;
	color: var(--white);
	line-height: 0.95;
	margin: 0;
	position: relative;
	z-index: 2;
}

main .topo-default .infos h2 {
	position: relative;
	z-index: 2;
}

main .topo-default .infos h1 strong {
	font-weight: 700;
}

main .topo-default .infos p {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--white);
	line-height: 1.4;
	opacity: 0.7;
	position: relative;
	z-index: 2;
}

main .topo-default .bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .topo-default .bottom .container {
	height: 85px;
	align-items: flex-start;
	padding-bottom: 20px;
	position: relative;
}

main .topo-default .bottom .container:before {
	display: none;
}

main .topo-default .bottom .container:after {
	display: none;
}

main .topo-default .bottom:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 20px;
	background: var(--white);
}

main .topo-default .bottom:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--gray-lighter);
}

main .topo-default .bottom .box {
	position: absolute;
	right: -70px;
	bottom: -80px;
	z-index: 4;
}

main .topo-default .bottom .aux-divisoria {
	position: absolute;
	right: 0;
	bottom: -1px;
	width: 50%;
	height: 85px;
	z-index: 3;
}

main .topo-default .bottom .aux-divisoria:after {
	content: "";
	position: absolute;
	left: 42px;
	top: -17px;
	width: 1px;
	height: 119px;
	background: var(--gray-lighter);
	transform: rotate(225deg);
	z-index: 3;
}

main .topo-default .bottom .aux-divisoria .divisoria {
	background: var(--white);
	width: 100%;
	height: 85px;
	clip-path: polygon(85px 0, 100% 0, 100% 100%, 0 100%);
	border-top: solid 1px var(--gray-lighter);
	z-index: 2;
}

main .topo-sustentabilidade {
	position: relative;
	background-color: var(--brown);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
}

main .topo-sustentabilidade:after {
	content: "";
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 21px;
	background: linear-gradient(
		to bottom,
		rgba(110, 99, 91, 0) 0%,
		rgba(110, 99, 91, 1) 80%
	);
}

main .topo-sustentabilidade .container {
	align-items: flex-start;
	height: 100%;
	position: relative;
}

main .topo-sustentabilidade .container:before {
	content: "";
	width: 55%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--brown);
}

main .topo-sustentabilidade .container:after {
	content: "";
	width: 30%;
	height: 100%;
	position: absolute;
	left: 55%;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 1) 0%,
		rgba(110, 99, 91, 0) 100%
	);
}

main .topo-sustentabilidade .infos {
	width: auto;
	height: 100%;
	padding: 175px 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
}

main .topo-sustentabilidade .infos:before {
	content: "";
	width: 750px;
	height: 590px;
	position: absolute;
	left: -350px;
	top: 50px;
	background: url("../images/ico_t.svg") no-repeat left top;
}

main .topo-sustentabilidade .infos h1 {
	font-size: 7em;
	font-weight: 300;
	color: var(--white);
	line-height: 0.95;
	margin: 0;
	position: relative;
	z-index: 2;
}

main .topo-sustentabilidade .infos h2 {
	position: relative;
	z-index: 2;
}

main .topo-sustentabilidade .infos h1 strong {
	font-weight: 700;
}

main .topo-sustentabilidade .infos p {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--white);
	line-height: 1.4;
	opacity: 0.7;
	position: relative;
	z-index: 2;
}

main .topo-sustentabilidade .bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .topo-sustentabilidade .bottom .container {
	height: 85px;
	align-items: flex-start;
	padding-bottom: 20px;
	position: relative;
}

main .topo-sustentabilidade .bottom .container:before {
	display: none;
}

main .topo-sustentabilidade .bottom .container:after {
	display: none;
}

main .topo-sustentabilidade .bottom:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 20px;
	background: var(--white);
}

main .topo-sustentabilidade .bottom:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--gray-lighter);
}

main .topo-sustentabilidade .bottom .box {
	position: absolute;
	right: -70px;
	bottom: -80px;
	z-index: 4;
}

main .topo-sustentabilidade .bottom .aux-divisoria {
	position: absolute;
	right: 0;
	bottom: -1px;
	width: 50%;
	height: 85px;
	z-index: 3;
}

main .topo-sustentabilidade .bottom .aux-divisoria:after {
	content: "";
	position: absolute;
	left: 42px;
	top: -17px;
	width: 1px;
	height: 119px;
	background: var(--gray-lighter);
	transform: rotate(225deg);
	z-index: 3;
}

main .topo-sustentabilidade .bottom .aux-divisoria .divisoria {
	background: var(--white);
	width: 100%;
	height: 85px;
	clip-path: polygon(85px 0, 100% 0, 100% 100%, 0 100%);
	border-top: solid 1px var(--gray-lighter);
	z-index: 2;
}

main .topo-a-trombini {
	position: relative;
	overflow: hidden;
}

main .topo-a-trombini {
	background-color: var(--brown);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
}

main .topo-a-trombini .container {
	height: 100dvh;
	flex-direction: row;
	position: relative;
	z-index: 2;
}

main .topo-a-trombini .container .infos {
	width: 50%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

main .topo-a-trombini .container .infos:before {
	content: url("../images/ico_t.svg");
	position: absolute;
	left: 5%;
	top: 25%;
	transform: translate(-50%);
}

main .topo-a-trombini .container .infos h1 {
	font-size: 7em;
	font-weight: 300;
	color: var(--white);
	line-height: 0.95;
	margin: 15px 0;
	position: relative;
	z-index: 2;
}

main .topo-a-trombini .container .infos h1 strong {
	font-weight: 700;
}

main .topo-a-trombini .container .infos h2 {
	position: relative;
	z-index: 2;
}

main .topo-a-trombini .container .infos p {
	font-size: 1.8em;
	line-height: 1.4;
	font-weight: 300;
	color: var(--white);
	opacity: 0.7;
	position: relative;
	z-index: 2;
}

main .topo-a-trombini .bottom {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}

main .topo-a-trombini .bottom .container {
	height: 85px;
	align-items: flex-start;
	padding-bottom: 20px;
	position: relative;
}

main .topo-a-trombini .bottom:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 20px;
	background: var(--white);
}

main .topo-a-trombini .bottom:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 1px;
	width: 100%;
	height: 1px;
	background: var(--gray-lighter);
}

main .topo-a-trombini .bottom .aux-divisoria {
	position: absolute;
	right: 0;
	bottom: -1px;
	width: 50%;
	height: 85px;
	z-index: 3;
}

main .topo-a-trombini .bottom .aux-divisoria:after {
	content: "";
	position: absolute;
	left: 42px;
	top: -17px;
	width: 1px;
	height: 119px;
	background: var(--gray-lighter);
	transform: rotate(225deg);
	z-index: 3;
}

main .topo-a-trombini .bottom .aux-divisoria .divisoria {
	background: var(--white);
	width: 100%;
	height: 85px;
	clip-path: polygon(85px 0, 100% 0, 100% 100%, 0 100%);
	border-top: solid 1px var(--gray-lighter);
	z-index: 2;
}

main .topo-a-trombini .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

main .topo-a-trombini .bg:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: calc(100% - 1px);
	opacity: 0.5;
	z-index: 2;
}

main .topo-a-trombini .bt-play {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}

main .topo-a-trombini .bt-play a {
	width: 96px;
	height: 96px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--black-alpha-light);
	border: solid 1px var(--white-alpha);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	transition: all 0.3s ease;
}

main .topo-a-trombini .bt-play a:hover {
	transform: scale(1.1);
}

/*main .topo-a-trombini .bg video { position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; }*/

.modal-video {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--black-alpha);
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

.modal-video.on {
	opacity: 1;
	pointer-events: all;
}

.modal-video .holder {
	max-width: 70%;
	position: relative;
	background: var(--black);
}

.modal-video .bt-fechar {
	position: absolute;
	right: -40px;
	top: -40px;
	z-index: 3;
}

.modal-video .bt-fechar a {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-video .bt-fechar a .ico {
	width: 40px;
	height: 40px;
	mask-image: url("../images/ico_plus.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--white);
	transform: rotate(45deg);
	pointer-events: none;
}

.modal-video .holder-video {
	position: relative;
	width: 100%;
	height: 100%;
}

.modal-video .holder-video video {
	max-width: 100%;
	max-height: 100%;
}

main .solucoes {
	padding: 30px 0 90px 0;
}

main .solucoes .container {
	align-items: flex-start;
	gap: 15px;
}

main .solucoes .links {
	margin-top: 25px;
	width: 100%;
	position: relative;
}

main .solucoes .links .link {
	width: 100%;
}

main .solucoes .links .link a {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 4em;
	font-weight: 300;
	padding: 24px 0;
	color: var(--black);
	border-bottom: solid 1px var(--gray-lighter);
	position: relative;
	transition: all 0.2s ease;
}

main .solucoes .links .link a:after {
	content: "";
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -1px;
	background: var(--orange);
	transition: all 0.5s ease;
}

main .solucoes .links .link a:hover:after {
	width: 100%;
}

main .solucoes .links .link a .num {
	width: 113px;
}

main .solucoes .links .link a .ico {
	position: absolute;
	right: 8px;
	top: 24px;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	background: var(--white);
	border: none;
	padding: 0;
	border-radius: 50%;
}

main .solucoes .links .link a .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--orange);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .solucoes .links .link .img {
	width: 50%;
	max-width: 410px;
	position: absolute;
	top: -115px;
	right: 100px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
	z-index: 3;
}

main .solucoes .links .link .img .aux {
	width: 100%;
	height: 515px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(20% 0%, 100% 0, 100% 80%, 80% 100%, 0 100%, 0% 20%);
	z-index: 2;
}

main .solucoes .links .link .img:before {
	content: "";
	position: absolute;
	left: 15px;
	top: 15px;
	width: 100%;
	height: 100%;
	background: var(--black);
	filter: blur(35px);
	opacity: 0.3;
}

main .solucoes .links .link .img img {
	position: relative;
	z-index: 2;
}

main .solucoes .links .link a:hover {
	font-weight: 700;
	color: var(--orange);
}

main .solucoes .links .link a:hover .ico {
	background: var(--orange);
}

main .solucoes .links .link a:hover .ico:after {
	background: var(--white);
}

main .solucoes .links .link a:hover + .img {
	opacity: 1;
}

main .video {
	margin-bottom: -300px;
}

main .video .container {
	align-items: flex-start;
	gap: 30px;
}

main .video .aux-txt {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}

main .video .hld-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	width: 100%;
	z-index: 5;
}

main .video .hld-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

main .numeros {
	padding: 350px 0 80px 0;
	background: var(--brown);
	position: relative;
}

main .numeros:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 1) 40%,
		rgba(110, 99, 91, 0) 100%
	);
	z-index: 2;
}

main .numeros:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: radial-gradient(
		ellipse at right bottom,
		rgba(110, 99, 91, 0) 30%,
		rgba(110, 99, 91, 1) 100%
	);
	z-index: 2;
}

main .numeros .container {
	position: relative;
	z-index: 3;
	align-items: flex-start;
}

main .numeros .aux-txt {
	position: relative;
}

main .numeros .aux-txt:before {
	content: url("../images/ico_t.svg");
	position: absolute;
	left: 30%;
	top: 50%;
	transform: translate(-50%, -50%);
}

main .numeros .aux-txt h3 {
	color: var(--white);
	position: relative;
	z-index: 2;
}

main .numeros .boxes {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

main .numeros .boxes .box {
	border: 1px solid rgba(206, 207, 212, 0.3);
	background: var(--brown);
	padding: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	width: 45%;
	margin: 8px 0;
}

main .numeros .boxes .box .ico {
	background: var(--black-alpha-light);
	min-width: 64px;
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

main .numeros .boxes .box .info h4 {
	font-size: 4em;
	font-weight: 300;
	color: var(--white);
	line-height: 1.3;
	margin: 0;
}

main .numeros .boxes .box .info p {
	font-size: 2.4em;
	font-weight: 400;
	color: var(--white);
	line-height: 1.3;
	margin: 0;
	opacity: 0.5;
}

main .numeros .bg-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
	opacity: 0.5;
	background-color: var(--brown-light);
	background-blend-mode: screen;
}

main .numeros .divisoria {
	background: var(--white);
	width: 50%;
	height: 60px;
	position: absolute;
	right: 0;
	bottom: 0;
	clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
	z-index: 5;
}

main .img-accordion {
	padding: 80px 0;
}

main .img-accordion .container {
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

main .img-accordion .aux-img {
	width: calc(53% - 60px);
	position: relative;
	aspect-ratio: 5/7;
}

main .img-accordion .aux-img:after {
	content: url("../images/logo_trombini_circle_t.svg");
	position: absolute;
	top: 80px;
	left: 0;
	transform: translate(-50%);
}

main .img-accordion .aux-img .img {
	width: 100%;
	aspect-ratio: 5/7;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(
		0% 0%,
		100% 0,
		100% calc(100% - 60px),
		calc(100% - 60px) 100%,
		0 100%,
		0% 0%
	);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all 0.3s ease;
}

main .img-accordion .aux-img .img.on {
	opacity: 1;
}

main .img-accordion .infos {
	width: calc(45% - 60px);
}

main .img-accordion .infos h4 {
	font-size: 4em;
	font-weight: 700;
	color: var(--orange);
	margin: 60px 0 15px 0;
	padding-bottom: 15px;
	border-bottom: solid 2px var(--orange);
}

main .img-accordion .infos .txt p {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--gray);
	margin-bottom: 15px;
}

main .img-accordion .infos .txt p.destaque {
	font-size: 2em;
	font-weight: 400;
}

main .img-accordion .infos .txt {
	margin-bottom: 90px;
}

main .novidades .container {
	align-items: flex-start;
}

main .novidades .posts {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	width: 100%;
}

main .novidades .posts .post {
	flex: 1;
}

main .novidades .posts .post a {
	aspect-ratio: 636/373;
	position: relative;
	overflow: hidden;
}

main .novidades .posts .post a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	z-index: 2;
}

main .novidades .posts .post a .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all 0.3s ease;
}

main .novidades .posts .post a .info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 32px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}

main .novidades .posts .post a .info .categoria {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--white);
}

main .novidades .posts .post a .info .titulo {
	font-size: 2.4em;
	font-weight: 700;
	line-height: 1.3;
	color: var(--white);
}

main .novidades .posts .post a:hover .img {
	transform: scale(1.2);
}

main .canais .container {
	align-items: flex-start;
}

main .canais .blocos {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 32px;
	width: 100%;
}

main .canais .blocos .bloco {
	flex: 1;
	max-width: 50%;
}

main .canais .blocos .bloco a {
	aspect-ratio: 636/373;
	position: relative;
	overflow: hidden;
}

main .canais .blocos .bloco a .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all 0.3s ease;
}

main .canais .blocos .bloco a .info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
	padding: 32px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}

main .canais .blocos .bloco a .info .categoria {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--white);
}

main .canais .blocos .bloco a .info .titulo {
	font-size: 2.4em;
	font-weight: 700;
	line-height: 1.3;
	color: var(--white);
}

main .canais .blocos .bloco a .bt {
	position: relative;
	z-index: 2;
	width: 300px;
	height: 56px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 70px 0 22px;
	font-size: 1.8em;
	font-weight: 600;
	border: solid 1px var(--white);
	color: var(--white);
	background: none;
	border-radius: 28px;
	margin-top: 10px;
}

main .canais .blocos .bloco a .bt .ico {
	position: absolute;
	right: 8px;
	top: 8px;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
}

main .canais .blocos .bloco a .bt .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--white);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .canais .blocos .bloco a:hover .bt .ico {
	right: 1px;
}

main .canais .blocos .bloco a:hover .img {
	transform: scale(1.2);
}

main .post-grid {
	padding: 80px 0;
}

main .post-grid .container {
	align-items: flex-start;
}

main .post-grid .infos {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
}

main .post-grid .infos p {
	font-size: 1.8em;
	opacity: 0.7;
}

main .post-grid .filtros {
	height: 70px;
	overflow: hidden;
	margin: 0 -32px;
	width: calc(100% + 64px);
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

main .post-grid .filtros .aux {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	padding: 0 32px 60px 32px;
	flex: 1;
	white-space: nowrap;
}

main .post-grid .filtros .aux {
	overflow-x: auto;
}

main .post-grid .filtros .aux a {
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	padding: 0 24px;
	height: 58px;
	background: var(--white);
	border-radius: 29px;
	border: 1px solid var(--gray-light);
	font-size: 1.8em;
	font-weight: 600;
	color: var(--gray);
}

main .post-grid .filtros .aux a.all {
	border-color: var(--orange);
	color: var(--orange);
}

main .post-grid .filtros .alm-filters-container {
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
}

main .post-grid .filtros .alm-filters-container .alm-filter {
	width: 100%;
}

main .post-grid .filtros .alm-filters-container .alm-filter .alm-filter--inner {
	width: 100%;
}

main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	.alm-filter--inner
	ul {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}

main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	.alm-filter--inner
	ul
	li
	ul {
	display: none;
}

main .post-grid .filtros .alm-filters-container button[type="reset"] {
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	padding: 0 24px;
	height: 58px;
	background: var(--white);
	border-radius: 29px;
	border: 1px solid var(--gray-light);
	font-size: 1.8em;
	font-weight: 600;
	color: var(--gray);
	transition: all 0.3s ease;
}

main .post-grid .filtros .alm-filters-container button[type="reset"].hidden {
	display: block;
	border-color: var(--orange);
	color: var(--orange);
}

main .post-grid .filtros .alm-filters-container button[type="reset"]:hover {
	border-color: var(--orange);
	color: var(--orange);
}

main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	li
	div.alm-filter--link {
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	padding: 0 24px;
	height: 58px;
	background: var(--white);
	border-radius: 29px;
	border: 1px solid var(--gray-light);
	font-size: 1.8em;
	font-weight: 600;
	color: var(--gray);
	transition: all 0.3s ease;
}

main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	li
	div.alm-filter--link.active {
	border-color: var(--orange);
	color: var(--orange);
}

main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	li
	div.alm-filter--link:hover {
	border-color: var(--orange);
	color: var(--orange);
}

main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	li
	div.alm-filter--link:before {
	display: none;
}

main
	.post-grid
	.filtros
	.alm-filters-container
	.alm-filter
	li
	div.alm-filter--link:after {
	display: none;
}

main .post-grid .filtros .alm-filters-container .alm-filters--controls {
	flex: 1;
	margin: 0 16px 0 0;
	height: 58px;
}

main .post-grid.filter-nav .filtros {
	margin: 0 -16px;
	width: calc(100% + 32px);
	align-items: flex-start;
}

main .post-grid.filter-nav .filtros .aux {
	padding: 0 16px 60px 16px;
}

main .post-grid.filter-nav .filtros .nav-left {
	margin-top: 10px;
}

main .post-grid.filter-nav .filtros .nav-left a .ico {
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_left.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--gray);
	transition: all 0.3s ease;
}

main .post-grid.filter-nav .filtros .nav-right {
	margin-top: 10px;
}

main .post-grid.filter-nav .filtros .nav-right a .ico {
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--gray);
	transition: all 0.3s ease;
}

main .post-grid.filter-nav .filtros .alm-filters-container {
	padding-left: 100px;
}

main .post-grid .alm-btn-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
}

main .post-grid .alm-btn-wrap .alm-load-more-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	padding: 0 24px;
	height: 58px;
	margin-top: 30px;
	background: var(--white);
	border-radius: 29px;
	border: 1px solid var(--gray-light);
	font-size: 1.8em;
	font-weight: 600;
	color: var(--gray);
}

main .post-grid .alm-btn-wrap .alm-load-more-btn.done {
	display: none;
}

main .post-grid .hld-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	width: 100%;
}

main .post-grid .hld-grid .ajax-load-more-wrap {
	width: 100%;
}

main .post-grid .hld-grid .alm-listing {
	width: 100%;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	width: 100%;
}

main .post-grid .hld-grid .alm-listing .alm-reveal {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	width: 100%;
}

main .post-grid .hld-grid .item.produto {
	width: calc(25% - 15px);
}

main .post-grid .hld-grid .item.produto a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15px;
}

main .post-grid .hld-grid .item.produto a .img {
	width: 100%;
	aspect-ratio: 310/255;
	overflow: hidden;
	position: relative;
}

main .post-grid .hld-grid .item.produto a .img .aux {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all 0.3s ease;
}

main .post-grid .hld-grid .item.produto a .infos {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

main .post-grid .hld-grid .item.produto a .infos h4 {
	font-size: 2em;
	font-weight: 400;
	color: var(--black);
	margin: 0;
}

main .post-grid .hld-grid .item.produto a .infos p {
	font-size: 1.6em;
}

main .post-grid .hld-grid .item.produto a:hover .img .aux {
	transform: translate(-50%, -50%) scale(1.2);
}

main .post-grid .hld-grid .item.produto a:hover .infos .bt-arrow-dummy .ico {
	margin: 5px 0 5px 15px;
}

main .post-grid .hld-grid .item.local {
	width: calc(20% - 26px);
	margin-bottom: 60px;
}

main .post-grid .hld-grid .item.local .dados {
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: solid 1px var(--gray-lighter);
}

main .post-grid .hld-grid .item.local .dados h4 {
	font-size: 2em;
	font-weight: 600;
	color: var(--gray);
	margin: 0;
}

main .post-grid .hld-grid .item.local .dados p {
	font-size: 1.4em;
	color: var(--orange);
	margin: 0;
}

main .post-grid .hld-grid .item.local .infos {
	font-size: 1.6em;
	color: var(--gray);
	margin: 0;
	line-height: 1.3;
}

main .post-grid .hld-grid .item.local .infos a {
	color: var(--gray);
}

main .post-grid .hld-grid .item.local .infos a:hover {
	text-decoration: underline;
}

main .post-grid .hld-grid .item.post {
	width: calc(50% - 10px);
}

main .post-grid .hld-grid .item.post a {
	aspect-ratio: 636/373;
	position: relative;
	overflow: hidden;
}

main .post-grid .hld-grid .item.post a .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all 0.3s ease;
}

main .post-grid .hld-grid .item.post a .info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
	padding: 32px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}

main .post-grid .hld-grid .item.post a .info .categoria {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--white);
}

main .post-grid .hld-grid .item.post a .info .titulo {
	font-size: 2.4em;
	font-weight: 700;
	line-height: 1.3;
	color: var(--white);
}

main .post-grid .hld-grid .item.post a:hover .img {
	transform: scale(1.2);
}

main .post-grid .hld-grid .item.institucional {
	width: calc(25% - 15px);
	margin-bottom: 60px;
}

main .post-grid .hld-grid .item.institucional h4 {
	font-size: 2em;
	font-weight: 400;
	margin: 0 0 15px 0;
}

main .post-grid .hld-grid .item.institucional p {
	font-size: 1.6em;
	color: var(--gray);
	margin: 0;
}

main .post-grid .hld-grid .item.institucional .bt-arrow {
	margin-top: 15px;
}

main .post-grid .paginacao {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	margin-top: 30px;
}

main .post-grid .paginacao .bt {
	cursor: pointer;
}

main .post-grid .paginacao .bt.left img {
	transform: scaleX(-1);
}

main .post-grid .paginacao .dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: -3px 0 0 0;
}

main .post-grid .paginacao .dots .dot {
	background: var(--gray);
	width: 4px;
	height: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

main .post-grid .paginacao .dots .dot.selected {
	width: 16px;
}

main .post-grid.center-nav .paginacao {
	width: 100%;
}

main .num-steps .container {
	align-items: flex-start;
}

main .num-steps .itens {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	gap: 35px;
}

main .num-steps .itens .item .num {
	min-width: 64px;
	width: 64px;
	height: 64px;
	border: solid 1px var(--gray-lighter);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.4em;
	font-weight: 700;
	color: var(--orange);
}

main .num-steps .itens .item .txt {
	margin-top: 15px;
	font-size: 1.6em;
	color: var(--gray);
	line-height: 1.3;
}

main .box-destaque .container {
	flex-direction: row;
	justify-content: space-between;
}

main .box-destaque .col {
	width: 45%;
	position: relative;
}

main .box-destaque .col.txt {
	width: 50%;
	position: relative;
}

main .box-destaque .col.txt .aux-txt {
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

main .box-destaque .col.txt .aux-txt.open {
	-webkit-line-clamp: 100;
}

main .box-destaque h2 {
	margin-bottom: 10px;
}

main .box-destaque p {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--gray);
	margin: 30px 0;
	opacity: 0.7;
}

main .box-destaque .col.txt p a {
	display: inline-block;
	color: var(--gray);
	text-decoration: underline;
	transition: all 0.3s ease;
}

main .box-destaque .col.txt p a:hover {
	color: var(--orange);
}

main .box-destaque .aux-img {
	width: 100%;
	aspect-ratio: 468/664;
	max-width: 468px;
	position: relative;
}

main .box-destaque .aux-img .img {
	width: 100%;
	aspect-ratio: 468/664;
	max-width: 468px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(60px 0%, 100% 0, 100% 100%, 0 100%, 0% 60px);
	position: relative;
}

main .box-destaque.box-logo {
	margin-bottom: 60px;
}

main .box-destaque.box-logo .aux-img .img {
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - 60px),
		calc(100% - 60px) 100%,
		0% 100%
	);
}

main .box-destaque.box-logo .aux-img:before {
	content: "";
	background: url("../images/logo_trombini_t_shape.svg") no-repeat bottom
		right;
	background-size: contain;
	width: 200%;
	height: 90%;
	position: absolute;
	right: 20px;
	bottom: -10%;
}

main .box-destaque.box-logo .aux-img .img:after {
	content: "";
	background: url("../images/logo_trombini_t_overlay.svg") no-repeat bottom
		right;
	background-size: contain;
	width: 200%;
	height: 90%;
	position: absolute;
	right: 20px;
	bottom: calc(-10.5%);
}

main .single-destaque .container {
	flex-direction: row;
	justify-content: space-between;
}

main .single-destaque .col {
	width: 45%;
	position: relative;
	display: flex;
	justify-content: flex-end;
}

main .single-destaque .col.txt {
	width: 50%;
	position: relative;
	flex-direction: column;
	justify-content: flex-start;
}

main .single-destaque h3 {
	margin: 0 0 10px 0;
	font-size: 2.4em;
	color: var(--gray-light);
	font-weight: 700;
}

main .single-destaque p {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--gray);
	margin: 30px 0;
	opacity: 0.7;
}

main .single-destaque .aux-img {
	width: 100%;
	aspect-ratio: 468/664;
	max-width: 468px;
	position: relative;
}

main .single-destaque .aux-img .img {
	width: 100%;
	aspect-ratio: 468/664;
	max-width: 468px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(60px 0%, 100% 0, 100% 100%, 0 100%, 0% 60px);
	position: relative;
}

main .single-content {
	margin: 60px auto;
}

main .single-content h3 {
	font-size: 2.4em;
	color: var(--gray-light);
	font-weight: 700;
}

main .single-content p {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--gray);
	margin: 30px 0;
	opacity: 0.7;
}

main .single-content p {
	width: 100%;
	max-width: 1366px;
	padding: 0 130px;
	margin: 15px auto;
}

main .single-content p a {
	display: inline-block;
	color: var(--gray-dark);
	text-decoration: underline;
	transition: all 0.3s ease;
}

main .single-content p a:hover {
	color: var(--orange);
}

main .single-content h3 {
	width: 100%;
	max-width: 1366px;
	padding: 0 130px;
	margin: 30px auto 15px auto;
}

main .single-content ul {
	width: 100%;
	max-width: 1366px;
	padding: 0 180px;
	margin: 15px auto;
}

main .single-content ul li {
	font-size: 1.8em;
	font-weight: 300;
	color: var(--gray);
	margin: 10px 0;
	opacity: 0.7;
}

main .single-content .wp-block-image {
	width: 100%;
	max-width: 1366px;
	position: relative;
	margin: 30px auto;
}

main .single-content .wp-block-image img {
	width: 100%;
	max-width: 1366px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(60px 0%, 100% 0, 100% 100%, 0 100%, 0% 60px);
	position: relative;
}

main .single-content .wp-block-columns {
	width: 100%;
	max-width: 1366px;
	padding: 0 32px;
	margin: 0 auto;
	display: flex;
	gap: 32px;
	margin-bottom: 30px;
	align-self: stretch;
}

main .single-content .wp-block-columns .wp-block-column:first-child {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

main .single-content .wp-block-columns .wp-block-column:last-child {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

main .single-content .wp-block-columns p {
	margin: 15px auto;
	padding: 0;
}

main .single-content .wp-block-columns .wp-block-image {
	width: 100%;
	max-width: 468px;
	position: relative;
	margin: 0;
}

main .single-content .wp-block-columns .wp-block-image img {
	width: 100%;
	max-width: 468px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(60px 0%, 100% 0, 100% 100%, 0 100%, 0% 60px);
	position: relative;
}

main .single-content .wp-block-gallery {
	width: 100%;
	max-width: 1366px;
	position: relative;
	margin: 30px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .single-content .wp-block-gallery .wp-block-image {
	padding: 0 10px;
	aspect-ratio: 1/1;
	position: relative;
}

main .single-content .wp-block-gallery .wp-block-image:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
}

main .single-content .wp-block-gallery .wp-block-image img {
	clip-path: none;
}

main .single-content .wp-block-gallery .slick-list {
	order: 0;
}

main .single-content .wp-block-gallery .slick-prev {
	order: 1;
}

main .single-content .wp-block-gallery .slick-dots {
	order: 2;
}

main .single-content .wp-block-gallery .slick-next {
	order: 3;
}

main .single-content .wp-block-gallery .slick-prev {
	border: none;
	font-size: 0;
	width: 40px;
	height: 50px;
	background: url("../images/arrow_right_gray.svg") no-repeat center;
	transform: scaleX(-1);
}

main .single-content .wp-block-gallery .slick-next {
	border: none;
	font-size: 0;
	width: 40px;
	height: 50px;
	background: url("../images/arrow_right_gray.svg") no-repeat center;
}

main .single-content .wp-block-gallery .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: -5px 15px 0 15px;
	width: auto;
}

main .single-content .wp-block-gallery .slick-dots li {
	padding: 0;
	margin: 0;
	line-height: 0;
}

main .single-content .wp-block-gallery .slick-dots li button {
	font-size: 0;
	padding: 0;
	border: none;
	background: var(--gray);
	width: 4px;
	height: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

main .single-content .wp-block-gallery .slick-dots li.slick-active button {
	width: 16px;
}

main .single-content .wp-block-embed {
	width: 100%;
	max-width: 1366px;
	position: relative;
	margin: 30px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .single-content .wp-block-embed .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	width: 100%;
	z-index: 5;
}

main .single-content .wp-block-embed .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

main .holder-produto {
	padding-top: 80px;
}

main .holder-produto .container {
	flex-direction: row;
	align-items: flex-start;
	gap: 10%;
}

main .holder-produto .categorias {
	width: 300px;
}

main .holder-produto .categorias h4 {
	font-size: 2.4em;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

main .holder-produto .categorias .listagem {
	margin-top: 50px;
}

main .holder-produto .categorias .listagem .linha {
	border-bottom: solid 1px var(--gray-lighter);
	padding: 15px 0;
}

main .holder-produto .categorias .listagem .linha .titulo a {
	font-size: 2em;
	color: var(--black);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

main .holder-produto .categorias .listagem .linha .titulo .chevron {
	mask-image: url("../images/chevron_down.svg");
	mask-repeat: no-repeat;
	mask-size: 8px;
	width: 8px;
	height: 8px;
	mask-position: center;
	background: var(--black);
}

main .holder-produto .categorias .listagem .linha .conteudos {
	display: none;
}

main .holder-produto .categorias .listagem .linha .conteudos ul {
	padding: 0 0 0 26px;
	list-style: none;
}

main .holder-produto .categorias .listagem .linha .conteudos ul li {
	position: relative;
	margin: 10px 0;
}

main .holder-produto .categorias .listagem .linha .conteudos ul li a {
	font-size: 1.6em;
	color: var(--gray);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	transition: all 0.3s ease;
}

main .holder-produto .categorias .listagem .linha .conteudos ul li a .chevron {
	mask-image: url("../images/chevron_down.svg");
	mask-repeat: no-repeat;
	mask-size: 8px;
	width: 8px;
	height: 8px;
	mask-position: center;
	background: var(--black);
}

main .holder-produto .categorias .listagem .titulo a .ico svg {
	transition: all 0.5s ease;
}

main .holder-produto .categorias .listagem .titulo a .ico .plus {
	transition: all 0.3s ease;
}

main .holder-produto .categorias .listagem .titulo a:hover .ico svg {
	transform: rotate(180deg);
}

main .holder-produto .categorias .listagem .selected .titulo a .ico .plus {
	opacity: 0;
}

main .holder-produto .categorias .listagem .selected .titulo a:hover .ico svg {
	transform: rotate(0deg);
}

main .holder-produto .categorias .listagem .linha .conteudos ul li a .ico svg {
	transition: all 0.5s ease;
}

main
	.holder-produto
	.categorias
	.listagem
	.linha
	.conteudos
	ul
	li
	a
	.ico
	.plus {
	transition: all 0.3s ease;
}

main
	.holder-produto
	.categorias
	.listagem
	.linha
	.conteudos
	ul
	li
	a:hover
	.ico
	svg {
	transform: rotate(180deg);
}

main
	.holder-produto
	.categorias
	.listagem
	.linha
	.conteudos
	ul
	li.selected
	a
	.ico
	.plus {
	opacity: 0;
}

main
	.holder-produto
	.categorias
	.listagem
	.linha
	.conteudos
	ul
	li.selected
	a:hover
	.ico
	svg {
	transform: rotate(0deg);
}

main .holder-produto .categorias .listagem .linha .conteudos ul li a:before {
	content: "";
	width: 2px;
	height: 2px;
	background: var(--gray);
	position: absolute;
	left: -13px;
	top: 50%;
	transition: all 0.3s ease;
}

main
	.holder-produto
	.categorias
	.listagem
	.linha
	.conteudos
	ul
	li
	a:hover:before {
	background: var(--orange);
}

main .holder-produto .categorias .listagem .linha .conteudos ul li a:hover {
	color: var(--orange);
}

main .holder-produto .categorias .listagem .linha .conteudos ul li a.selected {
	color: var(--orange);
	font-weight: 700;
	text-decoration: underline;
}

main
	.holder-produto
	.categorias
	.listagem
	.linha
	.conteudos
	ul
	li
	a.selected:before {
	width: 4px;
	height: 4px;
	top: calc(50% - 1px);
	background: var(--orange);
}

main .holder-produto .categorias .listagem .linha .conteudos .drop + ul {
	display: none;
}

/*main .holder-produto .categorias .listagem .linha .conteudos ul li.selected .drop .chevron { transform: scaleY(-1); }*/

main .holder-produto .categorias .listagem .linha.selected {
	border-bottom: solid 2px var(--orange);
}

main .holder-produto .categorias .listagem .linha.selected .titulo a {
	font-weight: 700;
	color: var(--orange);
}

/*main .holder-produto .categorias .listagem .linha.selected .titulo .chevron { opacity: 0; }*/

main .holder-produto .detalhes {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 16px;
	flex: 1;
	overflow: hidden;
}

main .holder-produto .detalhes .infos {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

main .holder-produto .detalhes .infos .aux {
	flex: 1;
}

main .holder-produto .detalhes .infos .aux .linha {
	font-size: 5.4em;
	font-weight: 700;
	color: var(--orange);
	line-height: 1;
}

main .holder-produto .detalhes .infos .aux .categoria {
	font-size: 2.4em;
}

main .holder-produto .detalhes .imagens {
	width: 100%;
	position: relative;
}

main .holder-produto .detalhes .imagens .slider {
	width: 100%;
}

main .holder-produto .detalhes .imagens .slider .slide {
	height: 455px;
	margin-right: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .holder-produto .detalhes .imagens .slider .slide .hld-video {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
}

main .holder-produto .detalhes .imagens .slider .slide .hld-video video {
	position: absolute;
	height: 100%;
	width: auto;
	left: 50%;
	transform: translate(-50%);
}

main .holder-produto .detalhes .imagens .slider .slide .bt-3d {
	position: absolute;
	left: 20px;
	bottom: 20px;
	width: 64px;
	height: 64px;
	background: var(--white);
	border-radius: 50%;
	filter: drop-shadow(0px 14px 14px rgba(0, 0, 0, 0.12));
	display: flex;
	justify-content: center;
	align-items: center;
}

main .holder-produto .detalhes .imagens .slider .slide .bt-3d a {
	display: block;
	mask-image: url("../images/ico_3D.svg");
	mask-repeat: no-repeat;
	mask-size: 64px;
	width: 64px;
	height: 64px;
	mask-position: center;
	background: var(--orange);
	transition: all 0.3s ease;
}

main .holder-produto .detalhes .imagens .slider .slide .bt-3d a:hover {
	background: var(--brown);
}

main .holder-produto .detalhes .imagens .slider.montado .slick-list {
	padding: 0 13vw 0 0 !important;
}

main .holder-produto .detalhes .imagens .slider.unico .slick-list {
	padding: 0 !important;
}

main .holder-produto .detalhes .imagens .slider.unico .slide {
	margin: 0;
	height: 492px;
	width: 100%;
}

main .holder-produto .detalhes .imagens .nav-slider {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	padding: 0 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
}

main .holder-produto .detalhes .imagens .nav-slider .bt {
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: var(--orange);
	border-radius: 20px;
	position: relative;
	pointer-events: all;
}

main .holder-produto .detalhes .imagens .nav-slider .bt .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--white);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .holder-produto .detalhes .imagens .nav-slider .bt.left .ico:after {
	mask-image: url("../images/arrow_left.svg");
}

main .holder-produto .detalhes .imagens .nav-slider .bt.right .ico:after {
	mask-image: url("../images/arrow_right.svg");
}

main .holder-produto .detalhes .imagens .nav-slider .slick-hidden {
	display: none;
}

main .holder-produto .detalhes .boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

main .holder-produto .detalhes .boxes .box {
	width: calc(50% - 8px);
	border: solid 1px var(--gray-lighter);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

main .holder-produto .detalhes .boxes .box.box-txt {
}

main .holder-produto .detalhes .boxes .box.box-ico {
}

main .holder-produto .detalhes .boxes .box h5 {
	font-size: 2em;
	margin: 0;
}

main .holder-produto .detalhes .boxes .box p {
	font-size: 1.6em;
	color: var(--gray);
	margin: 0;
}

main .holder-produto .detalhes .boxes .box .icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
}

main .holder-produto .detalhes .boxes .box .icons .ico {
	position: relative;
}

main .holder-produto .detalhes .boxes .box .icons .ico .img {
	opacity: 0.4;
	mask-repeat: no-repeat;
	width: 42px;
	height: 42px;
	mask-size: 42px;
	mask-position: center;
	background: var(--black);
	transition: all 0.3s ease;
}

main .holder-produto .detalhes .boxes .box .icons .ico .img img {
	width: 42px;
}

main .holder-produto .detalhes .boxes .box .icons .ico .txt {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translate(-50%);
	padding: 10px 25px;
	background: var(--black);
	font-size: 1.4em;
	color: var(--white);
	filter: drop-shadow(0px 12px 20px rgba(0, 0, 0, 0.15));
	pointer-events: none;
	opacity: 0;
	transition: all 0.3s ease;
}

main .holder-produto .detalhes .boxes .box .icons .ico .txt:before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: -6px;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid var(--black);
}

main .holder-produto .detalhes .boxes .box .icons .ico:hover .img {
	opacity: 1;
	background: var(--orange);
}

main .holder-produto .detalhes .boxes .box .icons .ico:hover .txt {
	opacity: 1;
}

main .holder-produto .desktop {
	display: block;
}

main .holder-produto .mobile {
	display: none;
}

main .wide-photo {
	background: var(--brown);
	position: relative;
}

main .wide-photo img {
	mix-blend-mode: luminosity;
	width: 100%;
}

main .wide-photo .bottom {
	background: var(--white);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30%;
	height: 40px;
	clip-path: polygon(calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%, 0 0);
	border-top: solid 1px var(--gray-lighter);
	z-index: 2;
}

main .destaque-texto {
	padding: 50px 0;
}

main .destaque-texto .container {
	position: relative;
}

main .destaque-texto .aux-txt {
	width: 100%;
	position: relative;
}

main .destaque-texto .aux-txt:before {
	content: "";
	width: 3px;
	height: 220px;
	position: absolute;
	left: -30px;
	top: 0;
	background: var(--orange);
}

main .destaque-texto h3 {
	margin-bottom: 30px;
}

main .destaque-texto p {
	font-size: 1.8em;
	color: var(--gray-light);
	margin-bottom: 30px;
}

main .destaque-texto p a {
	display: inline-block;
	color: var(--gray-light);
	text-decoration: underline;
	transition: all 0.3s ease;
}

main .destaque-texto p a:hover {
	color: var(--orange);
}

main .lema {
	padding: 30px 0 80px 0;
}

main .lema .itens {
	width: 100%;
	border-style: solid;
	border-width: 0 1px 1px 1px;
	border-color: var(--gray-lighter);
}

main .lema .itens .item {
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: solid 1px var(--gray-lighter);
	padding: 70px 100px 70px 50px;
}

main .lema .itens .item .aux-mobile {
	width: 25%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .lema .itens .item .titulo {
	flex: 1;
	font-size: 4em;
	font-weight: 700;
}

main .lema .itens .item .ico {
	width: 64px;
	height: 64px;
	min-width: 64px;
	background: var(--orange);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .lema .itens .item .txt {
	padding-left: 10%;
	flex: 1;
	font-size: 2em;
	color: var(--gray);
}

main .cta-carreiras {
	padding: 60px 0;
	background: var(--brown);
	position: relative;
}

main .cta-carreiras:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 1) 40%,
		rgba(110, 99, 91, 0) 80%
	);
	z-index: 2;
}

main .cta-carreiras .container {
	position: relative;
	z-index: 3;
	align-items: flex-start;
}

main .cta-carreiras h3 {
	color: var(--white);
	position: relative;
	z-index: 2;
}

main .cta-carreiras .bg-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
}

main .cta-sustentabilidade {
	margin-top: 80px;
	background: var(--brown);
	position: relative;
}

main .cta-sustentabilidade:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 0) 10%,
		rgba(110, 99, 91, 1) 40%
	);
	z-index: 2;
}

main .cta-sustentabilidade .container {
	position: relative;
	z-index: 3;
	align-items: flex-end;
}

main .cta-sustentabilidade .aux-txt {
	position: relative;
	width: 60%;
	padding: 100px 0 200px 0;
}

main .cta-sustentabilidade .aux-txt h3 {
	color: var(--white);
	position: relative;
	z-index: 2;
}

main .cta-sustentabilidade .aux-txt:before {
	content: url("../images/ico_t.svg");
	position: absolute;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -50%);
}

main .cta-sustentabilidade .aux-txt .bt-laranja {
	margin-top: 40px;
}

main .cta-sustentabilidade .bg-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto 100%;
}

main .cta-sustentabilidade .divisoria {
	background: var(--white);
	width: 50%;
	height: 60px;
	position: absolute;
	right: 0;
	bottom: 0;
	clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
	z-index: 5;
}

main .cta-sustentabilidade form {
	position: relative;
	display: inline-block;
	margin-top: 20px;
}

main .cta-sustentabilidade form input[type="email"] {
	width: 386px;
	background: none;
	border: solid 1px var(--gray-lighter);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	border-radius: 28px;
	padding: 0 65px 0 15px;
	font-size: 1.8em;
	font-weight: 600;
	color: var(--white) !important;
}

main .cta-sustentabilidade form input[type="email"]::placeholder {
	color: var(--white) !important;
}

main .cta-sustentabilidade form input[type="email"]:focus {
	border: solid 1px var(--gray-lighter) !important;
	box-shadow: none !important;
}

main .cta-sustentabilidade form .wpforms-submit-container {
	position: absolute;
	right: 8px;
	top: 8px;
	margin: 0 !important;
	transition: all 0.3s ease;
}

main .cta-sustentabilidade form .wpforms-submit-container button {
	width: 40px;
	height: 40px;
	background: var(--orange);
	background-color: var(--orange);
	font-size: 0;
	border: none;
	padding: 0;
	border-radius: 50%;
}

main .cta-sustentabilidade form .wpforms-submit-container button:hover {
	background: var(--orange);
	background-color: var(--orange);
	transform: scale(1.05);
}

main
	.cta-sustentabilidade
	form
	.wpforms-submit-container
	button:not(:hover):not(:active) {
	background-color: var(--orange) !important;
}

main .cta-sustentabilidade form .wpforms-submit-container button:focus {
	border: none !important;
	box-shadow: none !important;
}

main .cta-sustentabilidade form .wpforms-submit-container button:focus:after {
	border: none !important;
	box-shadow: none !important;
}

main .cta-sustentabilidade form .wpforms-submit-container:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--white);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .cta-sustentabilidade form .wpforms-submit-container:hover {
	transform: scale(1.05);
}

main .cta-sustentabilidade .wpforms-container-full {
	margin: 0;
}

main .cta-sustentabilidade .wpforms-field {
	padding: 0 !important;
}

main .cta-sustentabilidade.vazio .aux-txt {
	padding: 60px 0 150px 60px;
}

main .cta-sustentabilidade.vazio .aux-txt:before {
	display: none;
}

main .destaque-selo {
	margin-top: 80px;
	background: var(--brown);
	position: relative;
}

main .destaque-selo:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 0) 10%,
		rgba(110, 99, 91, 1) 55%
	);
	z-index: 2;
}

main .destaque-selo .container {
	position: relative;
	z-index: 3;
	align-items: flex-end;
}

main .destaque-selo .aux-txt {
	position: relative;
	width: 50%;
	padding: 100px 0 150px 0;
}

main .destaque-selo .aux-txt h3 {
	color: var(--white);
	position: relative;
	z-index: 2;
}

main .destaque-selo .aux-txt p {
	color: var(--white);
	position: relative;
	z-index: 2;
	opacity: 0.7;
	margin: 30px 0;
}

main .destaque-selo .aux-txt:before {
	content: url("../images/ico_t.svg");
	position: absolute;
	left: 70%;
	top: 15%;
	transform: translate(-50%, -50%);
}

main .destaque-selo .aux-txt .bt-laranja {
	margin-top: 40px;
}

main .destaque-selo .bg-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto 100%;
}

main .destaque-selo .divisoria {
	background: var(--white);
	width: 50%;
	height: 60px;
	position: absolute;
	left: 0;
	bottom: 0;
	clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0 100%);
	z-index: 5;
}

main .accordion .container {
	gap: 0;
}

main .accordion .infos {
	width: 100%;
	margin-bottom: 30px;
}

main .accordion .infos p {
	font-size: 1.8em;
	color: var(--gray-light);
	margin-top: 15px;
}

main .accordion .item {
	width: 100%;
}

main .accordion .item .titulo {
	width: 100%;
}

main .accordion .item .titulo a {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 4em;
	font-weight: 300;
	padding: 20px 60px 20px 0;
	color: var(--black);
	border-bottom: solid 1px var(--gray-lighter);
	position: relative;
	transition: all 0.5s ease;
}

main .accordion .item .titulo a .num {
	width: 113px;
	min-width: 113px;
}

main .accordion .item .titulo a .ico {
	position: absolute;
	right: 8px;
	top: 24px;
	transition: all 0.3s ease;
	border: none;
	padding: 0;
}

main .accordion .item .titulo a .ico svg {
	transition: all 0.5s ease;
}

main .accordion .item .titulo a .ico .plus {
	transition: all 0.3s ease;
}

main .accordion .item.selected .titulo a .ico .plus {
	opacity: 0;
}

main .accordion .item .conteudos {
	display: none;
}

main .accordion .item .conteudos p {
	font-size: 1.8em;
	color: var(--gray-light);
	width: 75%;
	margin: 15px 0;
}

main .accordion .item .conteudos p a {
	color: var(--gray-light);
	text-decoration: underline;
	display: inline-block;
	transition: all 0.3s ease;
}

main .accordion .item .conteudos p a:hover {
	color: var(--orange);
}

main .accordion .item .conteudos ul li {
	font-size: 1.8em;
	color: var(--gray-light);
	width: 75%;
	margin: 15px 0;
}

main .accordion .item .conteudos ul li ul li {
	font-size: 1em;
	width: 100%;
	margin: 15px 0;
}

main .accordion .item .titulo a:hover .ico svg {
	transform: rotate(180deg);
}

main .accordion .item.selected .titulo a:hover .ico svg {
	transform: rotate(0deg);
}

main .cookies {
	margin-top: 50px;
}

main .cookies .container {
	gap: 0;
}

main .cookies h3 {
	font-size: 4em;
	width: 100%;
}

main .cookies .infos p {
	font-size: 1.8em;
	color: var(--gray-light);
	margin-top: 15px;
}

main .cookies .item {
	width: 100%;
	padding: 40px 0;
	border-bottom: solid 1px var(--gray-lighter);
}

main .cookies .item:last-child {
	border: none;
}

main .cookies .item .titulo {
	font-size: 1.8em;
	color: var(--orange);
	font-weight: 700;
	width: 100%;
	margin-bottom: 15px;
}

main .cookies .item .conteudos p {
	font-size: 1.8em;
	color: var(--gray-light);
	width: 75%;
	margin: 15px 0;
}

main .cookies .item .conteudos p a {
	color: var(--gray-light);
	text-decoration: underline;
	display: inline-block;
	transition: all 0.3s ease;
}

main .cookies .item .conteudos p a:hover {
	color: var(--orange);
}

main .cookies .item .conteudos ul li {
	font-size: 1.8em;
	color: var(--gray-light);
	width: 75%;
	margin: 15px 0;
}

main .cookies .item .conteudos ul li ul li {
	font-size: 1em;
	width: 100%;
	margin: 15px 0;
}

main .info-txt {
	padding: 60px 0 30px 0;
}

main .info-txt .container {
	align-items: flex-start;
	gap: 0;
}

main .info-txt hr {
	height: 1px;
	background: var(--gray-light);
	border: none;
	width: 90px;
	margin: 15px auto 15px 0;
}

main .info-txt p {
	font-size: 1.8em;
	color: var(--gray-light);
	margin-bottom: 30px;
}

main .info-txt p a {
	color: var(--gray-light);
	text-decoration: underline;
	display: inline-block;
	transition: all 0.3s ease;
}

main .info-txt p a:hover {
	color: var(--orange);
}

main .info-txt h2 {
	margin-bottom: 10px;
}

main .info-txt h3 {
	font-size: 4em;
	font-weight: 300;
	margin-bottom: 30px;
}

main .info-txt h4 {
	font-size: 2.4em;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--gray-light);
}

main .info-txt .botoes {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	max-width: 500px;
}

main .info-txt .botoes:last-of-type {
	margin-bottom: 20px;
}

main .info-txt .botoes a {
	color: var(--gray-light);
	font-size: 1.4em;
}

main .info-txt .botoes a button {
	transition: all 0.3s ease;
	border: 1px solid var(--gray-light);
	outline: 0;
	color: var(--gray-light);
	border-radius: 5px;
	background: #ffffff;
}

main .info-txt .botoes a button:hover {
	color: var(--orange);
	outline: unset;
	border: 1px solid var(--orange);
}

main .single-bt {
	padding: 30px 0 0 0;
}

main .single-bt .container {
	align-items: flex-start;
}

main .banner {
	position: relative;
}

main .banner .slider .slide {
	background-color: var(--brown);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
	position: relative;
}

main .banner .slider .slide:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(
		to right,
		rgba(110, 99, 91, 1) 40%,
		rgba(110, 99, 91, 0) 100%
	);
	z-index: 2;
}

main .banner .slider .slide:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: radial-gradient(
		ellipse at right bottom,
		rgba(110, 99, 91, 0) 30%,
		rgba(110, 99, 91, 1) 100%
	);
	z-index: 2;
}

main .banner .slider .slide .container {
	flex-direction: row;
	position: relative;
	z-index: 3;
}

main .banner .slider .slide .container:before {
	background: var(--brown);
}

main .banner .slider .slide .container .infos {
	width: 60%;
	padding: 120px 0 180px 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

main .banner .slider .slide .container .infos:before {
	content: url("../images/ico_t.svg");
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-250px, -200px);
}

main .banner .slider .slide .container .infos h2 {
	position: relative;
	z-index: 2;
}

main .banner .slider .slide .container .infos h3 {
	font-size: 5.4em;
	font-weight: 300;
	color: var(--white);
	line-height: 0.95;
	margin: 16px 0 40px 0;
	position: relative;
	z-index: 2;
}

main .banner .slider .slide .container .infos h3 strong {
	font-weight: 700;
}

main .banner .slider .slide .container .infos p {
	font-size: 2em;
	line-height: 1.3;
	color: var(--white);
	opacity: 0.7;
	width: 75%;
	position: relative;
	z-index: 2;
}

main .banner .nav-slider {
	position: absolute;
	left: 0;
	bottom: 120px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .banner .nav-slider .container {
	flex-direction: row;
	gap: 32px;
}

main .banner .nav-slider .container .bt {
	cursor: pointer;
}

main .banner .nav-slider .container .bt.left img {
	transform: scaleX(-1);
}

main .banner .nav-slider .container .dots .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: -3px 0 0 0;
}

main .banner .nav-slider .container .dots .slick-dots li {
	padding: 0;
	margin: 0;
	line-height: 0;
}

main .banner .nav-slider .container .dots .slick-dots li button {
	font-size: 0;
	padding: 0;
	border: none;
	background: var(--white);
	width: 4px;
	height: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

main .banner .nav-slider .container .dots .slick-dots li.slick-active button {
	width: 16px;
}

main .banner .divisoria {
	background: var(--white);
	width: 50%;
	height: 60px;
	position: absolute;
	right: 0;
	bottom: 0;
	clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
	z-index: 5;
}

main .certificacoes {
	padding-top: 20px;
}

main .certificacoes .infos {
	text-align: center;
}

main .certificacoes .infos h2 {
	margin-bottom: 15px;
}

main .certificacoes .infos h3 {
	font-size: 4em;
}

main .certificacoes .content {
	margin-top: 25px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
}

main .certificacoes .content .icons {
	width: calc(33.333% - 10px);
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

main .certificacoes .content .icons.left .ico:nth-child(2) {
	margin-top: 80px;
}

main .certificacoes .content .icons.right .ico:nth-child(1) {
	margin-top: 80px;
}

main .certificacoes .content .icons .ico {
	width: 145px;
	height: 145px;
	padding: 30px;
	border: solid 1px var(--gray-lighter);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .certificacoes .content .icons .ico img {
	width: 100%;
}

main .certificacoes .content .txt {
	width: calc(33.333% - 10px);
	text-align: center;
}

main .certificacoes .content .txt p {
	font-size: 1.8em;
	line-height: 1.4;
}

main .certificacoes .content .txt .bt-laranja-vazio {
	margin-top: 30px;
}

main .steps {
	padding-top: 60px;
}

main .steps .bar-steps {
	position: relative;
	margin-top: 20px;
	padding-bottom: 30px;
	width: 100%;
}

main .steps .bar-steps .aux {
	display: flex;
	justify-content: center;
	align-items: center;
}

main .steps .bar-steps .step {
	width: 25%;
}

main .steps .bar-steps .step a {
	font-size: 1.8em;
	line-height: 1;
	text-transform: uppercase;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	color: var(--black);
}

main .steps .bar-steps .bar {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 12px;
	background: var(--gray-lighter);
}

main .steps .bar-steps .bar .sel {
	width: 0%;
	height: 12px;
	background: var(--orange);
	clip-path: polygon(
		0% 0%,
		100% 0,
		100% 6px,
		calc(100% - 12px) 100%,
		0% 100%
	);
	transition: all 0.5s ease;
}

main .steps .holder-steps {
	display: flex;
	justify-content: center;
	gap: 50px;
	width: 100%;
}

main .steps .holder-steps .imgs {
	position: relative;
	width: 33.333%;
	aspect-ratio: 1/1;
}

main .steps .holder-steps .imgs .img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(60px 0%, 100% 0, 100% 100%, 0 100%, 0% 60px);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

main .steps .holder-steps .txts {
	flex: 1;
	position: relative;
}

main .steps .holder-steps .txts .txt {
	position: absolute;
	left: 0;
	top: 60%;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

main .steps .holder-steps .txts .txt h4 {
	font-size: 4em;
	font-weight: 700;
	color: var(--orange);
	margin: 0;
	padding-bottom: 10px;
	border-bottom: solid 2px var(--orange);
}

main .steps .holder-steps .txts .txt h5 {
	font-size: 2em;
	font-weight: 700;
	margin: 15px 0;
}

main .steps .holder-steps .bts {
	width: 25%;
	position: relative;
}

main .steps .holder-steps .bts .bt-laranja-vazio {
	position: absolute;
	left: 0;
	top: calc(50% - 28px);
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
}

main .steps .holder-steps .bts .bt-laranja-vazio a {
	width: 100%;
}

main .steps .nav-steps {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

main .steps .nav-steps {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

main .steps .nav-steps .nav-slider {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

main .steps .nav-steps .bt {
	cursor: pointer;
}

main .steps .nav-steps .bt.left img {
	transform: scaleX(-1);
}

main .steps .nav-steps .dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

main .steps .nav-steps .dots .dot {
	background: var(--gray);
	width: 4px;
	height: 4px;
	border-radius: 4px;
	margin-top: -2px;
	transition: all 0.3s ease;
}

main .steps[data-anchor="step-1"] .bar-steps .bar .sel {
	width: 15%;
}

main .steps[data-anchor="step-1"] .imgs .step-1 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-1"] .txts .step-1 {
	opacity: 1;
	top: 50%;
	transform: translate(0, -30%);
	pointer-events: all;
}

main .steps[data-anchor="step-1"] .bts .step-1 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-1"] .dots .step-1 {
	width: 16px;
}

main .steps[data-anchor="step-2"] .bar-steps .bar .sel {
	width: 40%;
}

main .steps[data-anchor="step-2"] .imgs .step-2 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-2"] .txts .step-2 {
	opacity: 1;
	top: 50%;
	transform: translate(0, -30%);
	pointer-events: all;
}

main .steps[data-anchor="step-2"] .bts .step-2 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-2"] .dots .step-2 {
	width: 16px;
}

main .steps[data-anchor="step-3"] .bar-steps .bar .sel {
	width: 65%;
}

main .steps[data-anchor="step-3"] .imgs .step-3 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-3"] .txts .step-3 {
	opacity: 1;
	top: 50%;
	transform: translate(0, -30%);
	pointer-events: all;
}

main .steps[data-anchor="step-3"] .bts .step-3 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-3"] .dots .step-3 {
	width: 16px;
}

main .steps[data-anchor="step-4"] .bar-steps .bar .sel {
	width: 90%;
}

main .steps[data-anchor="step-4"] .imgs .step-4 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-4"] .txts .step-4 {
	opacity: 1;
	top: 50%;
	transform: translate(0, -30%);
	pointer-events: all;
}

main .steps[data-anchor="step-4"] .bts .step-4 {
	opacity: 1;
	pointer-events: all;
}

main .steps[data-anchor="step-4"] .dots .step-4 {
	width: 16px;
}

main .box-certificados {
	padding: 60px 0;
	display: flex;
	flex-direction: column;
	gap: 85px;
}

main .box-certificados .certificado .container {
	flex-direction: row;
	align-items: center;
	gap: 36px;
}

main .box-certificados .certificado:nth-child(odd) .container {
	flex-direction: row-reverse;
}

main .box-certificados .certificado .container.container-accordion {
	flex-direction: row-reverse;
	justify-content: center;
}

main .box-certificados .certificado .container.container-accordion .accordion {
	width: 80%;
	margin: auto;
}
main .box-certificados .certificado .container.container-accordion .accordion .item .titulo a {
	font-size: 3em;
}

main .box-certificados .certificado .container.container-accordion .accordion .conteudos {
	border-bottom: solid 1px var(--gray-lighter);
	padding-left: 30px;
}

main .box-certificados .certificado .txt {
	flex: 1;
}

main .box-certificados .certificado .txt h3 {
	font-size: 4em;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: solid 1px var(--gray-lighter);
}

main .box-certificados .certificado .txt p {
	font-size: 1.8em;
	line-height: 1.4;
	opacity: 0.7;
}

main .box-certificados .certificado .selo {
	width: 220px;
}

main .box-certificados .certificado .selo img {
	width: 100%;
}

main .galeria-projetos {
	padding: 30px 0 100px 0;
}

main .galeria-projetos .container {
	position: relative;
	padding: 0 22px;
}

main .galeria-projetos .slider {
	width: 100%;
}

main .galeria-projetos .slider .slide {
	background-color: var(--brown);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 0 10px;
	aspect-ratio: 1/1;
	position: relative;
}

main .galeria-projetos .slider .slide:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
}

main .galeria-projetos .nav-slider {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

main .galeria-projetos .nav-slider .bt {
	cursor: pointer;
}

main .galeria-projetos .nav-slider .bt.left img {
	transform: scaleX(-1);
}

main .galeria-projetos .nav-slider .dots .slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: -3px 0 0 0;
}

main .galeria-projetos .nav-slider .dots .slick-dots li {
	padding: 0;
	margin: 0;
	line-height: 0;
}

main .galeria-projetos .nav-slider .dots .slick-dots li button {
	font-size: 0;
	padding: 0;
	border: none;
	background: var(--gray);
	width: 4px;
	height: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

main .galeria-projetos .nav-slider .dots .slick-dots li.slick-active button {
	width: 16px;
}

main .share {
	padding-bottom: 60px;
}

main .share .container {
	gap: 20px;
}

main .share h4 {
	font-size: 2.4em;
	font-weight: 700;
	color: var(--gray-light);
	margin: 0;
}

main .share .bts {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 16px;
	border: solid 1px var(--orange);
	border-radius: 50px;
	gap: 13px;
}

main .share .bts .bt {
	width: 25%;
	position: relative;
}

main .share .bts .bt:after {
	content: "";
	position: absolute;
	right: -8px;
	top: 0;
	width: 1px;
	height: 100%;
	background: var(--gray-light);
}

main .share .bts .bt a {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 16px;
}

main .share .bts .bt a .txt {
	font-size: 1.6em;
	color: var(--gray-light);
	transition: all 0.3s ease;
}

main .share .bts .bt a .ico {
	width: 33px;
	height: 33px;
	mask-repeat: no-repeat;
	mask-position: center;
	background: var(--gray-light);
	transition: all 0.3s ease;
}

main .share .bts .bt a:hover .ico {
	background: var(--orange);
}

main .share .bts .bt a:hover .txt {
	color: var(--orange);
}

main .share .bts .bt.copy a {
	padding-right: 4px;
}

main .share .bts .bt.copy a .ico {
	mask-image: url("../images/ico_copy.svg");
	mask-size: 33px;
}

main .share .bts .bt.copy a .txt {
	width: 58px;
	display: block;
}

main .share .bts .bt.whatsapp a .ico {
	mask-image: url("../images/ico_whatsapp.svg");
	mask-size: 29px;
}

main .share .bts .bt.facebook a .ico {
	mask-image: url("../images/ico_facebook.svg");
	mask-size: 22px;
}

main .share .bts .bt.email a .ico {
	mask-image: url("../images/ico_email.svg");
	mask-size: 22px;
}

main .share .bts .bt.email:after {
	display: none;
}

main .steps-contato {
	padding-top: 60px;
}

main .steps-contato .slick-list.smooth {
	transition: height 0.3s ease;
}

main .steps-contato .aux-topo {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 45px;
	width: 100%;
}

main .steps-contato .aux-topo .bar-steps {
	position: relative;
	padding-bottom: 30px;
	flex: 1;
}

main .steps-contato .aux-topo .bar-steps .aux {
	display: flex;
	justify-content: center;
	align-items: center;
}

main .steps-contato .aux-topo .bar-steps .step {
	font-size: 1.8em;
	line-height: 1;
	text-transform: uppercase;
	width: 25%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

main .steps-contato .aux-topo .bar-steps .bar {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 12px;
	background: var(--gray-lighter);
}

main .steps-contato .aux-topo .bar-steps .bar .sel {
	width: 15%;
	height: 12px;
	background: var(--orange);
	clip-path: polygon(
		0% 0%,
		100% 0,
		100% 6px,
		calc(100% - 12px) 100%,
		0% 100%
	);
	transition: all 0.5s ease;
}

main .steps-contato .aux-topo .tempo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding-top: 24px;
}

main .steps-contato .aux-topo .tempo .txt {
	font-size: 5.4em;
	font-weight: 700;
}

main .steps-contato .aux-topo .tempo .info {
	font-size: 2.4em;
	line-height: 1;
}

main .steps-contato .holder-steps {
	width: 100%;
	margin-bottom: 100px;
}

main .steps-contato .holder-steps .container {
	align-items: flex-start;
}

main .steps-contato .holder-steps p {
	color: var(--gray-light);
	display: inline;
}

main .steps-contato .holder-steps p a {
	font-weight: 700;
	color: var(--gray-light);
	display: inline-block;
	transition: all 0.3s ease;
}

main .steps-contato .holder-steps p a:hover {
	color: var(--orange);
}

main .steps-contato .holder-steps .slider-step {
	margin: 30px 0;
}

main .steps-contato .holder-steps .slider-step .step {
	width: 100%;
}

main .steps-contato .holder-steps .slider-step .step .bts {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

main .steps-contato .holder-steps .slider-step .step .bts .bt {
	position: relative;
	z-index: 2;
	display: inline-flex;
}

main .steps-contato .holder-steps .slider-step .step .bts .bt a {
	width: 600px;
	height: 97px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 70px 0 22px;
	font-size: 18px;
	font-weight: 600;
	border: solid 1px var(--orange);
	color: var(--orange);
	background: var(--white);
	border-radius: 50px;
	transition: all 0.3s ease;
	position: relative;
}

main .steps-contato .holder-steps .slider-step .step .bts .bt a .ico {
	position: absolute;
	right: 20px;
	top: 30px;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	background: var(--white);
	border-radius: 50%;
}

main .steps-contato .holder-steps .slider-step .step .bts .bt a .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--orange);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .steps-contato .holder-steps .slider-step .step .bts .bt a:hover {
	background: var(--orange);
	color: var(--white);
}

main .steps-contato .holder-steps .slider-step .step .bts .bt a:hover .ico {
	right: 10px;
	background: var(--white);
}

main .steps-contato .holder-steps .slider-step .step .formulario {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

main .steps-contato .holder-steps .slider-step .step .formulario .aux-inp {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 18px;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp
	input[type="text"] {
	width: 600px;
	line-height: 97px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 22px;
	font-size: 18px;
	font-weight: 600;
	border: solid 1px var(--orange);
	color: var(--orange);
	background: var(--white);
	border-radius: 50px;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp
	input[type="text"]::placeholder {
	color: var(--orange) !important;
	opacity: 1 !important;
}

body[data-contraste="on"]
	main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp
	input[type="text"]::placeholder {
	color: var(--white) !important;
	opacity: 1 !important;
}

main .steps-contato .holder-steps .slider-step .step .formulario .inp select {
	height: 97px;
	font-size: 18px;
	font-weight: 600;
	padding: 0 22px;
	border: solid 1px var(--orange);
	color: var(--orange);
	background: url("../images/arrow_down.svg") no-repeat right 10px top 35px
		var(--white);
	border-radius: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

body[data-contraste="on"]
	main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp
	select {
	height: 97px;
	font-size: 18px;
	font-weight: 600;
	padding: 0 22px;
	border: solid 1px var(--white);
	color: var(--white);
	background: url("../images/arrow_down_white.svg") no-repeat right 10px top
		35px var(--black);
}

main .steps-contato .holder-steps .slider-step .step .formulario .inp select {
	width: 600px;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.aux-inp
	.inp
	select {
	width: 291px;
}

main .steps-contato .holder-steps .slider-step .step .formulario .inp.textarea {
	width: 600px;
	padding: 22px;
	border: solid 1px var(--orange);
	border-radius: 50px;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp.textarea
	textarea {
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	border: none;
	color: var(--orange);
	resize: none;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp.textarea
	textarea::placeholder {
	color: var(--orange) !important;
	opacity: 1 !important;
}

body[data-contraste="on"]
	main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp.textarea
	textarea::placeholder {
	color: var(--white) !important;
	opacity: 1 !important;
}

main .steps-contato .holder-steps .slider-step .step .formulario .inp.file {
	width: 600px;
	height: 97px;
	border: solid 1px var(--orange);
	border-radius: 50px;
	position: relative;
	cursor: pointer;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp.file
	.txt {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 0 22px;
	font-size: 18px;
	font-weight: 600;
	color: var(--orange);
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.inp.file
	.error-text {
	position: absolute;
	left: 0;
	bottom: -30px;
	width: 100%;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main .steps-contato .holder-steps .slider-step .step .formulario .txt-legal {
	font-size: 1.4em;
	color: var(--gray);
}

main .steps-contato .holder-steps .slider-step .step .formulario .txt-legal p {
	font-size: 1em;
}

main .steps-contato .holder-steps .slider-step .step .formulario .txt-legal a {
	display: inline-block;
	color: var(--gray);
	text-decoration: underline;
	transition: all 0.3s ease;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.txt-legal
	a:hover {
	color: var(--orange);
}

main .steps-contato .holder-steps .slider-step .step .formulario .bt-submit {
	margin: 15px 0 30px 0;
	width: 300px;
	position: relative;
	z-index: 2;
	display: inline-flex;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit.disabled {
	pointer-events: none;
	opacity: 0.5;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit.waiting {
	pointer-events: none;
}

main .steps-contato .holder-steps .slider-step .step .formulario .bt-submit a {
	width: 300px;
	height: 56px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 70px 0 22px;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	background: var(--orange);
	border-radius: 28px;
	box-shadow: 0px 0px 20px 0px rgba(238, 134, 0, 0.5);
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit
	a
	.ico {
	position: absolute;
	right: 8px;
	top: 8px;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	background: var(--white);
	border: none;
	padding: 0;
	border-radius: 50%;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit
	a
	.ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--orange);
	pointer-events: none;
	transition: all 0.3s ease;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit
	a:hover
	.ico {
	transform: scale(1.05);
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit
	.loading {
	position: absolute;
	left: 350px;
	top: -30px;
	display: none;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit.waiting
	.loading {
	display: flex;
	width: 300px;
	height: 30px;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit.waiting
	.loading
	.bouncingball {
	width: 16px;
	height: 16px;
	border-radius: 100%;
	background: var(--orange);
	animation: bounce 1s;
	transform: translateY(0px);
	animation-iteration-count: infinite;
	position: absolute;
	left: calc(50% - 8px);
	opacity: 0.7;
	top: 0;
	z-index: 2;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit.waiting
	.loading
	.bouncingball.ball-1 {
	margin-left: -32px;
	animation-delay: -0.1s;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit.waiting
	.loading
	.bouncingball.ball-2 {
	margin-left: 0px;
	animation-delay: -0.2s;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt-submit.waiting
	.loading
	.bouncingball.ball-3 {
	margin-left: 32px;
	animation-delay: -0.3s;
}

main .steps-contato .holder-steps .slider-step .step .formulario .bt {
	margin: 15px 0 30px 0;
	width: 300px;
	position: relative;
	z-index: 2;
	display: inline-flex;
}

main .steps-contato .holder-steps .slider-step .step .formulario .bt.disabled {
	pointer-events: none;
	opacity: 0.5;
}

main .steps-contato .holder-steps .slider-step .step .formulario .bt.waiting {
	pointer-events: none;
}

main .steps-contato .holder-steps .slider-step .step .formulario .bt a {
	width: 300px;
	height: 56px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 70px 0 22px;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	background: var(--orange);
	border-radius: 28px;
	box-shadow: 0px 0px 20px 0px rgba(238, 134, 0, 0.5);
}

main .steps-contato .holder-steps .slider-step .step .formulario .bt a .ico {
	position: absolute;
	right: 8px;
	top: 8px;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	background: var(--white);
	border: none;
	padding: 0;
	border-radius: 50%;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt
	a
	.ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--orange);
	pointer-events: none;
	transition: all 0.3s ease;
}

main
	.steps-contato
	.holder-steps
	.slider-step
	.step
	.formulario
	.bt
	a:hover
	.ico {
	transform: scale(1.05);
}

main .steps-contato .holder-steps .slider-step .step .linha h3 {
	margin-bottom: 32px;
}

main .steps-contato .holder-steps .slider-step .step .linha {
	display: none;
}

main .steps-contato .holder-steps .slider-step .step .linha.on {
	display: block;
}

main .steps-contato .hld-form {
	position: relative;
}

main .steps-contato .hld-form .sucesso {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease;
	font-size: 4em;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	z-index: 2;
}

main .steps-contato .hld-form .sucesso:before {
	content: "";
	position: absolute;
	left: -50px;
	top: 0;
	width: calc(100% + 50px);
	height: 100%;
	background: var(--white);
}

main .steps-contato .hld-form .sucesso p {
	font-size: 1em;
	position: relative;
	z-index: 2;
}

main .steps-contato .hld-form .sucesso strong {
	font-weight: 700;
	margin: 0 0 30px 0;
}

main .steps-contato .hld-form .sucesso.on {
	opacity: 1;
	pointer-events: all;
}

main .steps-contato .hld-fake-form {
	display: none;
}

main .holder-steps .nav-slider .bt-back {
	position: relative;
	z-index: 2;
	display: inline-flex;
	cursor: pointer;
}

main .holder-steps .nav-slider .bt-back .aux {
	width: 96px;
	height: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 16px 0 42px;
	font-size: 14px;
	font-weight: 600;
	border: solid 1px var(--orange);
	color: var(--orange);
	background: var(--white);
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
}

main .holder-steps .nav-slider .bt-back .aux .ico {
	position: absolute;
	left: 2px;
	top: 2px;
	transition: all 0.3s ease;
	width: 34px;
	height: 34px;
	background: var(--white);
	border-radius: 50%;
}

main .holder-steps .nav-slider .bt-back .aux .ico:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	mask-image: url("../images/arrow_left.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--orange);
	pointer-events: none;
	transition: all 0.3s ease;
}

main .holder-steps .nav-slider .bt-back .aux:hover {
	background: var(--orange);
	color: var(--white);
}

main .holder-steps .nav-slider .bt-back .aux:hover .ico {
	right: 10px;
	background: var(--white);
}

main .holder-steps .nav-slider .slick-disabled {
	opacity: 0;
	pointer-events: none;
}

@keyframes bounce {
	0% {
		top: 20px;
		-webkit-animation-timing-function: ease-in;
	}

	40% {
	}

	50% {
		top: 70px;
		height: 16px;
		-webkit-animation-timing-function: ease-out;
	}

	55% {
		top: 90px;
		height: 8px;
		-webkit-animation-timing-function: ease-in;
	}

	65% {
		top: 50px;
		height: 16px;
		-webkit-animation-timing-function: ease-out;
	}

	95% {
		top: 20px;
		-webkit-animation-timing-function: ease-in;
	}

	100% {
		top: 20px;
		-webkit-animation-timing-function: ease-in;
	}
}

/* CUSTOM */

.page-template-page-solucoes main .post-grid-solucoes .infos h3 {
	font-size: 7em;
}

.page-template-page-solucoes main .num-steps {
	padding-bottom: 60px;
}

.single-produto main .num-steps {
	padding-top: 60px;
}

.single-produto main .post-grid .infos {
	margin-bottom: 30px;
}

.single-produto main .novidades {
	margin-bottom: 50px;
}

.page-template-page-a-trombini main .numeros {
	padding-top: 80px;
}

.page-template-page-a-trombini main .box-destaque {
	padding: 60px 0;
}

.page-template-page-a-trombini main .box-destaque h3 {
	font-size: 7em;
}

.page-template-page-a-trombini main .box-destaque .left {
	width: 40%;
}

.page-template-page-a-trombini main .post-grid {
	padding-bottom: 0;
}

.page-template-page-a-trombini main .post-grid .hld-grid {
	gap: 32px;
}

.page-template-page-politicas main .box-destaque {
	padding: 60px 0;
}

.page-template-page-cookies main .box-destaque {
	padding: 30px 0;
}

.page-template-page-cookies main .box-destaque:first-child {
	padding-top: 60px;
}

.page-template-page-cookies main .box-destaque:last-child {
	padding-bottom: 60px;
}

.page-template-page-diferenciais main .box-destaque {
	padding: 60px 0;
}

.page-template-page-diferenciais main .box-destaque p {
	padding-right: 25%;
}

.page-template-page-governanca main .box-destaque h3 {
	font-size: 4em;
}

.page-template-page-governanca main .box-destaque {
	padding-bottom: 60px;
}

.page-template-page-gestao-da-qualidade main .box-destaque {
	padding: 60px 0;
}

.page-template-page-sustentabilidade main .box-destaque {
	padding: 60px 0;
}

.page-template-page-sustentabilidade main .novidades {
	margin-top: 80px;
}

.page-template-page-manejo-florestal main .box-destaque {
	padding: 30px 0 60px 0;
}

.page-template-page-projetos main .box-destaque {
	padding: 60px 0;
}

.page-template-page-projetos main .info-txt strong {
	font-size: 1.333em;
}

.single-post main .galeria-projetos {
	padding-bottom: 0;
}

.single-post main .video {
	margin-bottom: 30px;
}

.single-post main .topo-default {
	overflow: hidden;
}

.single-post main .topo-default .infos {
	width: 80%;
}

.page-template-page-contato main .topo-default {
	overflow: hidden;
}

.page-template-page-contato main .box-destaque {
	padding: 60px 0;
}

.page-template-page-busca main .post-grid .infos h3 strong {
	color: var(--orange);
}

.page-template-page-busca main .accordion .infos h3 strong {
	color: var(--orange);
}

/* FOOTER */

footer {
	margin-top: 80px;
}

footer .container {
	flex-direction: row;
	align-items: flex-start;
}

footer .news {
	border-top: solid 1px var(--gray-lighter);
	padding: 50px 0 40px 0;
}

footer .news .logo {
	width: 300px;
}

footer .news .logo .logo-txt {
	fill: var(--black);
}

footer .news .logo .logo-ico {
	fill: var(--orange);
}

footer .news .aux {
	display: flex;
	justify-content: space-between;
	flex: 1;
}

footer .news .newsletter {
	flex: 1;
}

footer .news .newsletter.disabled {
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}

footer .news .newsletter.disabled * {
	display: none;
}

footer .news .newsletter .chamada {
	font-size: 2em;
	font-weight: 600;
	color: var(--black);
	line-height: 1.2;
	margin-bottom: 15px;
}

footer .news .newsletter form {
	position: relative;
	display: inline-block;
	width: 100%;
}

footer .news .newsletter form input[type="email"] {
	background: var(--white);
	border: solid 1px var(--gray-lighter);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
	border-radius: 28px;
	padding: 0 65px 0 15px;
	font-size: 1.4em;
	color: var(--gray);
}

footer .news .newsletter form input[type="email"]:focus {
	border: solid 1px var(--gray-lighter);
	box-shadow: none;
}

footer .news .newsletter form .wpforms-submit-container {
	position: absolute;
	right: 8px;
	top: 8px;
	margin: 0;
	transition: all 0.3s ease;
}

footer .news .newsletter form .wpforms-submit-container button {
	width: 40px;
	height: 40px;
	background: var(--orange);
	background-color: var(--orange);
	font-size: 0;
	border: none;
	padding: 0;
	border-radius: 50%;
}

footer
	.news
	.newsletter
	form
	.wpforms-submit-container
	button:not(:hover):not(:active) {
	background-color: var(--orange);
}

footer .news .newsletter form .wpforms-submit-container button:focus {
	border: none;
	box-shadow: none;
}

footer .news .newsletter form .wpforms-submit-container button:focus:after {
	border: none;
	box-shadow: none;
}

footer .news .newsletter form .wpforms-submit-container:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	mask-position: center;
	background: var(--white);
	pointer-events: none;
	transition: all 0.3s ease;
}

footer .news .newsletter form .wpforms-submit-container:hover {
	transform: scale(1.05);
}

footer .news .newsletter .wpforms-container-full {
	max-width: 300px;
	margin: 0;
}

footer .news .newsletter .wpforms-field {
	padding: 0 !important;
}

footer .news .social .chamada {
	font-size: 2em;
	font-weight: 700;
	color: var(--gray-dark);
	line-height: 1.2;
	margin-bottom: 15px;
}

footer .news .social .redes {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}

footer .news .social .redes a {
	width: 56px;
	height: 56px;
	border: solid 1px var(--gray-lighter);
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer .news .social .redes a .ico {
	mask-repeat: no-repeat;
	mask-size: 25px;
	width: 54px;
	height: 56px;
	mask-position: center;
	background: var(--black);
}

footer .news .social .redes a .ico.youtube {
	mask-image: url("../images/ico_social_youtube.svg");
}

footer .news .social .redes a .ico.instagram {
	mask-image: url("../images/ico_social_instagram.svg");
}

footer .news .social .redes a .ico.xis {
	mask-image: url("../images/ico_social_x.svg");
}

footer .news .social .redes a .ico.facebook {
	mask-image: url("../images/ico_social_facebook.svg");
}

footer .news .social .redes a .ico.linkedin {
	mask-image: url("../images/ico_social_linkedin.svg");
}

footer .news .social .redes a .ico.flickr {
	mask-image: url("../images/ico_social_flickr.svg");
}

footer .news .social .redes a:hover {
	background: var(--orange);
	border-color: var(--orange);
}

footer .news .social .redes a:hover .ico {
	background: var(--white);
}

footer .menu {
	border-top: solid 1px var(--gray-lighter);
	padding: 50px 0 40px 0;
}

footer .menu .aux {
	display: flex;
	flex: 1;
	gap: 16px;
}

footer .menu .telefones {
	width: 300px;
}

footer .menu .telefones .chamada {
	font-size: 2em;
	font-weight: 700;
	color: var(--gray-dark);
	line-height: 1.2;
	margin-bottom: 15px;
}

footer .menu .telefones p {
	font-size: 1.6em;
	color: var(--gray-dark);
	line-height: 1.2;
	margin: 0;
}

footer .menu .telefones p a {
	display: inline-block;
	color: var(--gray-dark);
}

footer .menu .telefones p a:hover {
	text-decoration: underline;
}

footer .menu .telefones p.endereco {
	margin-top: 30px;
}

footer .menu .telefones .bt {
	margin-top: 30px;
}

footer .menu .telefones .bt a {
	display: flex;
	align-items: center;
	font-size: 1.4em;
	font-weight: 600;
	color: var(--black);
}

footer .menu .telefones .bt a .ico {
	margin-left: 10px;
	mask-image: url("../images/arrow_right.svg");
	mask-repeat: no-repeat;
	mask-size: 24px;
	width: 25px;
	height: 25px;
	mask-position: center;
	background: var(--orange);
	transition: all 0.3s ease;
}

footer .menu .telefones .bt a:hover .ico {
	margin-left: 15px;
}

footer .menu .links {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 25%;
}

footer .menu .links .chamada {
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 15px;
}
footer .menu .links .chamada a {
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--orange);
}

footer .menu .links a {
	font-size: 1.4em;
	font-weight: 600;
	color: var(--black);
	display: flex;
	gap: 5px;
	align-items: center;
	transition: all 0.3s ease;
}

footer .menu .links a.externo .ico {
	margin-top: 3px;
	mask-image: url("../images/arrow_link.svg");
	mask-repeat: no-repeat;
	mask-size: 9px;
	width: 9px;
	height: 9px;
	mask-position: center;
	background: var(--black);
	transition: all 0.3s ease;
}

footer .menu .links a:hover {
	color: var(--orange);
}

footer .menu .links a.externo:hover .ico {
	background: var(--orange);
}

footer .copyright {
	border-top: solid 1px var(--gray-lighter);
	padding: 15px 0 30px 0;
	font-size: 1.2em;
	color: var(--gray-light);
}

/* MEDIA QUERY */

@media (min-width: 1366px) {
	/* XXL */
}

@media (max-width: 1365.98px) {
	/* XL */
}

@media (max-height: 760px) and (min-width: 992px) {
	main .topo-home .bottom .nav-slider {
		margin-bottom: -100px;
	}
}

@media (max-width: 1239.98px) {
	/* LG */

	.container {
		padding: 0 16px;
	}

	nav .logo svg {
		width: 140px;
	}

	nav .menu ul {
		gap: 10px;
	}

	nav .menu ul li a {
		font-size: 1.4em;
		white-space: nowrap;
	}

	nav .menu ul li:first-child .drop {
		transform: translate(-35%);
	}

	main .topo-home .slider .slide .container .infos {
		width: 65%;
	}

	main .topo-produto .infos {
		width: 45%;
	}

	main .topo-a-trombini .container .infos {
		width: 60%;
	}

	main .solucoes .links .link a {
		font-size: 3em;
	}

	main .solucoes .links .link .img {
		max-width: 350px;
		top: -30px;
	}

	main .solucoes .links .link .img .aux {
		height: 415px;
	}

	main .video .right p br {
		display: none;
	}

	main .box-destaque h3 br {
		display: none;
	}

	main .destaque-texto h3 br {
		display: none;
	}

	main .numeros .boxes .box {
		width: 50%;
	}

	main .numeros .boxes .box .info h4 {
		font-size: 3em;
	}

	main .numeros .boxes .box .info p {
		font-size: 2em;
	}

	main .img-accordion .infos {
		width: 45%;
	}

	main .banner .slider .slide .container .infos {
		width: 80%;
	}

	main .cta-sustentabilidade .aux-txt h3 {
		font-size: 4em;
	}

	main .steps .nav-steps {
		margin-top: 90px;
	}

	main .steps[data-anchor="step-1"] .txts .step-1 {
		transform: translate(0, -50%);
	}

	main .steps[data-anchor="step-2"] .txts .step-2 {
		transform: translate(0, -50%);
	}

	main .steps[data-anchor="step-3"] .txts .step-3 {
		transform: translate(0, -50%);
	}

	main .steps[data-anchor="step-4"] .txts .step-4 {
		transform: translate(0, -50%);
	}

	main .holder-produto .detalhes .boxes .box .icons {
		gap: 5px;
	}

	.page-template-page-a-trombini main .box-destaque h3 {
		font-size: 5em;
	}

	.page-template-page-solucoes main .post-grid-solucoes .infos h3 {
		font-size: 5em;
	}

	footer .news .logo {
		width: 250px;
	}

	footer .menu .telefones {
		width: 250px;
	}

	footer .menu .telefones .chamada br {
		display: none;
	}

	footer .news .social .redes {
		gap: 8px;
	}
}

@media (max-width: 991.98px) {
	/* MD */

	.container {
		gap: 16px;
	}

	.container.small {
		padding: 0 16px;
	}

	.container.smaller {
		padding: 0 16px;
	}

	main .single-content .wp-block-columns {
		padding: 0 16px;
	}

	main .single-content p {
		padding: 0 16px;
	}

	main .single-content .wp-block-columns p {
		padding: 0;
	}

	main .single-content h3 {
		padding: 0 16px;
	}

	main .single-content ul {
		padding: 0 66px;
	}

	/* NAV */

	nav {
		padding: 10px 0;
	}

	nav .bt-menu {
		display: block;
	}

	nav .desktop {
		display: none;
	}

	nav .mobile {
		display: block;
	}

	nav .container:before {
		content: "";
		position: absolute;
		left: 0;
		top: -100%;
		width: 100%;
		height: 100%;
		background: var(--white);
		z-index: 3;
		transition: all 0.3s ease;
	}

	nav .logo {
		position: relative;
		z-index: 4;
	}

	nav .logo svg {
		width: 120px;
	}

	nav .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding: 80px 16px 30px 16px;
		background: var(--white);
		display: none;
		box-shadow: 0 0 30px var(--black-alpha-light);
	}

	nav .menu ul {
		flex-direction: column;
		z-index: 1;
	}

	nav .menu ul li {
		width: 100%;
	}

	nav .menu ul li a {
		justify-content: space-between;
		color: var(--black);
		font-size: 2em;
		padding: 10px 6px;
		margin-bottom: 5px;
	}

	nav .menu ul li a:hover {
		color: var(--black);
	}

	nav .menu ul li a .arrow-down {
		background: var(--black);
	}

	nav .menu ul li .drop {
		width: 100%;
		max-width: 100%;
		position: relative;
		top: unset;
		left: unset;
		transform: none;
		opacity: 1;
		pointer-events: all;
	}

	nav .menu ul li:first-child .drop {
		transform: none;
	}

	nav .menu ul li .drop .holder {
		width: 100%;
		height: auto;
		padding: 0;
		clip-path: unset;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		display: none;
	}

	nav .menu ul li .drop .holder .aux-img {
		display: none;
	}

	nav .menu ul li .drop .holder .infos .titulo {
		display: none;
	}

	nav .menu ul li.has-drop:hover:before {
		opacity: 0;
	}

	nav .menu .linguas {
		display: flex;
	}

	nav.sticky .menu ul li.has-drop:hover a {
		color: var(--black);
	}

	nav.sticky .menu ul li.has-drop:hover a .arrow-down {
		background: var(--black);
	}

	nav .holder {
		padding-right: 50px;
		z-index: 3;
	}

	nav .holder .busca {
		margin-top: -5px;
	}

	nav .holder .busca:hover:before {
		opacity: 0;
	}

	nav .holder .busca a {
		position: relative;
		z-index: 3;
	}

	nav .holder .busca .drop {
		position: fixed;
		width: 100vw;
		max-width: 100vw;
		height: 100%;
		top: -100%;
		left: 0;
		opacity: 1;
		transform: none;
	}

	nav .holder .busca .drop .holder {
		height: 100%;
		margin: 0;
		clip-path: unset;
		justify-content: flex-start;
		padding-top: 100px;
	}

	nav .holder .busca .drop .holder h3 {
		font-size: 2.4em;
	}

	nav .holder .busca.open .drop {
		top: 0;
		pointer-events: all;
	}

	nav .menu .on .arrow-down {
		transform: scaleY(-1);
	}

	nav.sticky {
		padding: 10px 0;
		background: none;
	}

	nav.sticky .container:before {
		top: 0;
	}

	nav.sticky .menu ul li:hover a {
		color: var(--black);
	}

	nav.sticky .menu ul li:hover a .arrow-down {
		background: var(--black);
	}

	nav.open .holder .busca form .aux-submit:after {
		background: var(--orange);
	}

	nav.open .logo .logo-txt {
		fill: var(--black);
	}

	nav.open .logo .logo-ico {
		fill: var(--orange);
	}

	nav.open .container:before {
		top: 0;
	}

	nav.open .menu ul li:hover a {
		color: var(--black);
	}

	nav.open .menu ul li:hover a .arrow-down {
		background: var(--black);
	}

	main .post-grid .filtros .alm-filters-container {
		padding: 0 100px 0 110px;
		white-space: nowrap;
	}

	main
		.post-grid
		.filtros
		.alm-filters-container
		.alm-filter
		li:last-child
		div.alm-filter--link {
		margin-right: 30px;
	}

	main .post-grid.filter-nav .filtros .nav-left {
		margin-top: 10px;
		display: none;
	}

	main .post-grid.filter-nav .filtros .nav-right {
		margin-top: 10px;
		display: none;
	}

	/* ASIDE */

	aside {
		display: none;
	}

	/* MAIN */

	h2 {
		font-size: 1.4em;
		letter-spacing: 7px;
	}

	h3 {
		font-size: 3em;
	}

	p {
		font-size: 1.4em;
	}

	main .bt-laranja a,
	main .bt-laranja .acs-bg {
		width: auto;
		min-width: 240px;
		height: 48px;
		font-size: 1.4em;
	}

	main .bt-laranja a .ico,
	main .bt-laranja .acs-bg .ico {
		top: 4px;
	}

	main .bt-laranja-vazio a,
	main .bt-laranja-vazio .acs-bg {
		width: auto;
		min-width: 240px;
		height: 48px;
		font-size: 1.4em;
	}

	main .bt-laranja-vazio a .ico,
	main .bt-laranja-vazio .acs-bg .ico {
		top: 4px;
	}

	main .bt-arrow a {
		font-size: 1.6em;
	}

	main .bt-arrow-dummy {
		font-size: 1.6em;
	}

	main .bt-plus a {
		font-size: 2em;
	}

	main .bt-plus a .ico {
		mask-size: 11px;
		width: 11px;
		height: 11px;
	}

	main .bt-mais-menos a {
		font-size: 1.6em;
	}

	main .topo-home {
		min-height: 680px;
	}

	main .topo-home .slider .slide {
		background-position: top center;
		background-size: 100% auto;
		position: relative;
	}

	main .topo-home .slider .slide:before {
		content: "";
		width: 100%;
		height: 150px;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(
			to bottom,
			rgba(110, 99, 91, 1) 25%,
			rgba(110, 99, 91, 0) 100%
		);
	}

	main .topo-home .slider .slide:after {
		content: "";
		width: 80%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(
			to right,
			rgba(110, 99, 91, 1) 0%,
			rgba(110, 99, 91, 0) 100%
		);
	}

	main .topo-home .slider .slide .container {
		height: 100dvh;
		min-height: 680px;
		align-items: flex-end;
		z-index: 2;
		position: relative;
	}

	main .topo-home .slider .slide .container .infos {
		width: calc(100% + 32px);
		height: 60%;
		margin: 0 -16px;
		padding: 0 16px 0 16px;
		justify-content: flex-start;
	}

	main .topo-home .slider .slide .container .infos:after {
		display: none;
	}

	main .topo-home .slider .slide .container .infos:before {
		display: none;
	}

	main .topo-home .slider .slide .container .infos h1 {
		font-size: 4em;
	}

	main .topo-home .bottom {
		bottom: 0;
	}

	main .topo-home .bottom .container {
		height: 75px;
		padding-bottom: 10px;
	}

	main .topo-home .bottom:before {
		bottom: 0;
		height: 10px;
	}

	main .topo-home .bottom .box {
		right: -30px;
		bottom: clamp(340px, 50vh, 50vh);
		width: 70%;
	}

	main .topo-home .bottom .aux-divisoria {
		width: 30%;
		height: 45px;
	}

	main .topo-home .bottom .aux-divisoria:after {
		left: 22px;
		top: -8px;
		height: 62px;
	}

	main .topo-home .bottom .aux-divisoria .divisoria {
		height: 45px;
		clip-path: polygon(45px 0, 100% 0, 100% 100%, 0 100%);
	}

	main .topo-solucoes {
		padding-top: 62px;
		height: auto;
	}

	main .topo-solucoes .boxes {
		display: block;
	}

	main .topo-solucoes .boxes .box {
		width: 100%;
		border: none;
		height: calc(100vh - 62px);
	}

	main .topo-solucoes .boxes .box:hover {
		width: 100%;
	}

	main .topo-solucoes .boxes .box a .info .titulo {
		font-size: 4em;
	}

	main .topo-solucoes .bottom {
		display: flex;
	}

	main .topo-produto {
		background: var(--brown);
		padding: 95px 0 72vw 0;
	}

	main .topo-produto .container {
		align-items: flex-start;
		height: 100%;
	}

	main .topo-produto .infos {
		width: 100%;
		margin-right: 0;
	}

	main .topo-produto .infos h1 {
		font-size: 4em;
	}

	main .topo-produto .infos h1 br {
		display: none;
	}

	main .topo-produto .infos p {
		font-size: 1.4em;
	}

	main .topo-produto .bottom:before {
		bottom: -50px;
	}

	main .topo-produto .bottom .box {
		width: 100%;
		left: 0;
	}

	main .topo-produto .bottom .aux-divisoria {
		width: 55%;
		height: 45px;
	}

	main .topo-produto .bottom .aux-divisoria:after {
		right: 22px;
		top: -8px;
		height: 62px;
	}

	main .topo-produto .bottom .aux-divisoria .divisoria {
		height: 45px;
		clip-path: polygon(
			calc(100% - 45px) 0,
			100% 45px,
			100% 100%,
			0 100%,
			0 0
		);
	}

	main .topo-default {
		background-position: top center;
		background-size: 120% auto;
	}

	.single-post main .topo-default {
		background-size: auto 70%;
	}

	main .topo-default .container:before {
		content: "";
		width: 100%;
		height: 150px;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(
			to bottom,
			rgba(110, 99, 91, 1) 25%,
			rgba(110, 99, 91, 0) 100%
		);
	}

	main .topo-default .container:after {
		content: "";
		width: 50%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(
			to right,
			rgba(110, 99, 91, 1) 0%,
			rgba(110, 99, 91, 0) 100%
		);
	}

	main .topo-default .container {
		height: 100dvh;
		min-height: 680px;
		align-items: flex-end;
		z-index: 2;
		position: relative;
	}

	main .topo-default .container .infos {
		width: calc(100% + 32px);
		height: auto;
		margin: 0 -16px;
		padding: 30px 16px 100px 16px;
		justify-content: flex-start;
		position: relative;
	}

	main .topo-default .container .infos:before {
		content: "";
		width: 100%;
		height: 80%;
		position: absolute;
		left: 0;
		top: 20%;
		background: var(--brown);
	}

	main .topo-default .container .infos:after {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: -80%;
		background: linear-gradient(
			to bottom,
			rgba(110, 99, 91, 0) 0%,
			rgba(110, 99, 91, 1) 80%
		);
	}

	main .topo-default .container {
		justify-content: flex-end;
		height: 100dvh;
	}

	main .topo-default .infos {
		padding: 30px 0 100px 0;
		height: 60%;
	}

	main .topo-default .infos h1 {
		font-size: 4em;
	}

	main .topo-default .infos p {
		font-size: 1.4em;
	}

	main .topo-default .bottom .container {
		height: 45px;
		padding-bottom: 10px;
	}

	main .topo-default .bottom:before {
		height: 10px;
		bottom: 0;
		z-index: 2;
	}

	main .topo-default .bottom:after {
		z-index: 3;
	}

	main .topo-default .bottom .aux-divisoria {
		height: 45px;
		z-index: 4;
	}

	main .topo-default .bottom .aux-divisoria:after {
		left: 22px;
		top: -8px;
		height: 62px;
	}

	main .topo-default .bottom .aux-divisoria .divisoria {
		height: 45px;
		clip-path: polygon(45px 0, 100% 0, 100% 100%, 0 100%);
	}

	main .topo-default.busca {
		background-image: none !important;
	}

	main .topo-default.busca .container {
		height: auto;
		min-height: unset;
		padding: 60px 16px;
		align-items: flex-start;
	}

	main .topo-default.busca .bottom .container {
		z-index: 5;
	}

	main .topo-default.busca .bottom .box {
		position: absolute;
		right: unset;
		left: 50%;
		bottom: -20vw;
		transform: translate(-60%);
		width: 100%;
	}

	main .topo-default.busca .bottom .box img {
		width: 100%;
	}

	.dummy {
		height: 25vw;
	}

	main .topo-sustentabilidade {
		background-position: bottom center;
		background-size: 100% auto;
	}

	main .topo-sustentabilidade:after {
		height: 25%;
		bottom: 10px;
	}

	main .topo-sustentabilidade .container:before {
		width: 100%;
		height: 45%;
	}

	main .topo-sustentabilidade .container:after {
		width: 100%;
		height: 25%;
		left: 0;
		top: 45%;
		background: linear-gradient(
			to bottom,
			rgba(110, 99, 91, 1) 0%,
			rgba(110, 99, 91, 0) 100%
		);
	}

	main .topo-sustentabilidade .infos {
		padding: 125px 0 350px 0;
	}

	main .topo-sustentabilidade .infos:before {
		display: none;
	}

	main .topo-sustentabilidade .infos:after {
		display: none;
	}

	main .topo-sustentabilidade .infos h1 {
		font-size: 4em;
	}

	main .topo-sustentabilidade .infos p {
		font-size: 1.4em;
	}

	main .topo-sustentabilidade .bottom:before {
		bottom: 0px;
	}

	main .topo-sustentabilidade .bottom .box {
		bottom: -100px;
	}

	main .topo-sustentabilidade .bottom .box img {
		width: 100%;
	}

	main .topo-sustentabilidade .bottom .aux-divisoria {
		height: 45px;
	}

	main .topo-sustentabilidade .bottom .aux-divisoria:after {
		left: 22px;
		top: -8px;
		height: 62px;
	}

	main .topo-sustentabilidade .bottom .aux-divisoria .divisoria {
		height: 45px;
		clip-path: polygon(45px 0, 100% 0, 100% 100%, 0 100%);
	}

	main .topo-a-trombini .container .infos h1 {
		font-size: 4em;
	}

	main .topo-a-trombini .container .infos h1 br {
		display: none;
	}

	main .topo-a-trombini .container .infos p {
		font-size: 1.4em;
	}

	main .topo-a-trombini .bottom .aux-divisoria {
		height: 45px;
	}

	main .topo-a-trombini .bottom .aux-divisoria:after {
		left: 22px;
		top: -8px;
		height: 62px;
	}

	main .topo-a-trombini .bottom .aux-divisoria .divisoria {
		height: 45px;
		clip-path: polygon(45px 0, 100% 0, 100% 100%, 0 100%);
	}

	main .topo-a-trombini .container .infos {
		width: 100%;
		justify-content: flex-end;
		padding-bottom: 200px;
	}

	main .topo-a-trombini .bt-play {
		top: unset;
		bottom: 0;
		height: 40%;
	}

	main .topo-a-trombini .bt-play a {
		width: 66px;
		height: 66px;
	}

	main .topo-a-trombini .bt-play a img {
		width: 28px;
	}

	main .topo-produto .infos p br {
		display: none;
	}

	main .topo-default .infos p br {
		display: none;
	}

	main .topo-sustentabilidade .infos p br {
		display: none;
	}

	main .topo-a-trombini .container .infos p br {
		display: none;
	}

	main .solucoes {
		padding: 30px 0 60px 0;
	}

	main .solucoes .links .link a {
		font-size: 2em;
		line-height: 40px;
		padding: 10px 0;
	}

	main .solucoes .links .link a .num {
		width: 40px;
	}

	main .solucoes .links .link a .ico {
		top: 10px;
	}

	main .solucoes .links .link .img {
		display: none;
	}

	main .video {
		margin-bottom: -30vw;
	}

	main .video .aux-txt {
		flex-direction: column;
		gap: 20px;
		width: 100%;
		align-items: flex-start;
	}

	main .numeros {
		padding: calc(30vw + 50px) 0 80px 0;
	}

	main .numeros .aux-txt:before {
		display: none;
	}

	main .numeros .boxes {
		gap: 0;
	}

	main .numeros .boxes .row {
		flex-direction: column;
	}

	main .numeros .boxes .box {
		border-left: none;
		border-right: none;
		border-top: none;
		gap: 16px;
		width: 100%;
		padding: 16px 0;
	}

	main .numeros .boxes .row:last-child .box:last-child {
		border-bottom: none;
	}

	main .numeros .boxes .box .info h4 {
		font-size: 2.6em;
	}

	main .numeros .boxes .box .info p {
		font-size: 1.8em;
	}

	main .numeros .bg-img {
		display: none;
	}

	main .numeros .divisoria {
		height: 30px;
		clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
		z-index: 5;
	}

	main .img-accordion {
		padding: 40px 0;
	}

	main .img-accordion .container {
		flex-direction: column;
		align-items: flex-end;
	}

	main .img-accordion .aux-img {
		width: calc(100% - 60px);
		position: relative;
	}

	main .img-accordion .aux-img:after {
		transform: translate(-50%) scale(0.5);
		top: 0;
	}

	main .img-accordion .infos {
		width: 100%;
	}

	main .img-accordion .infos h4 {
		font-size: 2em;
		margin: 15px 0;
	}

	main .img-accordion .infos .txt p {
		font-size: 1.4em;
	}

	main .img-accordion .infos .txt p.destaque {
		font-size: 1.6em;
	}

	main .img-accordion .infos .links {
		margin-top: 15px;
	}

	main .novidades h3 br {
		display: none;
	}

	main .novidades .posts {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 15px;
	}

	main .novidades .posts .post {
		width: 100%;
	}

	main .novidades .posts .post a .info {
		padding: 32px 20px;
	}

	main .novidades .posts .post a .info .categoria {
		font-size: 1.4em;
	}

	main .novidades .posts .post a .info .titulo {
		font-size: 1.8em;
	}

	main .canais .blocos {
		flex-direction: column;
		gap: 16px;
	}

	main .canais .blocos .bloco {
		flex: unset;
		width: 100%;
		max-width: 100%;
	}

	main .post-grid .infos p {
		font-size: 1.6em;
	}

	main .post-grid .hld-grid .item.produto {
		width: calc(50% - 10px);
	}

	main .post-grid .hld-grid .item.local {
		width: calc(33.333% - 22px);
		margin-bottom: 45px;
	}

	main .post-grid .hld-grid .item.post {
		width: 100%;
	}

	main .post-grid .hld-grid .item.post a .info {
		padding: 32px 20px;
	}

	main .post-grid .hld-grid .item.post a .info .categoria {
		font-size: 1.4em;
	}

	main .post-grid .hld-grid .item.post a .info .titulo {
		font-size: 1.8em;
	}

	main .post-grid .hld-grid .item.institucional {
		width: calc(50% - 10px);
		margin-bottom: 45px;
	}

	main .post-grid .paginacao {
		width: 100%;
	}

	main .num-steps .container {
		gap: 40px;
	}

	main .num-steps .itens {
		flex-direction: column;
		margin-bottom: 60px;
	}

	main .num-steps .itens .item {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 18px;
	}

	main .num-steps .itens .item .txt {
		margin-top: 0;
	}

	main .steps-contato .holder-steps .slider-step .step .bts .bt a {
		height: 68px;
		font-size: 1.6em;
	}

	main .steps-contato .holder-steps .slider-step .step .bts .bt a .ico {
		top: 12px;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.inp
		input[type="text"] {
		line-height: 68px;
		font-size: 1.6em;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.inp
		select {
		height: 68px;
		font-size: 1.6em;
	}

	main .steps-contato .holder-steps .slider-step .step .formulario .bt {
		width: 100%;
		max-width: 300px;
	}

	body[data-contraste="on"]
		main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.inp
		select {
		height: 68px;
		font-size: 1.6em;
	}

	main .steps-contato .holder-steps .slider-step .step .formulario .inp.file {
		height: 68px;
		font-size: 1.6em;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.inp
		select {
		background-position: right 10px top 22px;
	}

	main .box-destaque .container {
		flex-direction: column;
	}

	main .box-destaque .col {
		width: 100%;
		order: 2;
	}

	main .box-destaque .col.txt {
		width: 100%;
		order: 1;
	}

	main .box-destaque p {
		font-size: 1.4em;
		margin: 15px 0;
	}

	main .box-destaque p br {
		display: none;
	}

	main .box-destaque .aux-img {
		max-width: 100%;
	}

	main .box-destaque .aux-img .img {
		max-width: 100%;
	}

	main .box-destaque .bt-laranja {
		margin-bottom: 30px;
	}

	.page-template-page-diferenciais main .box-destaque p {
		padding-right: 0;
	}

	main .single-destaque .container {
		flex-direction: column-reverse;
	}

	main .single-destaque .col {
		width: 100%;
		padding-top: 60px;
	}

	main .single-destaque .col.txt {
		width: 100%;
		padding-top: 30px;
	}

	main .single-destaque p {
		font-size: 1.4em;
		margin: 20px 0;
	}

	main .holder-produto .container {
		flex-direction: column;
		gap: 16px;
	}

	main .holder-produto .categorias {
		width: 100%;
	}

	main .holder-produto .detalhes {
		width: 100%;
	}

	main .holder-produto .detalhes .infos {
		flex-direction: column;
		align-items: flex-start;
	}

	main .holder-produto .detalhes .infos .aux {
		flex: unset;
		width: 100%;
	}

	main .holder-produto .detalhes .infos .aux .linha {
		font-size: 3em;
	}

	main .holder-produto .detalhes .infos .aux .categoria {
		font-size: 1.4em;
	}

	main .holder-produto .detalhes .imagens {
		gap: 10px;
	}

	main .holder-produto .detalhes .boxes {
		flex-direction: column;
		gap: 0;
	}

	main .holder-produto .detalhes .boxes .box {
		width: 100%;
		padding: 16px;
		margin-bottom: -1px;
	}

	main .holder-produto .detalhes .boxes .box:last-child {
		margin-bottom: 0;
	}

	main .holder-produto .detalhes .boxes .box .icons {
		justify-content: space-between;
		gap: 5px;
	}

	main .holder-produto .detalhes .boxes .box .icons .ico .img {
		width: 32px;
		height: 32px;
		mask-size: 32px;
	}

	main .holder-produto .detalhes .boxes .box .icons .ico .img img {
		width: 32px;
	}

	main .holder-produto .detalhes .boxes .box .icons .ico .txt {
		font-size: 1em;
		position: relative;
		top: unset;
		left: unset;
		transform: none;
		padding: 0;
		background: none;
		color: var(--black);
		filter: none;
		pointer-events: all;
		opacity: 0.7;
		width: 100%;
		text-align: center;
		margin-top: 10px;
	}

	main .holder-produto .detalhes .boxes .box .icons .ico .txt:before {
		display: none;
	}

	main .holder-produto .desktop {
		display: none;
	}

	main .holder-produto .mobile {
		display: block;
		width: 100%;
	}

	main .wide-photo .bottom {
		display: none;
	}

	main .destaque-texto p {
		font-size: 1.6em;
	}

	main .lema .itens {
		border: none;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 16px;
	}

	main .lema .itens .item {
		border: solid 1px var(--gray-lighter);
		padding: 30px 16px;
		width: 100%;
		flex-direction: column;
	}

	main .lema .itens .item .aux-mobile {
		width: 100%;
		justify-content: space-between;
		margin-bottom: 15px;
	}

	main .lema .itens .item .titulo {
		width: auto;
	}

	main .lema .itens .item .txt {
		padding-left: 0;
		flex: unset;
		font-size: 1.8em;
		width: 100%;
	}

	main .cta-carreiras {
		padding-top: 100vw;
	}

	main .cta-carreiras:before {
		display: none;
	}

	main .cta-carreiras .container {
		justify-content: flex-end;
		background: var(--brown);
	}

	main .cta-carreiras:after {
		content: "";
		width: 100%;
		height: 100vw;
		position: absolute;
		left: 0;
		top: 0;
		background: linear-gradient(
			to bottom,
			rgba(110, 99, 91, 0) 0%,
			rgba(110, 99, 91, 1) 80%
		);
		z-index: 2;
	}

	main .cta-carreiras h3 br {
		display: none;
	}

	main .cta-carreiras .bg-img {
		background-size: auto 50%;
		background-position: top center;
	}

	main .cta-sustentabilidade {
		margin-top: 0px;
	}

	main .cta-sustentabilidade .aux-txt {
		width: 100%;
		padding: 50px 0 100px 0;
		overflow: hidden;
	}

	main .cta-sustentabilidade .aux-txt h3 {
		font-size: 3em;
	}

	main .cta-sustentabilidade .aux-txt .bt-laranja {
		margin-top: 20px;
	}

	main .cta-sustentabilidade .bg-img {
		display: none;
	}

	main .cta-sustentabilidade .divisoria {
		background: var(--white);
		width: 50%;
		height: 30px;
		position: absolute;
		right: 0;
		bottom: 0;
		clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
		z-index: 5;
	}

	main .cta-sustentabilidade.vazio .aux-txt {
		padding: 50px 0 100px 0;
	}

	main .cta-sustentabilidade.vazio .aux-txt:before {
		display: block;
	}

	main .destaque-selo .aux-txt {
		width: 100%;
		padding: 50px 0 80px 0;
		overflow: hidden;
	}

	main .destaque-selo .aux-txt h3 {
		font-size: 3em;
	}

	main .destaque-selo .aux-txt .bt-laranja {
		margin-top: 20px;
	}

	main .destaque-selo .bg-img {
		display: none;
	}

	main .destaque-selo .divisoria {
		background: var(--white);
		width: 50%;
		height: 30px;
		position: absolute;
		left: 0;
		bottom: 0;
		clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
		z-index: 5;
	}

	main .accordion .infos p {
		font-size: 1.4em;
	}

	main .accordion .item .titulo a {
		font-size: 2em;
		padding-right: 50px;
		align-items: flex-start;
	}

	main .accordion .item .titulo a .num {
		width: 40px;
		min-width: 40px;
	}

	main .accordion .item .conteudos p {
		width: 100%;
		font-size: 1.4em;
	}

	main .cookies .item .conteudos p {
		font-size: 1.4em;
		width: 100%;
	}

	main .cookies .item .conteudos ul li {
		font-size: 1.4em;
		width: 100%;
	}

	main .info-txt {
		padding: 30px 0;
	}

	main .info-txt p {
		font-size: 1.4em;
		margin-bottom: 20px;
	}

	main .info-txt h3 {
		font-size: 2em;
	}

	main .banner .slider .slide {
		background: var(--brown) !important;
	}

	main .banner .slider .slide .container .infos {
		width: 100%;
	}

	main .banner .slider .slide .container .infos h3 {
		font-size: 3em;
		margin: 15px 0 30px 0;
	}

	main .banner .divisoria {
		height: 30px;
		clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
	}

	main .certificacoes .infos h3 {
		font-size: 2.4em;
	}

	main .certificacoes .infos h3 br {
		display: none;
	}

	main .certificacoes .content .icons {
		display: none;
	}

	main .certificacoes .content .txt {
		width: 100%;
	}

	main .certificacoes .content .txt p {
		font-size: 1.4em;
	}

	main .steps .bar-steps .aux {
		transition: all 0.5s ease;
	}

	main .steps .holder-steps {
		flex-direction: column;
		gap: 30px;
	}

	main .steps .holder-steps .imgs {
		width: 100%;
	}

	main .steps .holder-steps .txts {
		width: 100%;
		position: relative;
		flex: unset;
		height: 200px;
	}

	main .steps .holder-steps .txts .txt h4 {
		font-size: 3em;
	}

	main .steps .holder-steps .txts .txt h5 {
		font-size: 1.6em;
	}

	main .steps .holder-steps .bts {
		display: none;
	}

	main .steps[data-anchor="step-1"] .txts .step-1 {
		opacity: 1;
		top: 0;
		transform: translate(0, 0);
		pointer-events: all;
	}

	main .steps[data-anchor="step-2"] .txts .step-2 {
		opacity: 1;
		top: 0;
		transform: translate(0, 0);
		pointer-events: all;
	}

	main .steps[data-anchor="step-3"] .txts .step-3 {
		opacity: 1;
		top: 0;
		transform: translate(0, 0);
		pointer-events: all;
	}

	main .steps[data-anchor="step-4"] .txts .step-4 {
		opacity: 1;
		top: 0;
		transform: translate(0, 0);
		pointer-events: all;
	}

	main .box-certificados {
		gap: 36px;
	}

	main .box-certificados .certificado .container {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	main .box-certificados .certificado:nth-child(odd) .container {
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	
	main .box-certificados .certificado .container.container-accordion .accordion {
		width: 80%;
		margin: auto;
	}
	main .box-certificados .certificado .container.container-accordion .accordion .item .titulo a {
		font-size: 2em;
	}

	main .share .container {
		gap: 15px;
		align-items: flex-start;
	}

	main .share h4 {
		font-size: 1.6em;
	}

	main .share .bts {
		width: 100%;
		max-width: 556px;
	}

	main .share .bts .bt a .txt {
		display: none;
	}

	main .share .bts .bt.copy a .txt {
		display: none;
	}

	main .steps-contato .aux-topo {
		flex-direction: column;
		gap: 16px;
	}

	main .steps-contato .aux-topo .bar-steps {
		width: calc(100% + 16px);
	}

	main .steps-contato .aux-topo .bar-steps .aux {
		justify-content: flex-start;
	}

	main .steps-contato .aux-topo .bar-steps .step {
		display: none;
	}

	main .steps-contato .aux-topo .bar-steps .step:first-child {
		width: calc(100% - 16px);
		display: flex;
	}

	main .steps-contato .aux-topo .tempo {
		padding-top: 0;
		margin-bottom: 30px;
	}

	main .steps-contato .holder-steps p br {
		display: none;
	}

	main .steps-contato .holder-steps .slider-step .step .bts {
		width: 100%;
	}

	main .steps-contato .holder-steps .slider-step .step .bts .bt a {
		width: 100%;
	}

	main .steps-contato .holder-steps .slider-step .step .formulario .aux-inp {
		flex-direction: column;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.aux-inp
		.inp {
		width: 100%;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.inp
		input[type="text"] {
		width: 100%;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.inp
		select {
		width: 100%;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.aux-inp
		.inp
		select {
		width: 100%;
	}

	main
		.steps-contato
		.holder-steps
		.slider-step
		.step
		.formulario
		.inp.textarea {
		width: 100%;
	}

	main .steps-contato .holder-steps .slider-step .step .formulario .inp.file {
		width: 100%;
	}

	main .steps-contato .holder-steps .slider-step .step .linha {
		width: 100%;
	}

	main .steps-contato .hld-form .sucesso .chamada {
		font-size: 3em;
	}

	main .steps-contato .hld-form .sucesso .texto {
		font-size: 3em;
	}

	main .steps-contato .hld-form .sucesso .texto br {
		display: none;
	}

	/* CUSTOM */

	.single-produto main .num-steps {
		padding-top: 60px;
	}

	.single-produto main .post-grid-solucoes .infos {
		margin-bottom: 30px;
	}

	.single-produto main .novidades {
		margin-bottom: 50px;
	}

	.page-template-page-a-trombini main .box-destaque h3 {
		font-size: 3em;
	}

	.page-template-page-governanca main .box-destaque {
		margin-bottom: 30px;
	}

	.page-template-page-governanca main .box-destaque h3 {
		font-size: 3em;
	}

	.page-template-page-sustentabilidade main .box-destaque {
		padding: 100px 0 60px 0;
	}

	.page-template-page-sustentabilidade main .novidades {
		margin-top: 60px;
	}

	.page-template-page-reciclagem main .box-destaque {
		padding-top: 60px;
	}

	.page-template-page-planeta-e-sociedade main .box-destaque {
		padding-top: 60px;
	}

	.page-template-page-impacto-ambiental main .box-destaque {
		padding: 60px 0;
	}

	.page-template-page-manejo-florestal main .box-destaque {
		padding: 60px 0;
	}

	.page-template-page-manejo-florestal main .cta-sustentabilidade {
		margin-top: 60px;
	}

	.modal-video .holder {
		max-width: 90%;
	}

	.modal-video .bt-fechar {
		right: 0;
	}

	/* FOOTER */

	footer {
		margin-top: 40px;
	}

	footer .container {
		flex-direction: column;
	}

	footer .news {
		padding: 20px 0 30px 0;
	}

	footer .news .logo {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	footer .news .logo svg {
		width: 143px;
	}

	footer .news .aux {
		flex-direction: column;
		width: 100%;
	}

	footer .news .newsletter .chamada {
		font-size: 1.6em;
	}

	footer .news .newsletter .chamada br {
		display: none;
	}

	footer .news .newsletter form {
		width: 100%;
	}

	footer .news .newsletter form input[type="text"] {
		width: 100%;
	}

	footer .news .social {
		margin-top: 30px;
	}

	footer .news .social .redes a {
		width: 45px;
		height: 45px;
	}

	footer .news .social .redes a .ico {
		mask-size: 20px;
		width: 45px;
		height: 45px;
	}

	footer .menu {
		padding: 30px 0 20px 0;
	}

	footer .menu .telefones {
		width: 100%;
	}

	footer .menu .telefones .chamada {
		font-size: 1.6em;
	}

	footer .menu .telefones .chamada br {
		display: none;
	}

	footer .menu .aux {
		flex-direction: column;
		width: 100%;
		padding-bottom: 30px;
	}

	footer .menu .links {
		width: 100%;
	}

	footer .menu .links .chamada {
		margin-top: 15px;
		margin-bottom: 0;
	}
}

@media (max-width: 767.98px) {
	/* XS */

	main .topo-default {
		background-size: auto 70%;
	}

	main .post-grid .hld-grid .item.local {
		width: calc(50% - 16px);
		margin-bottom: 30px;
	}

	main .post-grid .hld-grid .item.institucional {
		width: 100%;
		margin-bottom: 0;
	}

	main .topo-sustentabilidade {
		background-size: auto 60%;
	}

	main .canais .blocos .bloco a {
		aspect-ratio: 300/373;
	}

	main .box-certificados .certificado .txt h3 {
		font-size: 3em;
	}
}

@media (max-width: 575.98px) {
	/* XXS */

	main .post-grid .hld-grid .item.produto {
		width: 100%;
	}

	main .post-grid .hld-grid .item.local {
		width: 100%;
	}

	main .topo-home .bottom .box {
		right: -30px;
		bottom: clamp(340px, 55vh, 55vh);
		width: 80%;
	}

	main .steps .bar-steps {
		width: calc(100% + 32px);
		margin: 0 -16px;
		overflow: hidden;
		height: 70px;
		justify-content: flex-start;
	}

	main .steps .bar-steps .aux {
		justify-content: flex-start;
	}

	main .steps .bar-steps .bar {
		left: 16px;
	}

	main .steps .bar-steps .step {
		min-width: 180px;
		margin-bottom: 60px;
	}

	main .steps[data-anchor="step-1"] .bar-steps .aux {
		transform: translateX(0px);
	}

	main .steps[data-anchor="step-1"] .bar-steps .bar .sel {
		width: 12%;
	}

	main .steps[data-anchor="step-2"] .bar-steps .aux {
		transform: translateX(-90px);
	}

	main .steps[data-anchor="step-2"] .bar-steps .bar .sel {
		width: 35%;
	}

	main .steps[data-anchor="step-3"] .bar-steps .aux {
		transform: translateX(-180px);
	}

	main .steps[data-anchor="step-3"] .bar-steps .bar .sel {
		width: 60%;
	}

	main .steps[data-anchor="step-4"] .bar-steps .aux {
		transform: translateX(-270px);
	}

	main .steps[data-anchor="step-4"] .bar-steps .bar .sel {
		width: 80%;
	}
}

.page-template-page-solucoes .infos h1 {
	font-size: 1.4em;
	font-weight: 600;
	letter-spacing: 9px;
	text-transform: uppercase;
	color: var(--orange);
	margin: 0;
}
.page-template-page-solucoes .infos h2 {
	font-size: 5.4em;
	font-weight: 400;
	line-height: 1;
	margin: 0;
	letter-spacing: initial;
	text-transform: initial;
	color: var(--black);
}
.page-template-page-solucoes .infos h2 strong {
	font-weight: 700;
}
