@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/open-sans-variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #4C9F0E;
  --lime: #7DBA2E;
  --orange: #E76607;
  --orange-light: #F58A2A;
  --ink: #343537;
  --gray: #5E6469;
  --gray-light: #A7ABB0;
  --paper: #F6F7F3;
  --white: #FFFFFF;
  --soft-green: #EAF2E3;
  --soft-orange: #FFF0E4;
  --soft-gray: #ECEDEA;
  --header-height: 86px;
  --shell: min(1180px, calc(100% - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 2200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--soft-gray);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
}

.site-header {
  position: fixed;
  z-index: 2000;
  top: 3px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--soft-gray);
  transition:
    transform .45s var(--ease),
    box-shadow .35s var(--ease);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 3px));
}

.site-header.is-scrolled {
  box-shadow: 0 12px 0 var(--soft-gray);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 132px;
  height: 66px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1;
  font-weight: 720;
  white-space: nowrap;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform .3s var(--ease),
    background .3s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--soft-green);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform .3s var(--ease),
    opacity .2s ease;
}

.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);
}

.fold {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
}

.section-shell {
  position: relative;
  z-index: 4;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 54px;
  display: flex;
  align-items: center;
}

.hero-title,
.section-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.055em;
}

.hero-title {
  font-size: clamp(46px, 5.1vw, 74px);
  line-height: .99;
}

.section-title {
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.01;
}

.hero-title span,
.section-title span {
  display: block;
  white-space: nowrap;
}

.mobile-line {
  display: none !important;
}

.accent-line {
  color: var(--orange);
}

.section-title-light {
  color: var(--white);
}

.hero-text,
.story-lead,
.story-body,
.product-lead,
.product-body,
.partnership-lead,
.find-text {
  text-wrap: pretty;
}

.hero-text {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--gray);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
  font-weight: 460;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform .35s var(--ease),
    background .3s ease,
    color .3s ease;
  will-change: transform;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s var(--ease);
}

.button:hover svg,
.button:focus-visible svg,
.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange);
  transform: translateY(-4px);
}

.button-secondary {
  color: var(--ink);
  background: var(--soft-green);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-4px);
}

.button-dark {
  width: fit-content;
  margin-top: 32px;
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--orange);
  transform: translateY(-4px);
}

.button-light {
  color: var(--green);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 780;
}

.text-link-light {
  color: var(--white);
}

.organic-shape,
.story-shape,
.product-shape,
.find-shape {
  position: absolute;
  pointer-events: none;
}

/* HERO */

.hero {
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  gap: clamp(50px, 6vw, 92px);
}

.hero-copy {
  max-width: 730px;
}

.hero-visual {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1.06;
  justify-self: end;
  transform-style: preserve-3d;
  transition: transform .45s var(--ease);
}

