:root {
  --green-950: #062b1c;
  --green-900: #083923;
  --green-800: #0b4f2f;
  --green-700: #12683d;
  --green-600: #258347;
  --lime: #a9cf46;
  --lime-light: #d8ee9d;
  --guava: #d95f6c;
  --cream: #f8f6ee;
  --cream-2: #f1eee3;
  --white: #ffffff;
  --ink: #16231c;
  --muted: #00562c;
  --line: rgba(8, 57, 35, 0.13);
  --shadow-sm: 0 12px 35px rgba(7, 47, 29, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 47, 29, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 88px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

::selection {
  color: var(--white);
  background: var(--green-700);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--guava));
}

/* FAIXA ACIMA DO MENU DO TOPO -- aqui muda a cor dela ---*/
.topbar {
  position: relative;
  z-index: 1001;
  color: rgba(255,255,255,.92);
  background: var(--green-950);
  font-size: 12px;
  font-weight: 700;
}

.topbar__inner,
.topbar__contacts,
.language-switcher {
  display: flex;
  align-items: center;
}


/* FAIXA ACIMA DO MENU DO TOPO -- aqui muda o tamanho da altura dela ---*/
.topbar__inner {
  min-height: 50px;
  justify-content: space-between;
  gap: 20px;
}

/* FAIXA ACIMA DO MENU DO TOPO -- aqui muda o tamanho da fonte dos contatos ---*/
.topbar__contacts {
  gap: 26px;
  font-size: 15px;
}

.topbar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s ease;
}

.topbar__contacts a:hover {
  color: var(--lime);
}

.topbar svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.language-switcher {
  align-self: stretch;
}

.language {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  cursor: pointer;
  color: rgba(255,255,255,.72);
  background: transparent;
  transition: background .25s ease, color .25s ease;
}

.language:hover,
.language.is-active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

/* FAIXA LOGO E MENU TOPO DESKTOP -- aqui muda a cor de fundo e outras configurações ----*/
.header {
  position: absolute;
	background-color: #faffe9;
  z-index: 1000;
  top: 38px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(8,57,35,.07);
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.header.is-sticky {
  position: fixed;
  top: 0;
  background: rgba(248,246,238,.94);
  box-shadow: 0 10px 35px rgba(7,47,29,.08);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}


/* LOGO TOPO DESKTOP -- aqui muda as configurações ---*/
.brand {
  position: relative;
  display: inline-flex;
  min-width: 280px;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  color: var(--green-950);
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: .78;
}

.brand__main {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.07em;
}

.brand__accent {
  margin-left: 49px;
  color: var(--lime);
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.05em;
}

.brand__leaf {
  position: absolute;
  top: -9px;
  right: 15px;
  width: 18px;
  height: 18px;
  fill: var(--lime);
  stroke: var(--green-800);
  stroke-width: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}


/* MENU TOPO - DESKTOP -- aqui muda as configurações dele -----*/
.nav__link {
  position: relative;
  padding: 32px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  transition: color .25s ease;
}

.nav__link::after {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--green-700);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-950);
  transition: transform .3s ease, opacity .3s ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
}


/* BOTÃO WHATSAPP - FAIXA LOGO MENU TOPO DESKTOP -- aqui muda as configurações e abaixo a opção hover ---*/
.button--header {
  min-height: 48px;
	font-size: 14px;
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 10px 24px rgba(6,43,28,.18);
}
.button--header:hover,
.button--primary:hover {
  color: var(--green-950);
  background: var(--lime);
  box-shadow: 0 14px 35px rgba(81,118,20,.24);
}


.button--primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 14px 34px rgba(6,43,28,.2);
}

.button--ghost {
  color: var(--green-950);
  background: rgba(255,255,255,.5);
  border-color: rgba(8,57,35,.16);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: var(--white);
  border-color: var(--white);
}

.button--outline {
  color: var(--green-800);
  background: transparent;
  border-color: rgba(8,57,35,.25);
}

.button--outline:hover {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}


/* BANNER CARROSSEL RESPONSIVO
   Desktop: imagem inteira sem corte.
   Mobile: imagem responsiva em cima e texto abaixo. */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero.hero-carousel {
  padding-top: var(--header-height);
  background: var(--green-950);
}

.hero.hero-carousel::after,
.hero-carousel__slide::before,
.hero-carousel__media::before,
.hero.hero-carousel .hero__glow,
.hero.hero-carousel .hero__decor {
  display: none !important;
}

.hero-carousel__viewport {
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.hero-carousel__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform .75s var(--ease);
}

.hero-carousel__slide {
  position: relative;
  min-width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-950);
}

.hero-carousel__media {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background: var(--green-950);
}

