@font-face {
	font-family: Fraunces;
	font-style: normal;
	font-weight: 300 900;
	font-display: swap;
	src: url('../fonts/fraunces-latin.woff2') format('woff2');
}

@font-face {
	font-family: Archivo;
	font-style: normal;
	font-weight: 400 900;
	font-display: swap;
	src: url('../fonts/archivo-latin.woff2') format('woff2');
}

:root {
	--color-green-dark: #003f24;
	--color-green: #007b35;
	--color-green-bright: #00a63d;
	--color-red: #e5192d;
	--color-gold: #e8b54a;
	--color-ink: #172019;
	--color-muted: #617066;
	--color-surface: #ffffff;
	--container: 1280px;
	--space-page: clamp(1rem, 3vw, 2rem);
	--shadow-soft: 0 18px 45px rgb(0 58 30 / 14%);
	--font-base: 'Archivo', Arial, Helvetica, sans-serif;
	--font-display: 'Fraunces', Georgia, serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-ink);
	background: var(--color-surface);
	font-family: var(--font-base);
	line-height: 1.5;
	font-feature-settings: 'ss01' 1, 'cv05' 1;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
}

body.menu-is-open,
body.dialog-is-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

[hidden] {
	display: none !important;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.container {
	width: min(100% - (2 * var(--space-page)), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	inset: 0 auto auto 0;
	z-index: 9999;
	padding: 0.75rem 1rem;
	color: #000;
	background: #fff;
	transform: translateY(-120%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: relative;
	z-index: 100;
	color: #fff;
	background: linear-gradient(90deg, #00381f, #005a2c 65%, #00381f);
	box-shadow: 0 8px 28px rgb(0 40 20 / 18%);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(110px, 170px) 1fr;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 3rem);
	min-height: 82px;
}

.site-branding {
	position: relative;
	z-index: 2;
}

.site-branding .custom-logo-link,
.site-branding__logo {
	display: inline-flex;
	align-items: center;
}

.site-branding .custom-logo,
.site-branding__logo img {
	width: auto;
	max-width: 138px;
	max-height: 58px;
	object-fit: contain;
}

.site-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(1rem, 2vw, 2rem);
}

.site-nav__list,
.social-nav__list {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list {
	gap: clamp(0.9rem, 1.7vw, 1.6rem);
}

.site-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.site-nav a::after {
	position: absolute;
	inset: auto 50% 3px;
	width: 0;
	height: 2px;
	content: '';
	background: var(--color-gold);
	transition: width 180ms ease, inset 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .current-menu-item > a::after {
	inset-inline: 0;
	width: 100%;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.social-nav__list {
	gap: 0.45rem;
}

.social-nav a {
	--social-color: var(--color-gold);
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	overflow: hidden;
	font-size: 0;
	border: 1px solid rgb(255 255 255 / 35%);
	border-radius: 50%;
	background: rgb(255 255 255 / 10%);
	transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.social-nav a:hover,
.social-nav a:focus-visible {
	color: #fff;
	border-color: var(--social-color);
	background: var(--social-color);
	box-shadow: 0 5px 16px color-mix(in srgb, var(--social-color) 48%, transparent);
	transform: translateY(-2px);
}

.social-nav__link--instagram { --social-color: #e1306c; }
.social-nav__link--tiktok { --social-color: #111; }
.social-nav__link--youtube { --social-color: #f00; }
.social-nav__link--twitter { --social-color: #111; }
.social-nav__link--facebook { --social-color: #1877f2; }
.social-nav__link--linkedin { --social-color: #0a66c2; }
.social-nav__link--website { --social-color: #d6a72b; }

.social-nav__link--tiktok:hover,
.social-nav__link--tiktok:focus-visible {
	box-shadow: -3px 3px 0 #25f4ee, 3px -3px 0 #fe2c55;
}

.social-nav a::before {
	display: none;
}

.social-nav svg,
.site-footer__social svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.social-nav svg .is-filled,
.site-footer__social svg .is-filled {
	fill: currentColor;
	stroke: none;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.75rem 1.25rem;
	font-weight: 800;
	line-height: 1;
	border-radius: 0.55rem;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button--header {
	gap: 0.5rem;
	color: #fff;
	background: var(--color-red);
	box-shadow: 0 10px 24px rgb(229 25 45 / 28%);
	font-size: 0.8rem;
	text-transform: uppercase;
}

.button--header:hover,
.button--header:focus-visible {
	background: #c80f22;
	box-shadow: 0 12px 30px rgb(229 25 45 / 38%);
}

.button--header span {
	font-size: 1rem;
	transition: transform 160ms ease;
}

.button--header:hover span,
.button--header:focus-visible span {
	transform: translateX(3px);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-width: 46px;
	min-height: 46px;
	padding: 0.5rem;
	color: #fff;
	border: 1px solid rgb(255 255 255 / 28%);
	border-radius: 0.55rem;
	background: rgb(255 255 255 / 8%);
}

.menu-toggle__label {
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.menu-toggle__icon {
	display: grid;
	gap: 4px;
}

.menu-toggle__icon span {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__icon span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__icon span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.site-main {
	min-height: 60vh;
}

.home-hero {
	position: relative;
	isolation: isolate;
	width: 100%;
	overflow: hidden;
	background: #00ba25;
}

.home-hero__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 1;
	object-fit: cover;
}

.home-hero__picture {
	display: block;
	width: 100%;
}

.home-hero__slides,
.home-hero__slide {
	width: 100%;
}

.home-hero--slideshow .home-hero__slides {
	position: relative;
	aspect-ratio: 3 / 1;
}

.home-hero--slideshow .home-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1000ms ease-in-out, visibility 1000ms ease-in-out;
}

.home-hero--slideshow .home-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.home-hero__arrow,
.home-hero__dots {
	position: absolute;
	z-index: 2;
}

.home-hero__arrow {
	top: 50%;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	background: rgb(0 67 38 / 72%);
	border: 0;
	border-radius: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.home-hero__arrow--previous { left: clamp(.75rem, 2vw, 2rem); }
.home-hero__arrow--next { right: clamp(.75rem, 2vw, 2rem); }

.home-hero__dots {
	bottom: clamp(.75rem, 2vw, 1.5rem);
	left: 50%;
	display: flex;
	gap: .5rem;
	transform: translateX(-50%);
}

.home-hero__dots button {
	width: .75rem;
	height: .75rem;
	padding: 0;
	background: rgb(255 255 255 / 62%);
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}

.home-hero__dots button[aria-current="true"] {
	background: #008f4e;
}

@media (max-width: 767px) {
	.home-hero__image,
	.home-hero--slideshow .home-hero__slides {
		aspect-ratio: 4 / 5;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero--slideshow .home-hero__slide {
		transition: none;
	}
}

.quick-links {
	position: relative;
	z-index: 10;
	margin-top: -36px;
	padding-bottom: 1.5rem;
}

.quick-links__panel {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0.75rem 1rem;
	background: rgb(255 255 255 / 97%);
	border: 1px solid rgb(0 93 47 / 10%);
	border-radius: 1.6rem;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(10px);
}

.quick-link {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
	padding: 0.75rem 1rem;
	border-right: 1px solid #e4e9e5;
	transition: color 160ms ease, transform 160ms ease;
}

.quick-link:last-child {
	border-right: 0;
}

.quick-link:hover,
.quick-link:focus-visible {
	color: var(--color-green);
	transform: translateY(-2px);
}

.quick-link__icon {
	flex: 0 0 auto;
	color: #52b934;
}

.quick-link__icon svg {
	width: 34px;
	height: 34px;
	fill: currentColor;
}

.quick-link__copy {
	display: grid;
	min-width: 0;
}

.quick-link strong,
.quick-link small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.quick-link strong {
	font-size: 0.76rem;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.quick-link small {
	color: var(--color-muted);
	font-size: 0.7rem;
}

.history-section {
	position: relative;
	scroll-margin-top: 5rem;
	padding-block: clamp(2.5rem, 4.5vw, 4.25rem);
	overflow: hidden;
	background:
		linear-gradient(rgb(255 253 247 / 94%), rgb(255 253 247 / 94%)),
		radial-gradient(circle at 20% 20%, rgb(232 181 74 / 18%), transparent 32%);
	border-block: 1px solid rgb(0 63 36 / 14%);
}

.history-section::before,
.history-section::after {
	position: absolute;
	inset-inline: var(--space-page);
	height: 1px;
	content: '';
	background: linear-gradient(90deg, transparent, rgb(0 63 36 / 56%) 12%, rgb(0 63 36 / 56%) 88%, transparent);
}

.history-section::before {
	top: 1.25rem;
}

.history-section::after {
	bottom: 1.25rem;
}

.history-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	align-items: center;
	gap: clamp(2.5rem, 5vw, 5rem);
}

.history-section__copy {
	max-width: 32rem;
}

.history-section__eyebrow {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1.25rem;
	color: #ad7e20;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.history-section__eyebrow::before,
.history-section__eyebrow::after {
	width: 2.5rem;
	height: 1px;
	content: '';
	background: currentColor;
}

.history-section__title {
	max-width: 11ch;
	margin: 0;
	color: var(--color-green-dark);
	font-size: clamp(2.5rem, 4.4vw, 4.75rem);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.96;
	text-transform: uppercase;
}

.history-section__divider {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	width: min(100%, 20rem);
	margin-block: 1.5rem;
	color: var(--color-gold);
}

.history-section__divider::before,
.history-section__divider::after {
	flex: 1;
	height: 1px;
	content: '';
	background: currentColor;
}

.history-section__divider span {
	width: 0.55rem;
	height: 0.55rem;
	background: currentColor;
	transform: rotate(45deg);
}

.history-section__description {
	margin: 0;
	color: #28362d;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.75;
}

.history-section__actions {
	display: grid;
	justify-items: start;
	gap: 1rem;
	margin-top: 2rem;
}

.history-section__button {
	color: #fff;
	background: var(--color-red);
	box-shadow: 0 12px 28px rgb(229 25 45 / 24%);
	text-transform: uppercase;
}

.history-section__button:hover,
.history-section__button:focus-visible {
	background: #c80f22;
}

.history-section__archive {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 44px;
	padding: 0;
	color: var(--color-green-dark);
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	cursor: pointer;
}

.history-section__archive svg {
	width: 1.6rem;
	height: 1.6rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.history-section__archive::after {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	content: '→';
	transition: transform 160ms ease;
}

.history-section__archive:hover::after,
.history-section__archive:focus-visible::after {
	transform: translateX(0.3rem);
}

.history-mosaic {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem;
}

.history-mosaic__item {
	position: relative;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: #dedbd3;
	border-radius: 0.8rem;
	box-shadow: 0 12px 30px rgb(0 45 24 / 13%);
}

.history-mosaic__item--main {
	grid-column: 1 / -1;
}

.history-mosaic__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: transform 400ms ease, filter 240ms ease;
}

.history-mosaic__item:hover img {
	filter: grayscale(1) contrast(1.04);
	transform: scale(1.015);
}

.history-mosaic__badge {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 40px;
	padding: 0.55rem 0.8rem;
	color: var(--color-green-dark);
	border: 1px solid rgb(0 63 36 / 18%);
	border-radius: 0.65rem;
	background: #f4d88f;
	box-shadow: 0 8px 20px rgb(0 40 20 / 18%);
	font: inherit;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
}

.history-mosaic__badge svg {
	width: 1.15rem;
	height: 1.15rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.history-gallery-dialog {
	width: min(1120px, calc(100% - 2rem));
	max-height: calc(100dvh - 2rem);
	padding: 0;
	overflow: hidden;
	color: var(--color-ink);
	border: 0;
	border-radius: 1.25rem;
	background: #fffdf7;
	box-shadow: 0 30px 90px rgb(0 30 15 / 40%);
}

.history-gallery-dialog::backdrop {
	background: rgb(0 35 20 / 78%);
	backdrop-filter: blur(5px);
}

.history-gallery-dialog__inner {
	max-height: calc(100dvh - 2rem);
	padding: clamp(1.25rem, 3vw, 2.5rem);
	overflow: auto;
}

.history-gallery-dialog__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.history-gallery-dialog__title {
	margin: 0;
	color: var(--color-green-dark);
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1;
	text-transform: uppercase;
}

.history-gallery-dialog__close {
	display: grid;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	place-items: center;
	color: var(--color-green-dark);
	border: 1px solid rgb(0 63 36 / 18%);
	border-radius: 50%;
	background: #fff;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.history-gallery-dialog__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.history-gallery-dialog__item {
	margin: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgb(0 63 36 / 10%);
	border-radius: 0.85rem;
	box-shadow: 0 10px 26px rgb(0 45 24 / 9%);
}

.history-gallery-dialog__item img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	filter: grayscale(1);
}

.history-gallery-dialog__item figcaption {
	display: grid;
	gap: 0.2rem;
	padding: 0.85rem 1rem 1rem;
}

.history-gallery-dialog__period {
	color: #9c7220;
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.history-gallery-dialog__caption {
	color: #324038;
	font-size: 0.88rem;
}

/* Catálogo comercial da Home */
.product-showcase {
	position: relative;
	scroll-margin-top: 5rem;
	padding-block: clamp(4.5rem, 8vw, 7.5rem);
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 20%, rgb(0 166 61 / 10%), transparent 28rem),
		linear-gradient(180deg, #f4faf5 0%, #fff 42%, #f7faf7 100%);
}

.product-showcase::before {
	position: absolute;
	inset: 0 0 auto;
	height: 7px;
	content: '';
	background: linear-gradient(90deg, var(--color-green-dark), var(--color-green-bright) 55%, var(--color-gold));
}

.product-showcase__inner {
	display: grid;
	gap: 2rem;
}

.product-showcase__header {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.7fr);
	align-items: end;
	gap: 2rem;
}

.product-showcase__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--color-green);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.product-showcase__header h2,
.product-showcase__empty h2 {
	max-width: 14ch;
	margin: 0;
	color: var(--color-green-dark);
	font-size: clamp(2.3rem, 5vw, 4.75rem);
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.product-showcase__header > p {
	max-width: 32rem;
	margin: 0 0 0.35rem;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.product-showcase__categories,
.product-showcase__lines {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	overflow-x: auto;
	scrollbar-width: thin;
}

.product-showcase__categories {
	padding: 0.45rem;
	background: var(--color-green-dark);
	border-radius: 1rem;
	box-shadow: 0 16px 38px rgb(0 63 36 / 16%);
}

.product-showcase__category,
.product-showcase__line {
	flex: 0 0 auto;
	cursor: pointer;
	font: inherit;
	font-weight: 850;
	white-space: nowrap;
	transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.product-showcase__category {
	min-height: 48px;
	padding: 0.65rem clamp(1rem, 3vw, 2.2rem);
	color: rgb(255 255 255 / 74%);
	border: 0;
	border-radius: 0.7rem;
	background: transparent;
	text-transform: uppercase;
}

.product-showcase__category:hover,
.product-showcase__category:focus-visible,
.product-showcase__category.is-active {
	color: var(--color-green-dark);
	background: #fff;
}

.product-showcase__lines {
	padding-bottom: 0.35rem;
}

.product-showcase__line {
	min-height: 40px;
	padding: 0.5rem 1rem;
	color: var(--color-green-dark);
	border: 1px solid rgb(0 63 36 / 18%);
	border-radius: 999px;
	background: #fff;
}

.product-showcase__line:hover,
.product-showcase__line:focus-visible,
.product-showcase__line.is-active {
	color: #fff;
	background: var(--color-green);
	border-color: var(--color-green);
	transform: translateY(-1px);
}

.product-showcase__carousel {
	position: relative;
}

.product-showcase__grid {
	--products-per-view: 3;
	display: grid;
	grid-auto-columns: calc((100% - 2rem) / 3);
	grid-auto-flow: column;
	grid-template-rows: 1fr;
	gap: 1rem;
	padding: 0.5rem 0.15rem 1.75rem;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-width: none;
}

.product-showcase__grid::-webkit-scrollbar {
	display: none;
}

.product-card {
	position: relative;
	display: grid;
	grid-template-rows: clamp(300px, 28vw, 360px) minmax(8.5rem, 1fr) auto;
	min-width: 0;
	overflow: hidden;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid rgb(0 63 36 / 12%);
	border-radius: 1.4rem;
	box-shadow: 0 16px 38px rgb(0 63 36 / 8%);
}

.product-showcase__carousel-button {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	width: 52px;
	height: 52px;
	padding: 0;
	color: #fff;
	background: var(--color-green-dark);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 12px 28px rgb(0 63 36 / 24%);
	place-items: center;
	transform: translateY(-50%);
	transition: color 160ms ease, background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.product-showcase__carousel-button span {
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1;
}

.product-showcase__carousel-button--previous {
	left: -1.6rem;
}

.product-showcase__carousel-button--next {
	right: -1.6rem;
}

.product-showcase__carousel-button:hover:not(:disabled),
.product-showcase__carousel-button:focus-visible:not(:disabled) {
	color: var(--color-green-dark);
	background: var(--color-gold);
	transform: translateY(-50%) scale(1.06);
}

.product-showcase__carousel-button:disabled {
	cursor: default;
	opacity: 0.28;
}

.product-card__image {
	position: relative;
	display: block;
	min-height: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 52%, rgb(255 255 255 / 92%) 0 28%, rgb(222 242 224 / 72%) 48%, transparent 70%),
		linear-gradient(145deg, #f5faf5, #e6f2e8);
}

.product-card__image img {
	position: absolute;
	inset: clamp(1.2rem, 2.5vw, 2rem);
	width: calc(100% - 2 * clamp(1.2rem, 2.5vw, 2rem));
	height: calc(100% - 2 * clamp(1.2rem, 2.5vw, 2rem));
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 22px 20px rgb(0 45 20 / 22%));
	transition: transform 220ms ease;
}

.product-card__image:hover img,
.product-card__image:focus-visible img {
	transform: scale(1.025);
}

.product-card__image-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

.product-card__image-placeholder svg {
	width: auto;
	height: min(75%, 290px);
	fill: rgb(0 123 53 / 22%);
}

.product-card__content {
	padding: 1.25rem 1.3rem 0.8rem;
}

.product-card__line,
.product-card__volume {
	margin: 0;
}

.product-card__line {
	color: var(--color-green);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-card h3 {
	min-height: 2.25em;
	margin: 0.25rem 0 0.4rem;
	color: var(--color-green-dark);
	font-size: clamp(1.2rem, 1.6vw, 1.4rem);
	line-height: 1.12;
}

.product-card__volume {
	color: var(--color-muted);
	font-size: 0.88rem;
	font-weight: 750;
}

.product-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	padding: 0 1.3rem 1.3rem;
}

.product-card__link {
	color: var(--color-green-dark);
	font-size: 0.72rem;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.product-card__download {
	flex: 0 0 auto;
	padding: 0.55rem 0.8rem;
	color: #fff;
	background: var(--color-red);
	border-radius: 0.55rem;
	font-size: 0.72rem;
	font-weight: 900;
}

.product-card__download:hover,
.product-card__download:focus-visible {
	background: #bd1021;
}

.product-showcase__primary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.65rem 1rem;
	font-size: 0.75rem;
	font-weight: 900;
	border: 1px solid rgb(255 255 255 / 42%);
	border-radius: 0.6rem;
	text-transform: uppercase;
}

.product-showcase--empty {
	text-align: center;
}

.product-showcase__empty {
	display: grid;
	justify-items: center;
	gap: 1rem;
	max-width: 58rem;
	padding: clamp(2rem, 5vw, 4rem);
	background: #fff;
	border: 2px dashed rgb(0 123 53 / 24%);
	border-radius: 1.5rem;
}

.product-showcase__empty h2 {
	max-width: 18ch;
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.product-showcase__empty > p:not(.product-showcase__eyebrow) {
	max-width: 42rem;
	margin: 0;
	color: var(--color-muted);
}

.product-showcase__primary-action {
	color: #fff;
	background: var(--color-green);
	border-color: var(--color-green);
}

.site-footer {
	position: relative;
	padding-top: clamp(3.5rem, 7vw, 6rem);
	color: #fff;
	background:
		radial-gradient(circle at 82% 12%, rgb(0 166 61 / 22%), transparent 28rem),
		linear-gradient(135deg, #002f1b, var(--color-green-dark));
}

.site-footer::before {
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	content: '';
	background: linear-gradient(90deg, var(--color-gold), var(--color-green-bright) 55%, var(--color-red));
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(13rem, 0.8fr) minmax(12rem, 0.65fr) minmax(20rem, 1.25fr);
	gap: clamp(2.5rem, 6vw, 6rem);
}

.site-footer__brand,
.site-footer__commercial {
	display: grid;
	align-content: start;
}

.site-footer__logo {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 1.25rem;
}

.site-footer__logo img {
	width: auto;
	max-width: 132px;
	max-height: 78px;
	object-fit: contain;
}

.site-footer__brand p {
	max-width: 28rem;
	margin: 0;
	color: rgb(255 255 255 / 68%);
	font-size: 0.92rem;
}

.site-footer__social {
	margin-top: 1.25rem;
}

.site-footer__social-list {
	display: flex;
	gap: 0.55rem;
}

.site-footer__social a {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	color: rgb(255 255 255 / 82%);
	background: rgb(255 255 255 / 8%);
	border: 1px solid rgb(255 255 255 / 24%);
	border-radius: 50%;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
	color: var(--color-green-dark);
	background: var(--color-gold);
	border-color: var(--color-gold);
	transform: translateY(-2px);
}

.site-footer__eyebrow {
	margin: 0 0 1rem;
	color: var(--color-gold);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu {
	display: grid;
	gap: 0.55rem;
}

.site-footer__menu a {
	display: inline-flex;
	padding-block: 0.2rem;
	color: rgb(255 255 255 / 78%);
	font-size: 0.86rem;
	font-weight: 700;
	transition: color 160ms ease, transform 160ms ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
	color: #fff;
	transform: translateX(3px);
}

.site-footer__commercial h2 {
	max-width: 14ch;
	margin: 0 0 1.4rem;
	font-size: clamp(1.75rem, 3vw, 2.8rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.site-footer__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.site-footer__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.65rem 1rem;
	font-size: 0.72rem;
	font-weight: 900;
	border: 1px solid rgb(255 255 255 / 34%);
	border-radius: 0.6rem;
	text-transform: uppercase;
	transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-footer__actions a:first-child {
	color: var(--color-green-dark);
	background: #fff;
	border-color: #fff;
}

.site-footer__actions a:hover,
.site-footer__actions a:focus-visible {
	color: var(--color-green-dark);
	background: var(--color-gold);
	border-color: var(--color-gold);
	transform: translateY(-2px);
}

.site-footer__rule {
	height: 1px;
	margin-top: clamp(3rem, 6vw, 5rem);
	background: rgb(255 255 255 / 13%);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 78px;
	color: rgb(255 255 255 / 60%);
	font-size: 0.75rem;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.home-instagram {
	padding-block: clamp(4rem, 7vw, 6.5rem);
	background: #fff;
}

.home-instagram__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.home-instagram__eyebrow {
	margin: 0 0 .65rem;
	color: var(--color-red);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.home-instagram__header h2 {
	max-width: 14ch;
	margin: 0;
	color: var(--color-green-dark);
	font-size: clamp(2.2rem, 4.5vw, 4.25rem);
	line-height: .98;
	letter-spacing: -.04em;
}

.home-instagram__profile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .65rem;
	min-height: 46px;
	padding: .75rem 1.1rem;
	color: #fff;
	background: var(--color-green);
	border-radius: .65rem;
	font-size: .78rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.home-instagram__profile:hover,
.home-instagram__profile:focus-visible {
	background: var(--color-green-dark);
	box-shadow: 0 12px 24px rgb(0 63 36 / 16%);
	transform: translateY(-2px);
}

.home-instagram__profile svg {
	width: 1.2rem;
	height: 1.2rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.home-instagram__feed #sb_instagram {
	padding-bottom: 0 !important;
}

.home-instagram__feed #sbi_load {
	padding-top: 1.25rem !important;
}

.home-instagram__setup {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 1.5rem;
	color: var(--color-green-dark);
	background: #f3f8f4;
	border: 1px dashed rgb(0 97 48 / 28%);
	border-radius: 1rem;
}

.home-instagram__setup > svg {
	width: 2.5rem;
	height: 2.5rem;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.home-instagram__setup p {
	margin: .35rem 0 0;
	color: var(--color-muted);
}

@media (max-width: 640px) {
	.home-instagram__header {
		align-items: stretch;
		flex-direction: column;
	}

	.home-instagram__profile {
		width: 100%;
	}
}

@media (max-width: 1120px) {
	.site-header__inner {
		grid-template-columns: minmax(105px, 145px) 1fr;
	}

	.site-navigation {
		gap: 1rem;
	}

	.social-nav {
		display: none;
	}

	.site-nav__list {
		gap: 0.8rem;
	}

	.button--header {
		padding-inline: 0.9rem;
	}

}

@media (max-width: 900px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 72px;
	}

	.site-branding .custom-logo,
	.site-branding__logo img {
		max-width: 118px;
		max-height: 52px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-navigation {
		position: fixed;
		inset: 72px 0 auto;
		display: grid;
		align-content: start;
		gap: 1.5rem;
		max-height: calc(100dvh - 72px);
		padding: 1.25rem var(--space-page) 1.75rem;
		overflow: auto;
		visibility: hidden;
		background: var(--color-green-dark);
		box-shadow: 0 20px 45px rgb(0 30 15 / 35%);
		opacity: 0;
		transform: translateY(-12px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.site-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.site-nav__list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.site-nav a {
		width: 100%;
		min-height: 50px;
		border-bottom: 1px solid rgb(255 255 255 / 12%);
	}

	.site-nav a::after {
		display: none;
	}

	.site-header__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.social-nav {
		display: block;
	}

	.button--header {
		width: 100%;
	}

	.quick-links {
		margin-top: -20px;
	}

	.quick-links__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-radius: 1.2rem;
	}

	.quick-link:nth-child(2) {
		border-right: 0;
	}

	.quick-link:nth-child(-n + 2) {
		border-bottom: 1px solid #e4e9e5;
	}

	.product-showcase__header {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.product-showcase__grid {
		--products-per-view: 2;
		grid-auto-columns: calc((100% - 1rem) / 2);
	}

	.product-showcase__conversion {
		align-items: flex-start;
		flex-direction: column;
	}

	.product-showcase__conversion-actions {
		justify-content: flex-start;
	}

	.site-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__commercial {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.menu-toggle__label {
		display: none;
	}

	.quick-links {
		margin-top: 0;
		padding-block: 0.75rem;
	}

	.quick-links__panel {
		grid-template-columns: 1fr;
		padding: 0.35rem 0.75rem;
		border-radius: 1rem;
	}

	.quick-link,
	.quick-link:nth-child(2),
	.quick-link:last-child {
		border-right: 0;
		border-bottom: 1px solid #e4e9e5;
	}

	.quick-link:last-child {
		border-bottom: 0;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.site-footer__commercial {
		grid-column: auto;
	}

	.site-footer__actions {
		display: grid;
	}

	.site-footer__actions a {
		width: 100%;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 1.5rem;
	}

	.product-showcase {
		padding-block: 3.75rem;
	}

	.product-showcase__header h2 {
		font-size: clamp(2.4rem, 13vw, 3.5rem);
	}

	.product-showcase__categories {
		margin-inline: calc(-1 * var(--space-page));
		padding-inline: var(--space-page);
		border-radius: 0;
	}

	.product-card {
		grid-column: auto;
		grid-row: auto;
		grid-template-columns: 1fr;
		grid-template-rows: 360px minmax(8rem, auto) auto;
		min-height: 0;
	}

	.product-showcase__grid {
		--products-per-view: 1;
		grid-auto-columns: 100%;
	}

	.product-showcase__carousel-button {
		top: 180px;
		width: 44px;
		height: 44px;
	}

	.product-showcase__carousel-button--previous {
		left: 0.4rem;
	}

	.product-showcase__carousel-button--next {
		right: 0.4rem;
	}

	.product-showcase__conversion-actions {
		display: grid;
		width: 100%;
	}

	.product-showcase__conversion-actions a {
		width: 100%;
	}
}

@media (max-width: 900px) {
	.history-section__inner {
		grid-template-columns: 1fr;
	}

	.history-section__copy {
		max-width: 44rem;
	}

	.history-section__title {
		max-width: 15ch;
	}
}

@media (max-width: 560px) {
	.history-section {
		padding-block: 2.5rem;
	}

	.history-section__eyebrow::after {
		display: none;
	}

	.history-section__title {
		font-size: clamp(2.35rem, 12vw, 3.35rem);
	}

	.history-section__button {
		width: 100%;
	}

	.history-mosaic {
		display: flex;
		margin-inline: calc(-1 * var(--space-page));
		padding-inline: var(--space-page);
		padding-bottom: 0.75rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: thin;
	}

	.history-mosaic__item {
		flex: 0 0 86%;
		scroll-snap-align: center;
	}

	.history-gallery-dialog__grid {
		grid-template-columns: 1fr;
	}
}

@media print {
	.skip-link,
	.menu-toggle,
	.site-header__actions,
	.history-section__archive,
	.history-mosaic__badge {
		display: none !important;
	}

	.site-header {
		position: static;
		box-shadow: none;
	}

	.history-section,
	.product-showcase,
	.product-card,
	.product-showcase__conversion {
		break-inside: avoid;
	}

	.product-card[hidden],
	.product-showcase__line[hidden] {
		display: none !important;
	}

	.site-footer {
		background: #003f24 !important;
		print-color-adjust: exact;
	}
}

.internal-page-intro {
	padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(2.5rem, 5vw, 4.5rem);
	background: linear-gradient(145deg, #f9fbf8 0%, #edf5ee 100%);
}

.internal-page-intro h1,
.contact-page h1 {
	max-width: 14ch;
	margin: 0.55rem 0 1rem;
	color: var(--color-green-dark);
	font-size: clamp(2.6rem, 6vw, 5.4rem);
	line-height: 0.96;
}

.internal-page-intro p:not(.section-eyebrow),
.contact-page__intro > p:last-child {
	max-width: 44rem;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.7;
}

.about-history-section {
	scroll-margin-top: 0;
}

.about-history-section .history-section__title {
	max-width: 13ch;
	font-size: clamp(2.35rem, 3.8vw, 4.15rem);
	text-transform: none;
}

.about-history-section__text {
	display: grid;
	gap: 1rem;
}

.about-history-section__text p {
	margin: 0;
	color: #28362d;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.75;
}

.about-video-section {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background: #f7faf7;
}

.about-video-section__grid {
	display: grid;
	grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.about-video-section__copy h2 {
	max-width: 12ch;
	margin: .55rem 0 1rem;
	color: var(--color-green-dark);
	font-size: clamp(1.85rem, 3.8vw, 3.45rem);
	line-height: .98;
}

.about-video-section__copy p:last-child {
	max-width: 34rem;
	margin: 0;
	color: var(--color-muted);
	line-height: 1.72;
}

.about-video-section__media {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #dfeae2;
	border: 1px solid rgb(0 97 48 / 14%);
	border-radius: 1.2rem;
	box-shadow: 0 26px 58px rgb(0 63 36 / 14%);
}

.about-video-section__media video,
.about-video-section__media iframe,
.about-video-section__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.about-video-section__placeholder {
	display: grid;
	place-items: center;
	padding: 2rem;
	text-align: center;
}

.about-video-section__placeholder p {
	margin: 0 0 .5rem;
	color: var(--color-green-dark);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 900;
}

.about-video-section__placeholder span {
	max-width: 24rem;
	color: var(--color-muted);
	line-height: 1.55;
}

.about-pillars {
	padding: clamp(4rem, 8vw, 7rem) 0;
	background: #fff;
}

.about-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.about-pillars article {
	padding: clamp(1.4rem, 3vw, 2.2rem);
	background: #f7faf7;
	border: 1px solid rgb(0 97 48 / 12%);
	border-radius: 1.1rem;
}

.about-pillars span {
	color: var(--color-red);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .12em;
}

.about-pillars h2 {
	margin: .9rem 0 .7rem;
	color: var(--color-green-dark);
	font-size: clamp(1.35rem, 2.5vw, 2rem);
	line-height: 1.05;
}

.about-pillars p {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.65;
}

.about-signature {
	padding: 0 0 clamp(3.5rem, 7vw, 6rem);
	background: #fff;
}

.about-signature__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: center;
	padding: clamp(1.5rem, 3vw, 2.25rem) 0;
	border-top: 1px solid rgb(0 63 36 / 18%);
	border-bottom: 1px solid rgb(0 63 36 / 18%);
}

.about-signature h2 {
	max-width: 18ch;
	margin: 0;
	color: var(--color-green-dark);
	font-size: clamp(1.8rem, 3.3vw, 3.1rem);
	line-height: 1;
}

.about-signature__seal {
	display: grid;
	width: clamp(7.4rem, 12vw, 9.6rem);
	aspect-ratio: 1;
	place-items: center;
	align-content: center;
	text-align: center;
	color: var(--color-green-dark);
	border: 2px solid var(--color-red);
	border-radius: 50%;
	background: #fffdf7;
	box-shadow: 0 16px 36px rgb(0 63 36 / 10%);
}

.about-signature__seal strong {
	display: block;
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 900;
	line-height: .8;
}

.about-signature__seal span {
	max-width: 7ch;
	color: var(--color-red);
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1.15;
	text-transform: uppercase;
}

.about-signature__seal-image {
	display: block;
	width: clamp(7.4rem, 12vw, 9.6rem);
	height: auto;
	justify-self: center;
}

.careers-hero {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: clamp(34rem, 42vw, 43rem);
	padding: clamp(5.8rem, 9vw, 9rem) 0;
	color: #fff;
	background:
		radial-gradient(circle at 68% 48%, rgb(0 130 70 / 32%), transparent 32rem),
		linear-gradient(90deg, #003f24 0%, #00532d 55%, #007a40 100%);
}

.careers-hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background: url("../images/careers-hero-trabalhe-conosco.webp") right center / auto 108% no-repeat;
	opacity: .9;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 46%, rgb(0 0 0 / 8%) 56%, rgb(0 0 0 / 58%) 66%, #000 78%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, transparent 46%, rgb(0 0 0 / 8%) 56%, rgb(0 0 0 / 58%) 66%, #000 78%, #000 100%);
}

.careers-hero::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgb(0 63 36 / 90%) 0%, rgb(0 83 45 / 78%) 48%, rgb(0 83 45 / 38%) 66%, rgb(0 63 36 / 12%) 100%);
}

.careers-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: end;
}

.careers-hero h1 {
	max-width: 12ch;
	margin: .55rem 0 1rem;
	font-size: clamp(2.65rem, 5.6vw, 5.1rem);
	line-height: .96;
}

.careers-hero__copy > p:not(.section-eyebrow):last-child {
	max-width: 42rem;
	margin: 0;
	color: rgb(255 255 255 / 84%);
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	line-height: 1.7;
}

.careers-gptw {
	padding: clamp(1.1rem, 2.6vw, 1.8rem) 0;
	background: #fff;
	border-bottom: 1px solid rgb(0 97 48 / 10%);
}

.careers-gptw__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(1.25rem, 4vw, 3rem);
	align-items: center;
	padding: clamp(1rem, 2.1vw, 1.35rem) clamp(1.25rem, 3vw, 2rem);
	border: 1px solid rgb(0 97 48 / 14%);
	border-radius: 1rem;
	background:
		radial-gradient(circle at 92% 50%, rgb(0 139 69 / 10%), transparent 24rem),
		#f7faf7;
	box-shadow: 0 1.2rem 3rem rgb(0 63 36 / 7%);
}

.careers-gptw h2 {
	max-width: 31ch;
	margin: .35rem 0 0;
	color: var(--color-green-dark);
	font-size: clamp(1.25rem, 1.9vw, 1.8rem);
	line-height: 1.08;
}

.careers-gptw h2 + p {
	max-width: 44rem;
	margin: .5rem 0 0;
	color: var(--color-muted);
	font-size: .94rem;
	line-height: 1.6;
}

.careers-gptw__seal {
	display: block;
	width: clamp(4.5rem, 6.2vw, 5.65rem);
	height: auto;
}

.careers-values {
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	background: #fff;
}

.careers-values__header {
	max-width: 980px;
	margin: 0 auto clamp(2rem, 5vw, 4rem);
	text-align: center;
}

.careers-values__header h2 {
	max-width: 15ch;
	margin: .55rem 0 0;
	margin-inline: auto;
	color: var(--color-green-dark);
	font-size: clamp(2rem, 4.5vw, 4rem);
	line-height: .98;
}

.careers-values__header > p {
	max-width: none;
	margin: 1.2rem auto 0;
	padding: 0;
	color: var(--color-muted);
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	font-weight: 400;
	line-height: 1.7;
	white-space: nowrap;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.careers-values__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 5rem);
}

.careers-values__content {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2.25rem);
}

.careers-values__image {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(1rem, 2vw, 1.5rem);
	background: #fff;
	border: 1px solid rgb(0 97 48 / 12%);
	border-radius: 1rem;
	box-shadow: 0 18px 42px rgb(0 63 36 / 8%);
}

.careers-values__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
}

.careers-values article {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	padding: .5rem;
	text-align: center;
}

.careers-card-icon {
	display: grid;
	width: clamp(3.5rem, 5vw, 4.5rem);
	aspect-ratio: 1;
	place-items: center;
	margin: 0 0 .75rem;
	color: var(--color-green);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transition: color 220ms ease, transform 220ms ease;
}

.careers-card-icon i {
	display: block;
	font-size: clamp(2.8rem, 4.5vw, 3.8rem);
	font-weight: 300;
	font-style: normal;
	line-height: 1;
}

.careers-values article:hover .careers-card-icon,
.careers-values article:focus-within .careers-card-icon {
	color: var(--color-red);
	transform: translateY(-4px);
}

.careers-values h3 {
	margin: .45rem 0 0;
	color: var(--color-green-dark);
	font-family: var(--font-sans);
	font-size: clamp(1.05rem, 1.55vw, 1.45rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.025em;
}

.careers-values h3::after {
	display: block;
	width: 2rem;
	height: 2px;
	margin: .8rem auto .75rem;
	content: '';
	background: var(--color-green);
	border-radius: 999px;
}

.careers-values article p {
	max-width: 22rem;
	margin: 0;
	color: var(--color-muted);
	font-size: clamp(.78rem, .95vw, .88rem);
	line-height: 1.55;
}

.careers-rh-video {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background: #f7faf7;
}

.careers-rh-video__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
	gap: clamp(2rem, 4.5vw, 4.5rem);
	align-items: center;
}

.careers-rh-video__media {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #dfeae2;
	border: 1px solid rgb(0 97 48 / 14%);
	border-radius: 1.2rem;
	box-shadow: 0 26px 58px rgb(0 63 36 / 14%);
}

.careers-rh-video__media video,
.careers-rh-video__media iframe,
.careers-rh-video__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.careers-rh-video__placeholder {
	display: grid;
	place-items: center;
	padding: 2rem;
	text-align: center;
}

.careers-rh-video__placeholder p {
	margin: 0 0 .5rem;
	color: var(--color-green-dark);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 900;
}

.careers-rh-video__placeholder span {
	max-width: 24rem;
	color: var(--color-muted);
	line-height: 1.55;
}

.careers-rh-video__copy h2 {
	max-width: 16ch;
	margin: .55rem 0 1rem;
	color: var(--color-green-dark);
	font-size: clamp(1.8rem, 3.2vw, 3rem);
	line-height: 1;
}

.careers-rh-video__copy > p:last-child {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.72;
}

.careers-areas {
	padding: clamp(2rem, 4vw, 3.25rem) 0;
	background:
		radial-gradient(circle at 50% 0%, rgb(255 255 255 / 88%), transparent 42rem),
		#f7faf7;
}

.careers-areas__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.5rem, 4vw, 4rem);
}

.careers-areas article {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	padding: .5rem;
	text-align: center;
}

.careers-area-icon {
	display: grid;
	width: clamp(3.5rem, 5vw, 4.5rem);
	aspect-ratio: 1;
	place-items: center;
	margin: 0 0 .75rem;
	color: var(--color-green);
	background: transparent;
	border: 0;
	border-radius: 0;
	transition: color 220ms ease, transform 220ms ease;
}

.careers-area-icon i {
	font-size: clamp(2.8rem, 4.5vw, 3.8rem);
	font-weight: 300;
}

.careers-areas article > span:not(.careers-area-icon) {
	color: var(--color-green);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.careers-areas h2 {
	margin: .45rem 0 0;
	color: var(--color-green-dark);
	font-family: var(--font-sans);
	font-size: clamp(1.05rem, 1.55vw, 1.45rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.025em;
	white-space: nowrap;
}

.careers-areas h2::after {
	display: block;
	width: 2rem;
	height: 2px;
	margin: .8rem auto .75rem;
	content: '';
	background: var(--color-green);
	border-radius: 999px;
}

.careers-areas p {
	max-width: 18rem;
	margin: 0;
	color: var(--color-muted);
	font-size: clamp(.78rem, .95vw, .88rem);
	line-height: 1.55;
}

.careers-areas article:hover .careers-area-icon {
	color: var(--color-red);
	transform: translateY(-4px);
}

.careers-steps {
	padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5.5rem, 10vw, 9rem);
	background:
		radial-gradient(circle at 12% 20%, rgb(0 139 69 / 12%), transparent 28rem),
		linear-gradient(135deg, #edf6f0 0%, #f8fbf9 58%, #e8f3ec 100%);
}

.careers-steps__grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
	padding: clamp(2rem, 4.5vw, 4rem);
	background: rgb(255 255 255 / 82%);
	border: 1px solid rgb(0 97 48 / 16%);
	border-radius: clamp(1.2rem, 2.5vw, 2rem);
	box-shadow: 0 28px 70px rgb(0 63 36 / 12%);
}

.careers-steps__intro {
	padding-left: clamp(1.15rem, 2vw, 1.75rem);
	border-left: 4px solid var(--color-green);
}

.careers-steps h2 {
	max-width: 14ch;
	margin: .55rem 0 1rem;
	color: var(--color-green-dark);
	font-size: clamp(2rem, 4.4vw, 4rem);
	line-height: .98;
}

.careers-steps__intro > p:last-child {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.75;
}

.careers-steps__list {
	display: grid;
	gap: .85rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: careers-step;
}

.careers-steps__list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: .25rem 1rem;
	align-items: start;
	min-height: 0;
	padding: 1.05rem 1.15rem;
	color: var(--color-muted);
	background: #fff;
	border: 1px solid rgb(0 97 48 / 16%);
	border-radius: .85rem;
	box-shadow: 0 8px 20px rgb(0 63 36 / 5%);
	line-height: 1.55;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.careers-steps__list li:hover {
	transform: translateX(4px);
	border-color: rgb(0 139 69 / 34%);
	box-shadow: 0 12px 28px rgb(0 63 36 / 10%);
}

.careers-steps__list li > strong,
.careers-steps__list li > small {
	grid-column: 2;
}

.careers-steps__list strong,
.careers-steps__list small {
	display: block;
}

.careers-steps__list strong {
	color: var(--color-green-dark);
	font-size: 1rem;
}

.careers-steps__list small {
	margin-top: .15rem;
	color: var(--color-muted);
	font-size: .9rem;
	line-height: 1.45;
}

.careers-steps__number {
	display: grid;
	width: 2.2rem;
	aspect-ratio: 1;
	place-items: center;
	color: #fff;
	background: var(--color-green);
	border-radius: 50%;
	box-shadow: 0 6px 14px rgb(0 97 48 / 22%);
	font-weight: 900;
}

.careers-steps__actions {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .75rem;
}

.careers-steps__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 3rem;
	padding: .75rem 1rem;
	color: var(--color-green-dark);
	border: 1px solid rgb(0 97 48 / 28%);
	border-radius: .7rem;
	font-size: .74rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.careers-steps__actions .ph {
	font-size: 1.05rem;
	line-height: 1;
}

.careers-steps__actions a:first-child,
.careers-steps__actions a:nth-child(2),
.careers-steps__actions a:nth-child(3) {
	color: #fff;
	border-color: var(--color-green);
	background: var(--color-green);
}

.careers-steps__actions a:first-child {
	border-color: var(--color-red);
	background: var(--color-red);
	box-shadow: 0 10px 24px rgb(237 28 45 / 18%);
}

.careers-steps__actions a:hover,
.careers-steps__actions a:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgb(0 63 36 / 16%);
}

.careers-steps__actions a:first-child:hover,
.careers-steps__actions a:first-child:focus-visible,
.careers-steps__actions a:nth-child(2):hover,
.careers-steps__actions a:nth-child(2):focus-visible,
.careers-steps__actions a:nth-child(3):hover,
.careers-steps__actions a:nth-child(3):focus-visible {
	border-color: var(--color-green-dark);
	background: var(--color-green-dark);
}

.careers-steps__actions a:first-child:hover,
.careers-steps__actions a:first-child:focus-visible {
	border-color: #b80f21;
	background: #b80f21;
}

.careers-transparency {
	padding: clamp(3.5rem, 7vw, 6rem) 0;
	background: #f7faf7;
}

.careers-transparency__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(14rem, .36fr);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: stretch;
	padding: clamp(1.6rem, 3.2vw, 3rem);
	background: #fff;
	border: 1px solid rgb(0 97 48 / 14%);
	border-radius: 1.25rem;
	box-shadow: 0 1.25rem 3.5rem rgb(0 63 36 / 7%);
}

.careers-transparency__copy h2 {
	max-width: 24ch;
	margin: .55rem 0 1rem;
	color: var(--color-green-dark);
	font-size: clamp(1.8rem, 3.4vw, 3rem);
	line-height: 1.02;
}

.careers-transparency__copy > p:last-of-type {
	max-width: 68ch;
	margin: 0;
	color: var(--color-muted);
	line-height: 1.7;
}

.careers-transparency__link {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	margin-top: 1.5rem;
	padding: .8rem 1rem;
	color: #fff;
	background: var(--color-green);
	border: 1px solid var(--color-green);
	border-radius: .7rem;
	font-size: .8rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.careers-transparency__link:hover,
.careers-transparency__link:focus-visible {
	color: #fff;
	background: var(--color-green-dark);
	transform: translateY(-2px);
	box-shadow: 0 .85rem 1.8rem rgb(0 63 36 / 16%);
}

.careers-transparency__link .ph {
	font-size: 1.15rem;
	line-height: 1;
}

.careers-transparency__period {
	display: flex;
	position: relative;
	min-height: 12rem;
	padding: 1.5rem;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	color: #fff;
	background: var(--color-green-dark);
	border-radius: .95rem;
}

.careers-transparency__period > span {
	position: relative;
	z-index: 1;
	font-size: .68rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.careers-transparency__period strong {
	position: relative;
	z-index: 1;
	max-width: 9ch;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3vw, 2.45rem);
	line-height: .95;
}

.careers-transparency__period > .ph {
	position: absolute;
	right: -1rem;
	bottom: -1.6rem;
	color: rgb(255 255 255 / 14%);
	font-size: 8.5rem;
}

.careers-signature {
	padding: 0 0 clamp(4rem, 7vw, 6rem);
	background: #fff;
}

.careers-signature__inner {
	padding-top: clamp(1.5rem, 3vw, 2.25rem);
	border-top: 1px solid rgb(0 63 36 / 18%);
	text-align: center;
}

.careers-signature p {
	max-width: none;
	margin: 0;
	color: var(--color-green-dark);
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-weight: 900;
	line-height: 1.1;
}

.contact-page {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	background: #f7faf7;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.8fr);
	align-items: center;
	gap: clamp(2rem, 7vw, 7rem);
}

.contact-page__card {
	display: grid;
	gap: 1rem;
	padding: clamp(1.75rem, 4vw, 3rem);
	color: #fff;
	background: var(--color-green-dark);
	border-radius: 1.4rem;
	box-shadow: 0 24px 54px rgb(0 63 36 / 18%);
}

.contact-page__card p {
	margin: 0;
	color: rgb(255 255 255 / 72%);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-page__card a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgb(255 255 255 / 22%);
	font-size: clamp(1rem, 2vw, 1.18rem);
	font-weight: 800;
}

.contact-page__card a:last-child {
	border-bottom: 0;
}

.contact-page__card a span {
	color: #b9e2c7;
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

@media (max-width: 1020px) {
	.careers-areas__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Página de contato */
.contact-hub__hero { padding: clamp(4.75rem, 9vw, 8rem) 0 clamp(3.5rem, 6vw, 5.5rem); background: linear-gradient(120deg, #f7faf7 0%, #fff 62%, #edf7ef 100%); }
.contact-hub__hero h1, .contact-directory h2, .contact-branches h2 { margin: .55rem 0 1rem; color: var(--color-green-dark); font-family: var(--font-display); font-size: clamp(2.8rem, 5.8vw, 5.8rem); line-height: .93; letter-spacing: -.045em; }
.contact-hub__hero > .container > p:last-child, .contact-directory__grid > div > p:last-child { max-width: 42rem; color: var(--color-muted); font-size: clamp(1rem, 1.6vw, 1.18rem); }
.contact-hub__channels { padding-bottom: clamp(4rem, 7vw, 6rem); background: #fff; }
.contact-hub__channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-channel { display: grid; align-content: start; gap: .8rem; min-height: 18rem; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid rgb(0 83 45 / 14%); border-radius: 1.35rem; color: var(--color-green-dark); background: #fff; box-shadow: 0 16px 36px rgb(0 63 36 / 6%); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-channel:hover, .contact-channel:focus-visible { transform: translateY(-6px); box-shadow: 0 24px 44px rgb(0 63 36 / 14%); }
.contact-channel--sac { color: #fff; border-color: var(--color-green-dark); background: var(--color-green-dark); }
.contact-channel__icon { display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border-radius: .85rem; color: #008440; background: #edf7ef; font-size: 1.45rem; }
.contact-channel--sac .contact-channel__icon { color: #004326; background: #f8d15c; }
.contact-channel__eyebrow, .contact-directory__result-eyebrow, .contact-branch > p { color: var(--color-red); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-channel--sac .contact-channel__eyebrow { color: #f8d15c; }
.contact-channel strong { font-family: var(--font-display); font-size: clamp(1.55rem, 2.4vw, 2.1rem); line-height: 1; }
.contact-channel > span:not(.contact-channel__icon):not(.contact-channel__eyebrow) { color: var(--color-muted); line-height: 1.55; }
.contact-channel--sac > span:not(.contact-channel__icon):not(.contact-channel__eyebrow) { color: rgb(255 255 255 / 78%); }
.contact-channel b { margin-top: auto; color: #008440; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }.contact-channel--sac b { color: #fff; }.contact-channel i { font-style: normal; }
.contact-directory { padding: clamp(4.5rem, 8vw, 7rem) 0; background: #f5faf6; }.contact-directory__grid { display: grid; grid-template-columns: minmax(16rem, .85fr) minmax(28rem, 1.15fr); gap: clamp(2rem, 9vw, 9rem); align-items: center; }.contact-directory__selector { min-height: 14rem; }.contact-directory label { display: block; margin-bottom: .7rem; color: var(--color-green-dark); font-weight: 800; }.contact-directory select { width: 100%; padding: 1.15rem 3.2rem 1.15rem 1.1rem; border: 1px solid #8fb9a0; border-radius: .8rem; color: var(--color-green-dark); background: #fff; font: inherit; }.contact-directory__empty { margin: 1.2rem 0 0; color: var(--color-muted); }.contact-directory__result { margin-top: 1rem; padding: 1.5rem; border: 1px solid #c9dfd1; border-radius: 1rem; background: #fff; }.contact-directory__result h3 { margin: .45rem 0 1rem; color: var(--color-green-dark); font-family: var(--font-display); font-size: 2rem; }.contact-directory__result-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }.contact-directory__email { color: var(--color-green-dark); font-weight: 800; text-decoration: underline; text-underline-offset: .2em; }.button--green { display: inline-flex; gap: .55rem; align-items: center; padding: .8rem 1rem; border-radius: .65rem; color: #fff; background: #008440; font-size: .84rem; font-weight: 900; }.button--green:hover { color: #fff; background: #004326; }
.contact-branches { padding: clamp(4.5rem, 8vw, 7rem) 0; background: #fff; }.contact-branches__heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }.contact-branches__heading h2 { margin-bottom: 0; }.contact-branches__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }.contact-branch { padding: 1.75rem; border: 1px solid rgb(0 83 45 / 14%); border-radius: 1rem; }.contact-branch > .ph { color: #008440; font-size: 1.55rem; }.contact-branch > p { margin: 1.4rem 0 .5rem; }.contact-branch h3 { margin: 0 0 .65rem; color: var(--color-green-dark); font-family: var(--font-display); font-size: 1.6rem; }.contact-branch address { color: var(--color-muted); font-style: normal; line-height: 1.55; }

.contact-hub__hero {
	padding: clamp(4rem, 7vw, 6.7rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.contact-channel__icon,
.contact-channel i {
	transition: transform 180ms ease;
}

.contact-channel:hover .contact-channel__icon,
.contact-channel:focus-visible .contact-channel__icon {
	transform: translateY(-2px) scale(1.06);
}

.contact-channel:hover i,
.contact-channel:focus-visible i {
	display: inline-block;
	transform: translateX(4px);
}

.contact-channel strong {
	max-width: 12ch;
	font-size: clamp(1.5rem, 2.1vw, 1.95rem);
}

.contact-directory__grid {
	gap: clamp(2rem, 4.5vw, 5rem);
}

.contact-directory__empty {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: 5.5rem;
	margin-top: 1rem;
	padding: 1.1rem 1.2rem;
	border: 1px solid #c9dfd1;
	border-radius: 1rem;
	color: var(--color-muted);
	background: rgb(255 255 255 / 72%);
}

.contact-directory__empty > .ph {
	flex: 0 0 auto;
	display: grid;
	width: 2.6rem;
	height: 2.6rem;
	place-items: center;
	border-radius: .75rem;
	color: #008440;
	background: #e4f3e8;
	font-size: 1.35rem;
}

.contact-directory__empty p {
	margin: 0;
	line-height: 1.45;
}

.contact-directory__empty strong {
	display: block;
	margin-bottom: .15rem;
	color: var(--color-green-dark);
}

.contact-branches {
	padding-bottom: clamp(5.5rem, 9vw, 8rem);
}

.contact-branches__heading {
	display: block;
	max-width: 46rem;
	margin-bottom: 2.2rem;
}

.contact-branches__heading h2 {
	margin: .45rem 0 .8rem;
}

.contact-branches__heading > p:last-child {
	margin: 0;
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.6;
}

.contact-branch {
	display: flex;
	flex-direction: column;
	min-height: 20rem;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-branch:hover {
	transform: translateY(-5px);
	border-color: rgb(0 132 64 / 36%);
	box-shadow: 0 20px 42px rgb(0 63 36 / 10%);
}

.contact-branch__hours {
	display: flex;
	gap: .45rem;
	align-items: center;
	margin-top: .8rem;
	color: var(--color-muted);
	font-size: .9rem;
	line-height: 1.45;
}

.contact-branch__map {
	display: inline-flex;
	gap: .4rem;
	align-items: center;
	align-self: flex-start;
	margin-top: auto;
	padding-top: 1.2rem;
	color: #008440;
	font-size: .76rem;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.contact-branch__map:hover,
.contact-branch__map:focus-visible {
	color: var(--color-green-dark);
}

@media (max-width: 760px) {
	.careers-hero {
		min-height: auto;
		padding: clamp(5rem, 18vw, 7rem) 0;
		background:
			radial-gradient(circle at 50% 0%, rgb(0 130 70 / 28%), transparent 18rem),
			linear-gradient(180deg, #003f24 0%, #00532d 100%);
	}

	.careers-hero::before {
		background-position: center top;
		background-size: auto 72%;
		opacity: .38;
		-webkit-mask-image: linear-gradient(180deg, #000 0%, rgb(0 0 0 / 36%) 48%, transparent 84%);
		mask-image: linear-gradient(180deg, #000 0%, rgb(0 0 0 / 36%) 48%, transparent 84%);
	}

	.careers-hero::after {
		background: linear-gradient(180deg, rgb(0 63 36 / 62%) 0%, rgb(0 83 45 / 90%) 58%, rgb(0 63 36 / 96%) 100%);
	}

	.careers-values__header > p {
		white-space: normal;
	}

	.about-video-section__grid,
	.about-pillars__grid,
	.about-signature__inner,
	.careers-hero__grid,
	.careers-gptw__inner,
	.careers-values__header,
	.careers-values__grid,
	.careers-rh-video__grid,
	.careers-areas__grid,
	.careers-steps__grid,
	.careers-transparency__inner,
	.careers-steps__actions {
		grid-template-columns: 1fr;
	}

	.contact-page__grid {
		grid-template-columns: 1fr;
	}

	.contact-hub__channels-grid,
	.contact-branches__grid,
	.contact-directory__grid { grid-template-columns: 1fr; }
	.contact-branches__heading { display: block; }

	.careers-gptw__seal {
		justify-self: start;
	}
}

/* Página de produtos */
.products-page {
	background: #f7faf7;
}

.products-page__hero {
	position: relative;
	overflow: hidden;
	display: flex;
	min-height: clamp(34rem, 43vw, 51rem);
	align-items: center;
	padding: clamp(4.5rem, 8vw, 7rem) 0;
	color: var(--color-green-dark);
	background: #f4eadc url("../images/hero-produtos-v6.webp") center / cover no-repeat;
}

.products-page__hero::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgb(248 241 231 / 58%) 0%, rgb(248 241 231 / 32%) 35%, transparent 54%);
	pointer-events: none;
}

.products-page__hero-grid {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-inline: clamp(1.5rem, 4vw, 4rem);
}

.products-page__hero-copy {
	max-width: min(39rem, 45%);
}

.products-page__hero .section-eyebrow {
	color: var(--color-red);
}

.products-page__hero h1 {
	max-width: 8.5em;
	margin: .5rem 0 0;
	color: var(--color-green-dark);
	font-size: clamp(3.15rem, 5vw, 5.6rem);
	line-height: .92;
	text-shadow: 0 2px 0 rgb(255 255 255 / 34%);
}

.products-page__hero-signature {
	display: grid;
	gap: .9rem;
	max-width: 30rem;
	margin-top: clamp(1.4rem, 3vw, 2.1rem);
}

.products-page__hero-signature > p {
	max-width: 34rem;
	margin: 0;
	color: #3c5145;
	font-size: .94rem;
	line-height: 1.6;
}

.products-page__hero-signature > p:first-child {
	display: flex;
	gap: 1rem;
	align-items: center;
	color: var(--color-green-dark);
}

.products-page__hero-signature strong {
	color: var(--color-red);
	font-family: var(--font-heading);
	font-size: clamp(2.8rem, 4.5vw, 4.5rem);
	line-height: .72;
}

.products-page__hero-signature span {
	max-width: 10rem;
	font-size: .76rem;
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.products-page__hero-stripes {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: .35rem;
	height: .35rem;
}

.products-page__hero-stripes i {
	background: #ef2138;
	border-radius: 999px;
}

.products-page__hero-stripes i:nth-child(2) { background: #8536a7; }
.products-page__hero-stripes i:nth-child(3) { background: #f5b52c; }
.products-page__hero-stripes i:nth-child(4) { background: #f08224; }
.products-page__hero-stripes i:nth-child(5) { background: #17171b; }

.products-page__hero-signature > p:last-child {
	padding-top: .75rem;
	border-top: 1px solid rgb(0 63 36 / 16%);
}

.products-page__catalog {
	padding: clamp(3rem, 6vw, 6rem) 0 clamp(5rem, 9vw, 8rem);
}

.products-page__types {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
	margin-bottom: 1.2rem;
}

.products-page__type {
	min-height: 2.65rem;
	padding: .7rem 1.15rem;
	color: #3c5145;
	font: inherit;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .035em;
	text-transform: uppercase;
	background: #fff;
	border: 1px solid #d5e2da;
	border-radius: 999px;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.products-page__type:hover,
.products-page__type:focus-visible,
.products-page__type.is-active {
	color: #fff;
	background: #004b2b;
	border-color: #004b2b;
	transform: translateY(-2px);
}

.products-page__brands {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: .8rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.products-page__brand {
	display: grid;
	aspect-ratio: 2 / 1;
	min-height: 7rem;
	place-items: center;
	padding: 1rem;
	overflow: hidden;
	color: #004326;
	font: inherit;
	font-size: clamp(1rem, 1.7vw, 1.35rem);
	font-weight: 900;
	background: #fff;
	border: 1px solid #d7e3db;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgb(0 63 36 / 5%);
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.products-page__brand img {
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.products-page__brand.has-logo {
	padding: 0;
}

.products-page__brand.has-logo:hover img,
.products-page__brand.has-logo:focus-visible img {
	transform: scale(1.025);
}

.products-page__brand:hover,
.products-page__brand:focus-visible,
.products-page__brand.is-active {
	border-color: #008440;
	box-shadow: 0 16px 36px rgb(0 63 36 / 12%);
	transform: translateY(-4px);
}

.products-page__brand.is-active {
	box-shadow: inset 0 -4px 0 #ef2138, 0 16px 36px rgb(0 63 36 / 12%);
}

.brand-catalog[hidden] {
	display: none;
}

.brand-catalog__flavors {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin-top: 1.4rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid #d7e3db;
	border-radius: 1rem;
	box-shadow: 0 10px 30px rgb(0 63 36 / 5%);
}

.brand-catalog__flavor {
	min-height: 2.45rem;
	padding: .6rem .95rem;
	color: var(--brand-primary);
	font: inherit;
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .025em;
	background: color-mix(in srgb, var(--brand-primary) 5%, #fff);
	border: 1px solid color-mix(in srgb, var(--brand-primary) 22%, #d7e3db);
	border-radius: 999px;
	cursor: pointer;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brand-catalog__flavor:hover,
.brand-catalog__flavor:focus-visible,
.brand-catalog__flavor.is-active {
	color: #fff;
	background: var(--brand-primary);
	border-color: var(--brand-primary);
	transform: translateY(-2px);
}

.brand-catalog__carousel {
	position: relative;
	margin-top: 1.4rem;
}

.brand-catalog__grid {
	--catalog-products-per-view: 3;
	display: grid;
	grid-auto-columns: calc((100% - (1.25rem * (var(--catalog-products-per-view) - 1))) / var(--catalog-products-per-view));
	grid-auto-flow: column;
	gap: 1.25rem;
	overflow-x: auto;
	padding: .55rem .15rem 1.25rem;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.brand-catalog__grid::-webkit-scrollbar {
	display: none;
}

.brand-catalog__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: grid;
	width: 3rem;
	aspect-ratio: 1;
	place-items: center;
	color: #fff;
	background: var(--brand-primary);
	border: 1px solid color-mix(in srgb, var(--brand-primary) 76%, #fff);
	border-radius: 50%;
	box-shadow: 0 14px 30px color-mix(in srgb, var(--brand-primary) 22%, transparent);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.brand-catalog__arrow:hover,
.brand-catalog__arrow:focus-visible {
	background: color-mix(in srgb, var(--brand-primary) 82%, #000);
	transform: translateY(-50%) scale(1.08);
}

.brand-catalog__arrow:disabled {
	opacity: .35;
	cursor: default;
}

.brand-catalog__arrow--previous {
	left: -1.5rem;
}

.brand-catalog__arrow--next {
	right: -1.5rem;
}

.brand-catalog__arrow i {
	font-size: 1.2rem;
}

.catalog-product {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #d7e3db;
	border-radius: 1.15rem;
	box-shadow: 0 12px 32px rgb(0 63 36 / 7%);
	scroll-snap-align: start;
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.catalog-product[hidden] {
	display: none;
}

.catalog-product:hover {
	border-color: color-mix(in srgb, var(--brand-primary) 45%, #d7e3db);
	box-shadow: 0 22px 48px color-mix(in srgb, var(--brand-primary) 14%, transparent);
	transform: translateY(-7px);
}

.catalog-product__image {
	display: grid;
	position: relative;
	aspect-ratio: 4 / 5;
	height: auto;
	place-items: center;
	padding: clamp(1.25rem, 2.5vw, 2rem);
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 65%, color-mix(in srgb, var(--brand-primary) 15%, transparent), transparent 58%),
		linear-gradient(180deg, #f8fbf8, #edf5ef);
}

.catalog-product__image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: clamp(.35rem, 1vw, .75rem);
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 20px 15px rgb(0 0 0 / 16%));
	transition: transform 260ms ease;
}

.catalog-product:hover .catalog-product__image img {
	transform: scale(1.045) translateY(-4px);
}

.catalog-product__placeholder {
	width: 6rem;
	height: 14rem;
	background: color-mix(in srgb, var(--brand-primary) 25%, #fff);
	border-radius: 1rem 1rem 2rem 2rem;
}

.catalog-product__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.35rem;
}

.catalog-product__content > p {
	margin: 0 0 .45rem;
	color: var(--brand-primary);
	font-size: .7rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.catalog-product__content h3 {
	margin: 0;
	color: #003f24;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	line-height: 1.08;
}

.catalog-product__content > span {
	margin-top: .6rem;
	color: #55685c;
	font-size: .82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.catalog-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-top: auto;
	padding-top: 1.25rem;
}

.catalog-product__actions a {
	display: inline-flex;
	gap: .4rem;
	align-items: center;
	justify-content: center;
	min-height: 2.55rem;
	padding: .65rem .85rem;
	color: var(--brand-primary);
	font-size: .72rem;
	font-weight: 900;
	border: 1px solid color-mix(in srgb, var(--brand-primary) 34%, #d7e3db);
	border-radius: .55rem;
	transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.catalog-product__actions a.is-primary,
.catalog-product__actions a:hover,
.catalog-product__actions a:focus-visible {
	color: #fff;
	background: var(--brand-primary);
	transform: translateY(-2px);
}

.brand-catalog__empty {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-top: 1rem;
	padding: 1.4rem;
	background: #fff;
	border: 1px dashed #a8c1b1;
	border-radius: 1rem;
}

.brand-catalog__empty p {
	margin: 0;
}

.brand-catalog__empty a {
	color: #008440;
	font-weight: 900;
}

@media (max-width: 900px) {
	.products-page__brands {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.brand-catalog__grid {
		--catalog-products-per-view: 2;
	}
}

@media (max-width: 620px) {
	.products-page__hero-grid {
		grid-template-columns: 1fr;
	}

	.products-page__hero {
		min-height: 0;
		align-items: flex-end;
		padding: clamp(19.5rem, 61vw, 22.5rem) 0 3.5rem;
		background-color: #f4eadc;
		background-position: 78% top;
		background-size: auto clamp(18rem, 55vw, 21.5rem);
	}

	.products-page__hero::before {
		background: linear-gradient(180deg, transparent 0%, transparent 43%, rgb(248 241 231 / 88%) 57%, #f8f1e7 68%, #f8f1e7 100%);
	}

	.products-page__hero-copy {
		max-width: none;
	}

	.products-page__hero h1 {
		max-width: 9.5ch;
		font-size: clamp(2.8rem, 14vw, 4rem);
	}

	.brand-catalog__grid {
		--catalog-products-per-view: 1;
	}

	.brand-catalog__arrow--previous {
		left: -.7rem;
	}

	.brand-catalog__arrow--next {
		right: -.7rem;
	}

	.products-page__hero-signature {
		max-width: none;
	}

	.products-page__brands {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.products-page__brand {
		min-height: 5rem;
	}

}

/* Produto individual */
.single-product {
	min-height: 70vh;
	padding-bottom: clamp(4rem, 8vw, 7rem);
	background:
		linear-gradient(180deg, color-mix(in srgb, var(--product-primary) 7%, #f7faf7) 0, #f7faf7 32rem);
}

.single-product__hero {
	min-height: 8rem;
	padding: 2.25rem 0 5.5rem;
	color: #fff;
	background:
		linear-gradient(115deg, color-mix(in srgb, var(--product-primary) 90%, #001f12), var(--product-primary));
}

.single-product__back {
	display: inline-flex;
	gap: .65rem;
	align-items: center;
	color: #fff;
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.single-product__back:hover,
.single-product__back:focus-visible {
	color: #fff;
	transform: translateX(-3px);
}

.single-product__grid {
	display: grid;
	grid-template-columns: minmax(18rem, .9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
	margin-top: -3.5rem;
}

.single-product__visual {
	display: grid;
	place-items: center;
	min-height: min(38rem, 70vw);
	padding: clamp(1.5rem, 4vw, 3.5rem);
	background: #fff;
	border: 1px solid rgb(0 74 40 / 10%);
	border-radius: 1.2rem;
	box-shadow: 0 26px 60px rgb(0 63 36 / 12%);
}

.single-product__image {
	width: 100%;
	max-height: 34rem;
	object-fit: contain;
}

.single-product__placeholder {
	width: min(12rem, 50%);
	color: color-mix(in srgb, var(--product-primary) 42%, #dce9e1);
}

.single-product__placeholder svg {
	display: block;
	width: 100%;
	fill: currentColor;
}

.single-product__content {
	padding-top: 3.5rem;
}

.single-product__eyebrow {
	margin: 0 0 .75rem;
	color: var(--product-secondary);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.single-product__content h1 {
	max-width: 13ch;
	margin: 0;
	color: var(--product-primary);
	font-size: clamp(3rem, 6vw, 5.8rem);
	line-height: .93;
}

.single-product__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-top: 1.4rem;
}

.single-product__meta span {
	padding: .5rem .75rem;
	color: var(--product-primary);
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--product-primary) 20%, #dce9e1);
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.single-product__description {
	max-width: 38rem;
	margin: 1.6rem 0 0;
	color: #485b50;
	font-size: 1rem;
	line-height: 1.75;
}

.single-product__description > :first-child {
	margin-top: 0;
}

.single-product__description > :last-child {
	margin-bottom: 0;
}

.single-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: 2rem;
}

.single-product__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1rem;
	padding: .8rem 1rem;
	color: var(--product-primary);
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--product-primary) 32%, #dce9e1);
	border-radius: .65rem;
	font-size: .75rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.single-product__actions a:hover,
.single-product__actions a:focus-visible {
	color: #fff;
	background: var(--product-primary);
	border-color: var(--product-primary);
	transform: translateY(-2px);
}

.single-product__actions .is-primary {
	color: #fff;
	background: var(--product-secondary);
	border-color: var(--product-secondary);
}

.single-product__actions .is-primary:hover,
.single-product__actions .is-primary:focus-visible {
	background: color-mix(in srgb, var(--product-secondary) 82%, #7d0010);
	border-color: color-mix(in srgb, var(--product-secondary) 82%, #7d0010);
}

@media (max-width: 760px) {
	.single-product__hero {
		padding-bottom: 4.5rem;
	}

	.single-product__grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	.single-product__visual {
		min-height: 29rem;
	}

	.single-product__content {
		padding-top: 0;
	}

	.single-product__content h1 {
		font-size: clamp(3rem, 15vw, 4.8rem);
	}

	.single-product__actions {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