.product-stage {
  position: absolute;
  z-index: 4;
  inset: 7% 0 0 9%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product {
  width: min(77%, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(20px 28px 0 var(--soft-gray));
  animation: productFloat 5.2s ease-in-out infinite;
}

.hero-brand-card {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 5%;
  width: 158px;
  height: 158px;
  padding: 18px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%;
  box-shadow: 16px 16px 0 var(--orange-light);
  animation: brandFloat 6.4s ease-in-out infinite;
}

.hero-brand-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-halo {
  position: absolute;
  border-radius: 50%;
}

.hero-halo-one {
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  top: 5%;
  right: 2%;
  background: var(--soft-green);
}

.hero-halo-two {
  z-index: 2;
  width: 48%;
  aspect-ratio: 1;
  left: 1%;
  bottom: 4%;
  background: var(--soft-orange);
}

.hero-shape-green {
  width: 340px;
  height: 210px;
  right: -210px;
  top: 12%;
  background: var(--green);
  border-radius: 62% 38% 44% 56% / 52% 64% 36% 48%;
  animation: organicDriftOne 13s ease-in-out infinite;
}

.hero-shape-orange {
  width: 260px;
  height: 180px;
  left: -120px;
  bottom: 7%;
  background: var(--orange-light);
  border-radius: 38% 62% 66% 34% / 59% 45% 55% 41%;
  animation: organicDriftTwo 15s ease-in-out infinite;
}

.hero-shape-lime {
  width: 110px;
  height: 110px;
  left: 47%;
  top: 18%;
  background: var(--lime);
  border-radius: 46% 54% 62% 38% / 38% 50% 50% 62%;
  animation: organicDriftOne 10s ease-in-out infinite reverse;
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 760;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: cueMove 1.8s ease-in-out infinite;
}

/* HISTÓRIA */

.story {
  color: var(--white);
  background: var(--green);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(64px, 8vw, 128px);
}

.story-heading {
  max-width: 760px;
}

.story-content {
  max-width: 520px;
  padding: 48px;
  background: var(--white);
  color: var(--ink);
  border-radius: 38px 38px 74px 38px;
  box-shadow: 18px 18px 0 var(--lime);
}

.story-lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.55;
  font-weight: 690;
}

.story-body {
  margin: 22px 0 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

.story-signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.story-signature svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-shape-one {
  width: 230px;
  height: 150px;
  right: 3%;
  top: 8%;
  background: var(--orange-light);
  border-radius: 53% 47% 38% 62% / 58% 38% 62% 42%;
  animation: organicDriftTwo 16s ease-in-out infinite;
}

.story-shape-two {
  width: 160px;
  height: 160px;
  left: -50px;
  bottom: 7%;
  background: var(--lime);
  border-radius: 50% 50% 35% 65% / 38% 65% 35% 62%;
  animation: organicDriftOne 12s ease-in-out infinite;
}

/* PRODUTO */

.product {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(420px, .94fr) minmax(0, 1.06fr);
  gap: clamp(58px, 7vw, 110px);
}

.product-visual {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1 / 1.04;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform .45s var(--ease);
}

.product-visual img {
  position: relative;
  z-index: 4;
  width: min(78%, 390px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(18px 24px 0 var(--soft-gray));
  animation: productFloat 5.6s ease-in-out infinite;
}

.product-ring {
  position: absolute;
  border-radius: 50%;
}

.product-ring-one {
  width: 87%;
  aspect-ratio: 1;
  background: var(--soft-orange);
  animation: ringPulse 7s ease-in-out infinite;
}

.product-ring-two {
  width: 58%;
  aspect-ratio: 1;
  right: 0;
  bottom: 0;
  background: var(--soft-green);
  animation: ringPulse 7s ease-in-out infinite reverse;
}

.product-copy {
  max-width: 660px;
}

.product-lead {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.55;
  font-weight: 680;
}

.product-body {
  margin: 20px 0 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.72;
}

.product-shape-one {
  width: 240px;
  height: 150px;
  right: -60px;
  top: 12%;
  background: var(--orange-light);
  border-radius: 44% 56% 65% 35% / 48% 62% 38% 52%;
}

.product-shape-two {
  width: 120px;
  height: 120px;
  left: 7%;
  bottom: 9%;
  background: var(--lime);
  border-radius: 59% 41% 45% 55% / 42% 55% 45% 58%;
}

/* PARCERIAS */

.partnerships {
  background: var(--soft-green);
}

.partnership-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(58px, 7vw, 108px);
}

.partnership-copy {
  max-width: 600px;
}

.partnership-lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
}

.partnership-copy > .button,
.partnership-copy > .button-row {
  margin-top: clamp(34px, 3vw, 44px);
}

.partnership-interactive {
  display: grid;
  grid-template-columns: minmax(250px, .82fr) minmax(260px, 1.18fr);
  gap: 18px;
}

.partnership-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partnership-option {
  width: 100%;
  min-height: 88px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  color: var(--gray);
  text-align: left;
  background: var(--white);
  border: 0;
  border-radius: 24px;
  cursor: pointer;
  transition:
    transform .3s var(--ease),
    color .25s ease,
    background .25s ease;
}

.partnership-option:hover,
.partnership-option:focus-visible {
  transform: translateX(7px);
  color: var(--ink);
}

.partnership-option.is-active {
  color: var(--white);
  background: var(--green);
  transform: translateX(10px);
}

.partnership-option svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partnership-option span {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 780;
}

.partnership-panel {
  min-height: 290px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--ink);
  border-radius: 38px 38px 78px 38px;
  box-shadow: 16px 16px 0 var(--orange-light);
}

.partnership-panel-icon {
  width: 66px;
  height: 66px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.partnership-panel-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partnership-panel h3 {
  margin: 44px 0 0;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.partnership-panel p {
  margin: 16px 0 0;
  color: var(--soft-gray);
  font-size: 15px;
  line-height: 1.68;
}

/* ONDE COMPRAR */

.find {
  color: var(--white);
  background: var(--orange);
}

.find-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  grid-template-rows: 1fr;
  column-gap: 80px;
}

.find-copy {
  max-width: 800px;
}

.find-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.68;
}