.hero-carousel__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel__media img {
  display: block;
  width: 100%;
  height: auto;
  transform: none !important;
  translate: none !important;
  animation: none !important;
}

.hero-carousel__container {
  position: relative;
  z-index: 5;
}

.hero-carousel__content {
  transform: translateY(14px);
  opacity: 0;
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.hero-carousel__slide.is-active .hero-carousel__content {
  opacity: 1;
  transform: translateY(0);
}

.hero-carousel__arrow {
  position: absolute;
  z-index: 8;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  cursor: pointer;
  color: var(--green-950);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(8,57,35,.14);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(6,43,28,.14);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: color .25s ease, background .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.hero-carousel__arrow:hover {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 16px 40px rgba(6,43,28,.22);
  transform: translateY(-50%) scale(1.05);
}

.hero-carousel__arrow:focus-visible,
.hero-carousel__dot:focus-visible {
  outline: 3px solid rgba(169,207,70,.85);
  outline-offset: 4px;
}

.hero-carousel__arrow--prev {
  left: max(18px, calc((100vw - var(--container)) / 2 - 330px));
}

.hero-carousel__arrow--next {
  right: max(18px, calc((100vw - var(--container)) / 2 - 330px));
}

.hero-carousel__arrow i {
  font-size: 24px;
  line-height: 1;
}

.hero-carousel__dots {
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,.68);
  border: 0;
  border-radius: 999px;
  transition: width .3s var(--ease), background .25s ease, transform .25s var(--ease);
}

.hero-carousel__dot:hover {
  background: var(--lime);
  transform: scale(1.08);
}

.hero-carousel__dot.is-active {
  width: 34px;
  background: var(--lime);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow::after {
  width: 44px;
  height: 2px;
  content: "";
  background: var(--lime);
}

.eyebrow--light {
  color: var(--lime-light);
}

.hero__title,
.section-title {
  margin: 0;
  color: var(--green-950);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero__title {
  max-width: 690px;
  font-size: clamp(48px, 6vw, 78px);
}

.hero__title em,
.section-title em,
.cta-band h2 em {
  color: var(--green-600);
  font-style: normal;
}

.hero__text {
  max-width: 560px;
  margin: 26px 0 0;
  color: #425149;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

/* 3 BOX - abaixo do SLIDER -- aqui muda a posição de altura deles em relação ao banner ---*/
.trust-strip {
  position: relative;
  z-index: 9;
  margin-top: -14px;
}

.trust-strip__grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(5, 1fr);
  color: var(--white);
  background: var(--green-900);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.trust-card {
  display: flex;
  min-height: 160px;
	width: 100%;
  align-items: center;
  gap: 10px;
  padding: 26px 10px;
}

.trust-card + .trust-card {
  border-left: 1px solid rgba(255,255,255,.13);
}

/*
.trust-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(169,207,70,.5);
  border-radius: 50%;
  font-size: 30px;
}
*/


/* 3 BOX - abaixo do SLIDER -- aqui muda as configurações do icone - tamanho do circulo e tamanho do icone ---*/
.trust-card__icon i,
.trust-card__icon svg {
  font-size: 25px !important;
  width: 60px !important;
  height: 60px !important;
  line-height: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(169,207,70,.5);
  border-radius: 50%;
}

.trust-card__icon svg {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.trust-card div {
  display: grid;
  gap: 3px;
}


/* 3 BOX - abaixo do SLIDER -- aqui muda o tamanho da fonte do titulo ---*/
.trust-card strong {
  font-size: 20px;
  line-height: 1.35;
}

/* 3 BOX - abaixo do SLIDER -- aqui muda o tamanho da fonte da descrição ---*/
.trust-card span {
  color: rgba(255,255,255,.62);
  font-size: 16px;
}

/* SECTION - ESPAÇO padrão ---*/
.section {
  position: relative;
  padding: 60px 0;
}

.about {
  overflow: hidden;
}

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
}

.section-title {
  font-size: clamp(40px, 5vw, 62px);
}

.lead {
  color: #34453b;
  font-size: 18px;
  font-weight: 600;
}

.about__content > p:not(.eyebrow) {
  max-width: 560px;
}


/* A EMPRESA -- aqui muda as configurações do texto da 'frase em destaque que tem a folha de icone' -------*/
.about__seal {
  display: flex;
  max-width: 460px;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  color: var(--green-800);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.about__seal span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.about__seal svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--green-700);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.about__visual {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(6,43,28,.15));
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.image-frame:hover img {
  transform: scale(1.045);
}

.image-frame__tag {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  padding: 8px 12px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

/* EMPRESA - SELO abaixo da foto da fachada -- aqui muda a cor e configuração ---*/
.about__metrics {
  position: relative;
  z-index: 3;
  display: grid;
  width: calc(100% - 44px);
  margin: -24px auto 0;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--green-900);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.about__metrics div {
  display: grid;
  min-height: 108px;
  place-content: center;
  padding: 18px;
  text-align: center;
}

.about__metrics div + div {
  border-left: 1px solid rgba(255,255,255,.13);
}


/* EMPRESA - SELO abaixo da foto da fachada -- aqui muda a configuração do texto ---*/
.about__metrics strong {
  color: var(--lime);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.about__metrics span {
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.leaf-outline--left {
  position: absolute;
  top: 140px;
  left: -86px;
  width: 180px;
  height: 310px;
  opacity: .08;
  border: 3px solid var(--green-700);
  border-radius: 100% 0 100% 0;
  transform: rotate(-22deg);
}

.leaf-outline--left::before,
.leaf-outline--left::after {
  position: absolute;
  content: "";
  background: var(--green-700);
  transform-origin: left center;
}

.leaf-outline--left::before {
  top: 45%;
  left: -20px;
  width: 220px;
  height: 2px;
  transform: rotate(-51deg);
}

.process {
  overflow: hidden;
  background: var(--cream-2);
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading--center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-subtitle {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
}

.process__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process__line::before {
  position: absolute;
  top: 54px;
  right: 11%;
  left: 11%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(8,57,35,.22) 0 6px, transparent 6px 12px);
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-step__number {
  position: absolute;
  top: -10px;
  right: 32px;
  color: rgba(8,57,35,.1);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 42px;
  font-weight: 800;
}

.process-step__icon {
  display: grid;
  width: 108px;
  height: 108px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--green-800);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.process-step:hover .process-step__icon {
  color: var(--green-950);
  background: var(--lime);
  transform: translateY(-7px) rotate(-4deg);
}

.process-step__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 21px;
}


/* ETAPAS DE PRODUÇÃO -- aqui muda o tamanho do texto da descrição ----*/
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.products {
  overflow: hidden;
  background: var(--white);
}

.leaf-pattern {
  position: absolute;
  top: 68px;
  right: -35px;
  width: 290px;
  height: 220px;
  opacity: .13;
  background:
    radial-gradient(ellipse at 30% 35%, transparent 0 34%, var(--green-700) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 70% 60%, transparent 0 31%, var(--green-700) 32% 33%, transparent 34%);
  transform: rotate(-20deg);
}

.product-tabs {
  display: flex;
  width: max-content;
  margin: 0 auto 42px;
  padding: 5px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-tab {
  min-width: 158px;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--green-800);
  background: transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.product-tab.is-active {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 8px 24px rgba(8,57,35,.16);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8,57,35,.1);
  border-radius: 18px;
  box-shadow: 0 8px 35px rgba(6,43,28,.06);
  transform-style: preserve-3d;
  transition: opacity .35s ease, transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.product-card:hover {
  border-color: rgba(37,131,71,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.product-card.is-hiding {
  opacity: 0;
  transform: translateY(12px) scale(.97);
}

.product-card__media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #e8ebd9;
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(6,43,28,.14));
}


/* PRODUTOS -- aqui define a altura da imagem/foto do produto ---*/
.product-card__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.07);
}


/* PRODUTOS -- aqui muda o tamanho do texto da 'categoria' que tem por cima da foto em cima ----*/
.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--green-950);
  background: rgba(255,255,255,.86);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-card__body {
  padding: 24px;
}

.product-card__category {
  margin: 0 0 4px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--green-950);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 25px;
  line-height: 1.1;
}


/* PRODUTOS -- aqui muda o tamanho do texto da descrição e outras configurações ----*/
.product-card__body > p:not(.product-card__category) {
  min-height: 50px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* PRODUTOS -- aqui muda o tamanho do texto da 'botão tenho interesse' ----*/
.product-card__cta {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  color: var(--green-800);
  border: 1px solid rgba(37,131,71,.3);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.product-card__cta:hover {
  color: var(--white);
  background: var(--green-700);
  border-color: var(--green-700);
}

.product-card__cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .25s ease;
}

.product-card__cta:hover svg {
  transform: translateX(4px);
}

.products__footer {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.product-card__media--guava,
.product-card__media--pulp,
.product-card__media--fruit {
  display: grid;
  place-items: center;
}

.product-card__media--guava {
  background: radial-gradient(circle at 35% 30%, #f3c1bb, #d65c68 55%, #8d2d3c);
}

.product-card__media--pulp {
  background: radial-gradient(circle at 40% 30%, #ffd4cc, #e27175 52%, #8c3745);
}

.product-card__media--fruit {
  background: radial-gradient(circle at 35% 32%, #dff0a4, #88a93c 55%, #355c29);
}

.product-illustration {
  position: relative;
  z-index: 1;
}

.product-illustration--guava {
  width: 210px;
  height: 135px;
}

.product-illustration--guava span {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #9fbd43;
  border: 5px solid rgba(255,255,255,.3);
  border-radius: 52% 48% 46% 54%;
  box-shadow: 0 18px 28px rgba(48,51,19,.25);
}

.product-illustration--guava span:nth-child(1) { left: 8px; bottom: 0; transform: rotate(-14deg); }
.product-illustration--guava span:nth-child(2) { right: 12px; bottom: 3px; transform: rotate(18deg); }
.product-illustration--guava span:nth-child(3) {
  top: 0;
  left: 72px;
  width: 76px;
  height: 76px;
  background: radial-gradient(circle, #f4d18e 0 15%, #db5968 16% 55%, #8cac3e 56%);
  transform: rotate(8deg);
}

.product-illustration--pulp {
  width: 190px;
  height: 125px;
  border: 8px solid rgba(255,255,255,.76);
  background: linear-gradient(135deg, #e2616e, #b53d51);
  border-radius: 22px 22px 46px 46px;
  box-shadow: 0 18px 30px rgba(79,23,35,.28);
  transform: rotate(-4deg);
}

.product-illustration--pulp::before {
  position: absolute;
  top: -18px;
  right: 15px;
  left: 15px;
  height: 24px;
  content: "";
  background: #f0eee5;
  border-radius: 9px;
}

.product-illustration--pulp span {
  position: absolute;
  top: 27px;
  left: 35px;
  width: 110px;
  height: 44px;
  background: rgba(255,255,255,.85);
  border-radius: 8px;
}

.product-illustration--fruit {
  width: 220px;
  height: 140px;
}

.product-illustration--fruit span {
  position: absolute;
  bottom: 4px;
  width: 128px;
  height: 92px;
  border-radius: 50%;
  box-shadow: 0 18px 28px rgba(27,54,22,.22);
}

.product-illustration--fruit span:first-child {
  left: 15px;
  background: #8eae3d;
  transform: rotate(-8deg);
}

.product-illustration--fruit span:last-child {
  right: 12px;
  background:
    radial-gradient(circle at 50% 48%, #f2d37f 0 7%, #dc5c67 8% 58%, #a5bd43 59% 67%, transparent 68%),
    #9eb841;
  transform: rotate(10deg);
}

.outsourcing {
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.outsourcing::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .2;
  background:
    radial-gradient(circle at 20% 20%, var(--lime), transparent 24%),
    radial-gradient(circle at 80% 80%, #386d4a, transparent 28%);
}

.outsourcing__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.outsourcing__visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
}

.outsourcing__card {
  position: relative;
  z-index: 3;
  width: min(390px, 90%);
  padding: 48px;
  color: var(--green-950);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 34px;
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
  transform: rotate(-4deg);
  backdrop-filter: blur(14px);
}

.outsourcing__label {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--green-900);
  background: var(--lime-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.outsourcing__card strong {
  display: block;
  margin-top: 25px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -.06em;
  line-height: .98;
}

.outsourcing__mini-grid {
  display: grid;
  margin-top: 35px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.outsourcing__mini-grid span {
  padding: 10px 6px;
  text-align: center;
  color: var(--white);
  background: var(--green-800);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
}

.outsourcing__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.outsourcing__orb--one {
  top: 20px;
  left: 15px;
  width: 230px;
  height: 230px;
  background: var(--lime);
  animation: float 8s ease-in-out infinite;
}

.outsourcing__orb--two {
  right: 20px;
  bottom: 20px;
  width: 180px;
  height: 180px;
  background: var(--guava);
  animation: float 6s ease-in-out infinite reverse;
}

.outsourcing .section-title {
  color: var(--white);
}

.outsourcing .lead,
.outsourcing__content > p {
  color: rgba(255,255,255,.72);
}

.check-list {
  display: grid;
  margin: 28px 0 34px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  content: "✓";
  place-items: center;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.outsourcing .button--primary {
  color: var(--green-950);
  background: var(--lime);
}

.outsourcing .button--primary:hover {
  color: var(--green-950);
  background: var(--white);
}


/* FAIXA CTA -- aqui muda a cor do BG de fundo ---*/
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  color: var(--white);
  background: linear-gradient(115deg, var(--green-950), var(--green-800));
}

.cta-band::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .05;
  background-image:
    radial-gradient(circle at 14% 40%, var(--lime) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 28%, var(--lime) 0 1px, transparent 2px);
  background-size: 28px 28px, 35px 35px;
}

.cta-band__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 45px;
}

.cta-band__headline h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.cta-band__headline h2 em {
  color: var(--lime);
}


/* FAIXA CTA -- aqui muda a configuração do texto da descrição ---*/
.cta-band__headline p:last-child {
  margin: 16px 0 0;
  color: rgba(255,255,255,.67);
  font-size: 18px;
}

.contact-option {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 16px;
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,.2);
  transition: transform .3s var(--ease);
}

.contact-option:hover {
  transform: translateY(-4px);
}

/* FAIXA CTA -- aqui muda o tamanho do circulo e do icone ---*/
.contact-option__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--green-800);
  background: var(--white);
  border-radius: 50%;
}
.contact-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
}
.contact-option__icon i,
.contact-option__icon .bi {
  font-size: 26px !important;
  line-height: 1 !important;
}

.contact-option > span:last-child {
  display: grid;
}


/* FAIXA CTA -- aqui muda o tamanho do texto de cima do icone ---*/
.contact-option small {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  font-weight: 700;
}

/* FAIXA CTA -- aqui muda o tamanho do texto do meio do icone ---*/
.contact-option strong {
  font-size: 18px;
}

/* FAIXA CTA -- aqui muda o tamanho do texto de baixo do icone ---*/
.contact-option em {
  color: var(--lime-light);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.footer {
  color: var(--ink);
  background: var(--cream);
}


/* FOOTER -- aqui ajusta a distancia do espaçamento entre as colunas e também a altura top e bottom do conteúdo do rodapé ---*/
.footer__grid {
  display: grid;
  padding: 28px 0 38px;
  grid-template-columns: 1fr 1fr 1.35fr 1fr;
  column-gap: 65px;
  row-gap: 30px;
}

.brand--footer {
  width: max-content;
}

/* FOOTER -- aqui muda o 'texto descrição' que tem abaixo da logo ----*/
.footer__brand p {
  max-width: 250px;
  margin: 24px 0;
  color: var(--muted);
  font-weight: 500; 
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--green-900);
  border-radius: 50%;
  transition: color .25s ease, background .25s ease, transform .25s var(--ease);
}

.socials a:hover {
  color: var(--green-950);
  background: var(--lime);
  transform: translateY(-3px);
}

.socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}


/* FOOTER -- aqui muda a configuração do TITULO das colunas ----*/
.footer h3 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

/* FOOTER -- aqui muda a configuração dos ITENS das colunas ----*/
.footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 5px;
  color: var(--muted);
  font-size: 16px;
  list-style: none;
}

.footer a {
  transition: color .2s ease;
}

.footer a:hover {
  color: var(--green-600);
}

.footer__contacts {
  overflow-wrap: anywhere;
}

.footer__bottom {
  color: rgba(255,255,255,.7);
  background: var(--green-950);
  font-size: 11px;
}

.footer__bottom .container {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 4px solid rgba(255,255,255,.85);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(17,120,56,.28);
  transition: transform .25s var(--ease), box-shadow .25s ease;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  box-shadow: 0 20px 45px rgba(17,120,56,.4);
  transform: translateY(-5px) scale(1.04);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.toast {
  position: fixed;
  z-index: 1300;
  right: 24px;
  bottom: 94px;
  max-width: 330px;
  padding: 13px 16px;
  opacity: 0;
  color: var(--white);
  background: var(--green-950);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-18px,0); }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 15px 35px rgba(17,120,56,.28), 0 0 0 0 rgba(37,211,102,.3); }
  50% { box-shadow: 0 15px 35px rgba(17,120,56,.28), 0 0 0 12px rgba(37,211,102,0); }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 78px;
  }

  .nav {
    gap: 18px;
  }

  .nav__link {
    font-size: 12px;
  }

  .button--header {
    display: none;
  }

  .hero__content {
    width: 64%;
  }

  .about__grid {
    gap: 50px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band__grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .cta-band__headline {
    grid-column: 1 / -1;
  }

  .footer__grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 35px;
  }
}

@media (max-width: 820px) {
  .topbar__email {
    display: none !important;
  }

  .header {
    top: 50px;
  }

  .header.is-sticky {
    top: 0;
  }

  .menu-toggle {
    z-index: 1002;
    display: grid;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(248,246,238,.98);
    transition: opacity .3s ease, visibility .3s ease;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .nav__link {
    padding: 13px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 30px;
  }

  .nav__link::after {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 740px;
  }

  .hero__inner {
    align-items: flex-end;
    padding-top: 160px;
    padding-bottom: 115px;
  }

  .hero__content {
    width: 100%;
    padding: 26px;
    color: var(--white);
    background: rgba(6,43,28,.72);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 24px;
    backdrop-filter: blur(12px);
  }

  .hero__title,
  .hero__text,
  .hero__text,
  .hero .eyebrow,
  .hero__media {
    inset: 0;
  }

  .hero__media::before {
    background: linear-gradient(180deg, rgba(6,43,28,.08), rgba(6,43,28,.34));
  }

  .hero__media img {
    object-position: 67% center;
  }

  .button--ghost {
    color: var(--white);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.24);
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-card + .trust-card {
    border-top: 1px solid rgba(255,255,255,.13);
    border-left: 0;
  }

  .about__grid,
  .outsourcing__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    gap: 55px;
  }

  .about__visual {
    order: -1;
  }

  .process__line {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
  }

  .process__line::before {
    display: none;
  }

  .outsourcing__grid {
    gap: 55px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

	
/* FAIXA ACIMA MENU DO TOPO VERSÃO MOBILE -- aqui muda o tamanho da fonte do numero do whatsapp ----*/	
  .topbar__contacts span {
    font-size: 14px;
  }

  .language {
    padding: 0 7px;
    font-size: 10px;
  }

  .brand__main {
    font-size: 29px;
  }

  .brand__accent {
    margin-left: 41px;
    font-size: 17px;
  }

  .header__inner {
    min-height: 72px;
  }

  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__inner {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .hero__content {
    padding: 22px;
  }

  .hero__title {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero__text {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .trust-card {
    min-height: 105px;
    padding: 21px;
  }


  .section {
    padding: 85px 0;
  }


  .section-title {
    font-size: 42px;
  }

  .about__metrics {
    width: calc(100% - 20px);
    margin-top: -30px;
  }

  .about__metrics div {
    min-height: 90px;
    padding: 12px 7px;
  }

  .about__metrics strong {
    font-size: 20px;
  }

  .about__metrics span {
    font-size: 8px;
  }

  .process__line {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    width: 100%;
  }

  .product-tab {
    min-width: 0;
    flex: 1;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__body > p:not(.product-card__category) {
    min-height: 0;
  }

  .outsourcing__visual {
    min-height: 390px;
  }

  .outsourcing__card {
    padding: 35px 28px;
  }

  .outsourcing__orb--one {
    width: 175px;
    height: 175px;
  }

  .outsourcing__orb--two {
    width: 135px;
    height: 135px;
  }

  .cta-band__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-option {
    padding: 0;
    border-left: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 42px;
  }

  .footer__bottom .container {
    min-height: 76px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .toast {
    right: 14px;
    bottom: 82px;
    left: 14px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* BANDEIRAS TOPO E REDES SOCIAIS --*/
.language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}
/*--// BANDEIRAS TOPO E REDES SOCIAIS --*/

/* SUBCATEGORIAS DA LINHA ATACADO -- filtro interno dos produtos */
.product-subtabs {
  display: flex;
  width: min(100%, 980px);
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -24px auto 42px;
  transition: opacity .3s ease, transform .3s var(--ease), margin .3s ease;
}

.product-subtabs[hidden],
.product-subtabs.is-hidden {
  display: none;
}


/* PRODUTOS - SUBCATEGORIAS DE ATACADO -- aqui muda o tamanho da fonte das subcategorias e outras configurações -----*/
.product-subtab {
  min-height: 42px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--green-800);
  background: rgba(248, 246, 238, .72);
  border: 1px solid rgba(8,57,35,.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.product-subtab:hover {
  color: var(--green-950);
  background: var(--lime-light);
  border-color: rgba(169,207,70,.75);
  transform: translateY(-2px);
}

.product-subtab.is-active {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
  box-shadow: 0 10px 24px rgba(8,57,35,.16);
}

.product-subtab:focus-visible {
  outline: 3px solid rgba(169,207,70,.85);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .product-subtabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: -24px auto 34px;
  }

  .product-subtab {
    min-height: 44px;
    padding: 0 10px;
    font-size: 11px;
  }

  .product-subtab[data-subfilter="todos"] {
    grid-column: 1 / -1;
  }
}


/* AJUSTES FINAIS - BANNER DESKTOP E MENU MOBILE
   Desktop: imagem do slider sem corte, respeitando 1920x700.
   Mobile: menu centralizado, sem desfoque, com botão de fechar visível. */

/* Desktop */
@media (min-width: 821px) {
  .hero.hero-carousel {
    height: auto;
    min-height: 0;
    padding-top: var(--header-height);
    background: var(--cream);
  }

  .hero.hero-carousel::after,
  .hero-carousel__slide::before,
  .hero-carousel__media::before,
  .hero__glow,
  .hero__decor {
    display: none !important;
  }

  .hero-carousel__viewport,
  .hero-carousel__track,
  .hero-carousel__slide {
    height: auto;
    min-height: 0;
  }

  .hero-carousel__media {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
  }

  .hero-carousel__media picture {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-carousel__media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1920px;
    aspect-ratio: 1920 / 700;
    object-fit: contain;
    object-position: center center;
    transform: none !important;
    translate: none !important;
    animation: none !important;
  }

  .hero-carousel__container,
  .hero-carousel__content {
    display: none !important;
  }

  .hero-carousel__arrow {
    top: calc(var(--header-height) + min(18.23vw, 350px));
  }

  .hero-carousel__dots {
    bottom: 24px;
  }

  .nav__close {
    display: none;
  }
}

/* Mobile / tablet */
@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .header {
    z-index: 1305;
  }

  body.menu-open::before {
    position: fixed;
    z-index: 1090;
    inset: 0;
    content: "";
    background: rgba(6, 43, 28, .32);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .menu-toggle {
    position: relative;
    z-index: 1320;
    display: grid;
  }

  .nav {
    position: fixed !important;
    z-index: 1310;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    display: grid !important;
    width: min(calc(100vw - 32px), 430px);
    max-height: calc(100dvh - 48px);
    align-content: start;
    justify-items: stretch;
    gap: 8px;
    padding: 62px 18px 22px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: var(--cream);
    border: 1px solid rgba(8, 57, 35, .14);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(6, 43, 28, .28);
    transform: translate(-50%, -50%) scale(.96);
    transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease);
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    cursor: pointer;
    color: var(--green-950);
    background: var(--white);
    border: 1px solid rgba(8, 57, 35, .14);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(6, 43, 28, .12);
  }

  .nav__close i {
    font-size: 20px;
    line-height: 1;
  }

  .nav__link {
    width: 100%;
    padding: 10px 12px;
    color: var(--green-950);
    text-align: center;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(8, 57, 35, .08);
    border-radius: 14px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(18px, 5.4vw, 23px);
    font-weight: 800;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link:hover,
  .nav__link.is-active {
    color: var(--green-950);
    background: rgba(169, 207, 70, .32);
  }

  .hero.hero-carousel {
    min-height: auto;
    padding-top: 0;
    background: var(--cream);
  }

  .hero.hero-carousel::after,
  .hero-carousel__slide::before,
  .hero-carousel__media::before,
  .hero__glow,
  .hero__decor {
    display: none !important;
  }

  .hero-carousel__viewport {
    min-height: auto;
  }

  .hero-carousel__slide {
    display: flex;
    height: auto;
    min-height: auto;
    flex-direction: column;
    background: var(--cream);
  }

	
  .hero-carousel__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(380px, 58vw, 430px);
    margin-top: 128px;
    order: 1;
    overflow: hidden;
    background: var(--green-950);
  }

  .hero-carousel__media picture,
  .hero-carousel__media img {
    width: 100%;
    height: 100%;
  }

  .hero-carousel__media img {
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    translate: none !important;
    animation: none !important;
  }

  .hero-carousel__container {
    display: block;
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 112px;
    order: 2;
  }

  .hero-carousel__content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    color: var(--ink);
    text-shadow: none;
  }

  .hero-carousel .hero__title,
  .hero-carousel .hero__text {
    color: var(--green-950);
    text-shadow: none;
  }

  .hero-carousel .hero__text {
    color: #425149;
  }

  .hero-carousel .eyebrow {
    color: var(--green-700);
    text-shadow: none;
  }

  .hero-carousel .button--ghost {
    color: var(--green-950);
    background: rgba(255, 255, 255, .7);
    border-color: rgba(8, 57, 35, .16);
  }

  .hero-carousel .button--ghost:hover {
    color: var(--green-950);
    background: var(--white);
    border-color: var(--white);
  }

  .hero-carousel__arrow {
    top: calc(128px + clamp(122px, 29vw, 215px));
    width: 46px;
    height: 46px;
  }

  .hero-carousel__arrow--prev {
    left: 14px;
  }

  .hero-carousel__arrow--next {
    right: 14px;
  }

  .hero-carousel__dots {
    bottom: 42px;
  }
}

@media (max-width: 600px) {
  .nav {
    width: min(calc(100vw - 24px), 390px);
    max-height: calc(100dvh - 32px);
    padding: 60px 14px 18px;
    border-radius: 22px;
  }

  .nav__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

	
/* SLIDER BANNER MOBILE -- aqui muda a altura do banner mobile ---*/
  .hero-carousel__media {
    height: clamp(320px, 58vw, 300px);
    margin-top: 122px;
  }

  .hero-carousel__container {
    padding-top: 26px;
    padding-bottom: 104px;
  }

  .hero-carousel .hero__title {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .hero-carousel .hero__actions {
    display: grid;
  }

  .hero-carousel .hero__actions .button {
    width: 100%;
  }

  .hero-carousel__arrow {
    top: calc(122px + clamp(110px, 29vw, 150px));
    width: 42px;
    height: 42px;
  }

  .hero-carousel__arrow i {
    font-size: 20px;
  }

  .hero-carousel__dots {
    bottom: 34px;
  }
}


/* CORREÇÃO MENU MOBILE CLICÁVEL
   Mantém o overlay abaixo do header/menu e reduz a fonte dos links. */
@media (max-width: 820px) {
  body.menu-open .header {
    z-index: 1305 !important;
  }

  body.menu-open::before {
    z-index: 1200 !important;
  }

  .nav {
    z-index: 1310 !important;
  }

  .nav.is-open {
    pointer-events: auto !important;
  }

  .nav__close {
    z-index: 1312 !important;
    pointer-events: auto !important;
  }

  .nav__link {
    position: relative;
    z-index: 1311;
    pointer-events: auto !important;
    padding: 10px 12px;
    font-size: clamp(18px, 5.4vw, 23px);
    line-height: 1.12;
  }

  .menu-toggle {
    z-index: 1320 !important;
  }
}

@media (max-width: 600px) {
  .nav__link {
    font-size: clamp(17px, 5.2vw, 21px);
    padding: 10px 11px;
  }
}


/* AJUSTE FINAL - POSIÇÃO DO MENU MOBILE
   Desce o painel do menu para não ficar cortado no topo e centraliza melhor na área visível. */
@media (max-width: 820px) {
  .nav {
    position: fixed !important;
    top: 58dvh !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) scale(.96) !important;
  }

  .nav.is-open {
    transform: translate(-50%, -50%) scale(1) !important;
  }
}

@media (max-width: 600px) {
  .nav {
    top: 56dvh !important;
  }
}

/* =========================================================
   ETAPAS — 6 ITENS COM IMAGENS
   Desktop: 4 itens na primeira linha e 2 centralizados abaixo.
   ========================================================= */
.process__line {
  --process-gap: 30px;
  --process-image-size: 170px;
  --process-image-half: 85px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  column-gap: var(--process-gap);
  row-gap: 64px;
}

.process__line::before {
  display: none;
}

.process-step {
  position: relative;
  z-index: 2;
  min-width: 0;
  text-align: center;
}

.process-step:nth-child(5) {
  grid-column: 2;
}

.process-step:nth-child(6) {
  grid-column: 3;
}

/* Linhas pontilhadas entre os itens de cada linha. */
.process-step:nth-child(2)::before,
.process-step:nth-child(3)::before,
.process-step:nth-child(4)::before,
.process-step:nth-child(6)::before {
  position: absolute;
  z-index: -1;
  top: var(--process-image-half);
  left: calc(-50% - var(--process-gap) + var(--process-image-half));
  width: calc(100% + var(--process-gap) - var(--process-image-size));
  height: 1px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    rgba(8, 57, 35, .22) 0 6px,
    transparent 6px 12px
  );
}

.process-step__number {
  top: -14px;
  right: calc(50% - 112px);
  z-index: 3;
  font-size: 42px;
}

.process-step__image {
  position: relative;
  display: grid;
  width: var(--process-image-size);
  height: var(--process-image-size);
  margin: 0 auto 24px;
  overflow: hidden;
  place-items: center;
  background: var(--cream);
  border: 7px solid rgba(248, 246, 238, .96);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(7, 47, 29, .14);
  transition: transform .35s var(--ease), box-shadow .35s ease;
}

.process-step__image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(8, 57, 35, .12);
  border-radius: inherit;
}

.process-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.process-step:hover .process-step__image {
  box-shadow: 0 22px 48px rgba(7, 47, 29, .19);
  transform: translateY(-7px);
}

.process-step:hover .process-step__image img {
  transform: scale(1.06);
}

.process-step h3 {
  margin-bottom: 9px;
}

.process-step p {
  max-width: 255px;
  margin-inline: auto;
}

@media (max-width: 820px) {
  .process__line {
    --process-image-size: 156px;
    --process-image-half: 78px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 56px;
  }

  .process-step:nth-child(5),
  .process-step:nth-child(6) {
    grid-column: auto;
  }

  .process-step::before {
    display: none !important;
  }

  .process-step__number {
    right: calc(50% - 104px);
  }
}

@media (max-width: 600px) {
  .process__line {
    --process-image-size: 150px;
    --process-image-half: 75px;
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .process-step__number {
    right: calc(50% - 100px);
  }

  .process-step p {
    max-width: 310px;
  }
}