.find-symbol {
  position: relative;
  width: 270px;
  height: 270px;
  justify-self: end;
  align-self: center;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border-radius: 46% 54% 62% 38% / 38% 51% 49% 62%;
  box-shadow: 18px 18px 0 var(--lime);
  animation: brandFloat 6s ease-in-out infinite;
}

.find-symbol > svg {
  position: relative;
  z-index: 2;
  width: 102px;
  height: 102px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.find-symbol-orbit {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 2px solid var(--soft-orange);
  border-radius: 50%;
  animation: orbitRotate 10s linear infinite;
}

.find-shape-one {
  width: 220px;
  height: 160px;
  left: -80px;
  top: 10%;
  background: var(--orange-light);
  border-radius: 61% 39% 48% 52% / 52% 64% 36% 48%;
}

.find-shape-two {
  width: 160px;
  height: 120px;
  right: -50px;
  bottom: 17%;
  background: var(--green);
  border-radius: 42% 58% 61% 39% / 58% 40% 60% 42%;
}

/* REVEALS */

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}

.reveal-delay {
  transition-delay: .14s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMAÇÕES */

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes organicDriftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  50% {
    transform: translate3d(-18px, 14px, 0) rotate(7deg);
  }
}

@keyframes organicDriftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  50% {
    transform: translate3d(22px, -12px, 0) rotate(-8deg);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes cueMove {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes orbitRotate {
  to {
    transform: rotate(360deg);
  }
}

/* DESKTOP */

@media (min-width: 981px) {
  .fold:not(.hero) {
    min-height: auto;
  }

  .fold:not(.hero) .section-shell {
    min-height: clamp(600px, 72svh, 760px);
    padding-top: clamp(92px, 7vw, 110px);
    padding-bottom: clamp(48px, 5vw, 64px);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(calc(100% - 48px), 1080px);
  }

  .header-inner {
    grid-template-columns: 142px 1fr auto;
    gap: 22px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-grid,
  .story-grid,
  .product-grid,
  .partnership-grid {
    gap: 52px;
  }

  .partnership-grid {
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
  }
}

/* TABLET */

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
    --shell: min(calc(100% - 36px), 820px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 116px;
    height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  body.menu-open .site-header {
    transform: none !important;
  }

  .main-nav {
    position: fixed;
    z-index: 1900;
    inset: calc(var(--header-height) + 3px) 0 0;
    width: 100%;
    height: calc(100vh - var(--header-height) - 3px);
    height: calc(100dvh - var(--header-height) - 3px);
    max-width: none;
    margin: 0;
    padding: 28px 24px max(42px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity .28s ease,
      transform .42s var(--ease),
      visibility 0s linear .42s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav a {
    width: min(100%, 430px);
    min-height: 68px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    text-align: center;
    background: var(--soft-green);
    border-radius: 24px;
    font-size: 18px;
  }

  .main-nav a::after {
    display: none;
  }

  .fold,
  .section-shell {
    min-height: auto;
  }

  .section-shell {
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 72px;
  }

  .hero-grid,
  .story-grid,
  .product-grid,
  .partnership-grid,
  .find-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-bottom: 90px;
  }

  .hero-copy,
  .story-heading,
  .story-content,
  .product-copy,
  .partnership-copy,
  .find-copy {
    max-width: 100%;
  }

  .hero-visual {
    width: min(100%, 570px);
    justify-self: center;
  }

  .story-content {
    width: min(100%, 620px);
  }

  .product-visual {
    width: min(100%, 560px);
    justify-self: center;
    order: 2;
  }

  .product-copy {
    order: 1;
  }

  .partnership-grid {
    gap: 46px;
  }

  .partnership-interactive {
    grid-template-columns: 1fr 1.08fr;
  }

  .find-shell {
    grid-template-rows: auto auto;
    gap: 48px;
  }

  .find-symbol {
    justify-self: start;
  }

  .scroll-cue {
    display: none;
  }
}

/* MOBILE */

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .site-header.is-scrolled {
    box-shadow: 0 8px 0 var(--soft-gray);
  }

  .section-shell {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 58px;
  }

  .hero-title {
    font-size: clamp(38px, 11.7vw, 55px);
    line-height: 1.01;
  }

  .section-title {
    font-size: clamp(35px, 10.2vw, 50px);
    line-height: 1.04;
  }

  .desktop-line {
    display: none !important;
  }

  .mobile-line {
    display: block !important;
  }

  .hero-text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.64;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    aspect-ratio: 1 / 1.12;
  }

  .hero-product {
    width: 74%;
    filter: drop-shadow(12px 18px 0 var(--soft-gray));
  }

  .hero-brand-card {
    width: 112px;
    height: 112px;
    padding: 13px;
    right: 2%;
    bottom: 2%;
    box-shadow: 10px 10px 0 var(--orange-light);
  }

  .hero-shape-green {
    width: 220px;
    height: 145px;
    right: -210px;
    top: 13%;
  }

  .hero-shape-orange {
    width: 190px;
    height: 130px;
    left: -105px;
  }

  .hero-shape-lime {
    width: 70px;
    height: 70px;
    left: 76%;
    top: 30%;
  }

  .story-grid,
  .product-grid,
  .partnership-grid {
    gap: 38px;
  }

  .story-content {
    padding: 30px 25px;
    border-radius: 28px 28px 58px 28px;
    box-shadow: 10px 10px 0 var(--lime);
  }

  .story-lead,
  .product-lead {
    font-size: 18px;
  }

  .story-body,
  .product-body,
  .partnership-lead,
  .find-text {
    font-size: 15px;
  }

  .product-visual {
    aspect-ratio: 1 / 1.08;
  }

  .product-visual img {
    width: 76%;
    filter: drop-shadow(12px 18px 0 var(--soft-gray));
  }

  .partnership-interactive {
    grid-template-columns: 1fr;
  }

  .partnership-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .partnership-option {
    min-height: 76px;
  }

  .partnership-option.is-active,
  .partnership-option:hover,
  .partnership-option:focus-visible {
    transform: none;
  }

  .partnership-panel {
    min-height: 270px;
    padding: 30px 25px;
    border-radius: 30px 30px 62px 30px;
    box-shadow: 10px 10px 0 var(--orange-light);
  }

  .find-symbol {
    width: 210px;
    height: 210px;
    box-shadow: 10px 10px 0 var(--lime);
  }

  .find-symbol > svg {
    width: 78px;
    height: 78px;
  }

  .story-shape-one,
  .product-shape-one,
  .find-shape-two {
    right: -100px;
  }

  .hero .section-shell {
    width: calc(100% - 44px);
  }

  .hero-title .mobile-line:not(.accent-line) {
    font-size: clamp(31px, 8.9vw, 38px);
    line-height: 1.06;
    letter-spacing: -.065em;
  }

  .hero-grid {
    gap: 12px;
    padding-bottom: 54px;
  }

  .hero-visual {
    aspect-ratio: 1 / 1.02;
    margin-top: -8px;
  }

  .product-stage {
    inset: 0 8% 0 -6%;
  }

  .hero-brand-card {
    top: 46%;
    right: 0;
    bottom: auto;
    width: 104px;
    height: 104px;
    padding: 12px;
  }

  .partnership-copy > .button,
  .partnership-copy > .button-row {
    margin-top: 34px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 33px;
  }

  .hero-brand-card {
    width: 98px;
    height: 98px;
  }
}

@media (min-width: 1181px) {
  .story-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(430px, .85fr);
    gap: clamp(42px, 4vw, 72px);
  }

  .story .section-title {
    font-size: clamp(42px, 3.45vw, 56px);
  }

  .partnership-grid {
    grid-template-columns: minmax(0, 1fr) minmax(540px, 1fr);
    gap: clamp(40px, 4vw, 70px);
  }

  .partnerships .section-title {
    font-size: clamp(42px, 3.35vw, 54px);
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .story-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .story-content {
    width: min(100%, 620px);
  }

  .partnership-interactive {
    width: min(100%, 780px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==================================================
   RODAPÉ GLOBAL DELTA DISTRIBUIDORA
   ================================================== */

.site-footer {
  position: relative;
  z-index: 10;
  display: block;
  grid-column: auto;
  align-self: auto;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background: #063f24;
  border: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: inherit;
  overflow: hidden;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer .footer-brand {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: block;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-footer .footer-brand img {
  display: block;
  max-width: 100%;
}

.footer-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-main {
  position: relative;
  display: block;
  padding: 68px 0 58px;
  background: #063f24;
  border-top: 10px solid #4c9f0e;
}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(250px, 1.2fr)
    minmax(170px, .7fr)
    minmax(230px, .9fr)
    minmax(230px, .9fr);
  align-items: start;
  gap: clamp(36px, 5vw, 72px);
}

.footer-grid > * {
  min-width: 0;
}

.footer-logo {
  width: 138px;
  height: 92px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 14px;
  transition:
    transform .3s cubic-bezier(.22, 1, .36, 1),
    background .3s ease;
}

.footer-logo:hover,
.footer-logo:focus-visible {
  background: #f4f0df;
  transform: translateY(-4px);
}

.footer-logo img {
  width: 116px;
  height: 76px;
  object-fit: contain;
}

.site-footer .footer-brand > p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
}

.footer-social {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #063f24;
  background: #ffffff;
  border-radius: 12px;
  transition:
    color .3s ease,
    background .3s ease,
    transform .3s cubic-bezier(.22, 1, .36, 1);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #ffffff;
  background: #e76607;
  transform: translateY(-4px);
}

.footer-social-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-navigation h2,
.footer-company h2,
.footer-action h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .02em;
}

.footer-navigation ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.footer-navigation li {
  margin: 0;
  padding: 0;
}

.footer-navigation a {
  position: relative;
  width: fit-content;
  display: inline-flex;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  transition:
    color .25s ease,
    transform .25s ease;
}

.footer-navigation a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: -17px;
  width: 7px;
  height: 4px;
  background: #7dba2e;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
  color: #7dba2e;
  transform: translateX(8px);
}

.footer-navigation a:hover::before,
.footer-navigation a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-company-data {
  display: grid;
  gap: 18px;
}

.footer-company-data div {
  display: grid;
  gap: 5px;
}

.footer-company-data span {
  color: #7dba2e;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-company-data strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.footer-action > p {
  max-width: 290px;
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.65;
}

.footer-button {
  width: fit-content;
  min-height: 50px;
  margin-top: 23px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #063f24;
  background: #7dba2e;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  transition:
    color .3s ease,
    background .3s ease,
    transform .3s cubic-bezier(.22, 1, .36, 1);
}

.footer-button:hover,
.footer-button:focus-visible {
  color: #ffffff;
  background: #e76607;
  transform: translateY(-4px);
}

.footer-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.footer-button:hover svg,
.footer-button:focus-visible svg {
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  display: block;
  width: 100%;
  color: #ffffff;
  background: #032d1a;
  border-top: 1px solid #4c9f0e;
}

.footer-bottom-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.5;
}

.footer-bottom a {
  font-weight: 700;
  transition: color .25s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #7dba2e;
}

/* RODAPÉ TABLET */

@media (max-width: 980px) {
  .footer-shell {
    width: min(820px, calc(100% - 40px));
  }

  .footer-main {
    padding: 58px 0 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 60px;
  }
}

/* RODAPÉ MOBILE */

@media (max-width: 680px) {
  .footer-shell {
    width: calc(100% - 32px);
  }

  .footer-main {
    padding: 48px 0 42px;
    border-top-width: 7px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer .footer-brand {
    display: grid;
    justify-items: start;
  }

  .footer-logo {
    width: 130px;
    height: 86px;
  }

  .footer-logo img {
    width: 108px;
    height: 70px;
  }

  .site-footer .footer-brand > p {
    margin-top: 21px;
    font-size: 14px;
  }

  .footer-navigation h2,
  .footer-company h2,
  .footer-action h2 {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .footer-navigation ul {
    gap: 10px;
  }

  .footer-navigation a {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    align-items: center;
    color: #063f24;
    background: #ffffff;
    border-radius: 10px;
  }

  .footer-navigation a::before {
    display: none;
  }

  .footer-navigation a:hover,
  .footer-navigation a:focus-visible {
    color: #063f24;
    background: #7dba2e;
    transform: none;
  }

  .footer-company-data {
    gap: 14px;
  }

  .footer-company-data div {
    padding: 15px;
    background: #032d1a;
    border-radius: 10px;
  }

  .footer-action > p {
    max-width: none;
    font-size: 14px;
  }

  .footer-button {
    width: 100%;
    min-height: 54px;
  }

  .footer-bottom-inner {
    min-height: 94px;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }
}
/* ==================================================
   MODAL DE CONTATO DELTA
   ================================================== */

body.delta-contact-open {
  overflow: hidden;
}

.delta-contact-modal {
  position: fixed;
  z-index: 2800;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .3s ease,
    visibility 0s linear .3s;
}

.delta-contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.delta-contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 31, 23, .78);
  backdrop-filter: blur(7px);
}

.delta-contact-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 850px);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-columns:
    minmax(270px, .8fr)
    minmax(390px, 1.2fr);
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: 30px;
  box-shadow: 18px 18px 0 var(--orange-light);
  transform: translateY(28px) scale(.97);
  transition: transform .42s var(--ease);
}

.delta-contact-modal.is-open .delta-contact-panel {
  transform: translateY(0) scale(1);
}

.delta-contact-close {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--soft-green);
  border: 0;
  border-radius: 50%;
  transition:
    color .25s ease,
    background .25s ease,
    transform .3s var(--ease);
}

.delta-contact-close:hover,
.delta-contact-close:focus-visible {
  color: var(--white);
  background: var(--orange);
  transform: rotate(5deg);
}

.delta-contact-close span {
  position: absolute;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.delta-contact-close span:first-child {
  transform: rotate(45deg);
}

.delta-contact-close span:last-child {
  transform: rotate(-45deg);
}

.delta-contact-intro {
  min-height: 100%;
  padding: 52px 38px 40px;
  color: var(--white);
  background: var(--green);
}

.delta-contact-label {
  display: inline-block;
  color: var(--soft-green);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.delta-contact-intro h2 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(35px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: -.05em;
}

.delta-contact-intro > p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.68;
}

.delta-contact-details {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.delta-contact-details article {
  padding: 17px;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
}

.delta-contact-details strong,
.delta-contact-details span {
  display: block;
}

.delta-contact-details strong {
  color: var(--green);
  font-size: 13px;
  line-height: 1.3;
}

.delta-contact-details span {
  margin-top: 6px;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.5;
}

.delta-contact-form {
  padding: 52px 42px 36px;
  background: var(--white);
}

.delta-contact-form-heading > span {
  color: var(--orange);
  font-size: 10px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delta-contact-form-heading h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.delta-contact-form-grid {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.delta-contact-field {
  display: grid;
  gap: 6px;
}

.delta-contact-field > span {
  color: var(--ink);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 750;
}

.delta-contact-field input,
.delta-contact-field select {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--soft-gray);
  border-radius: 10px;
  outline: none;
  font-size: 12px;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.delta-contact-field input::placeholder {
  color: var(--gray-light);
}

.delta-contact-field input:focus,
.delta-contact-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(76, 159, 14, .14);
}

.delta-contact-field input[aria-invalid="true"],
.delta-contact-field select[aria-invalid="true"] {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(231, 102, 7, .12);
}

.delta-contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.delta-contact-consent {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
  cursor: pointer;
}

.delta-contact-consent input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--green);
}

.delta-contact-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
  transition:
    background .3s ease,
    transform .3s var(--ease);
}

.delta-contact-submit:hover,
.delta-contact-submit:focus-visible {
  background: var(--orange);
  transform: translateY(-3px);
}

.delta-contact-submit:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.delta-contact-submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delta-contact-status {
  min-height: 16px;
  margin: 9px 0 0;
  color: var(--gray);
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
}

.delta-contact-status.is-success {
  color: var(--green);
  font-weight: 700;
}

.delta-contact-status.is-error {
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 760px) {
  .delta-contact-modal {
    padding: 14px;
    align-items: start;
    overflow-y: auto;
  }

  .delta-contact-panel {
    width: 100%;
    max-height: none;
    margin: 14px 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
    box-shadow: 10px 10px 0 var(--orange-light);
  }

  .delta-contact-intro {
    min-height: auto;
    padding: 44px 23px 28px;
  }

  .delta-contact-intro h2 {
    font-size: 37px;
  }

  .delta-contact-details {
    margin-top: 25px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delta-contact-form {
    padding: 30px 23px 25px;
  }

  .delta-contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .delta-contact-details {
    grid-template-columns: 1fr;
  }

  .delta-contact-close {
    top: 12px;
    right: 12px;
  }

  .delta-contact-field input,
  .delta-contact-field select {
    min-height: 48px;
    font-size: 13px;
  }

  .delta-contact-submit {
    min-height: 54px;
    font-size: 13px;
  }
}