@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;
}

@font-face {
  font-family: "Agency FB";
  src: url("assets/AGENCYB.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #279700;
  --green-medium: #137b2f;
  --green-bright: #39b600;
  --green-dark: #075f27;
  --green-deep: #003f20;

  --cream: #f5f0dc;
  --cream-dark: #ddd3b7;
  --white: #ffffff;

  --brown: #70482c;
  --brown-dark: #382419;

  --black: #171914;
  --gray: #5f645c;
  --gray-light: #92978e;

  --header-height: 84px;
  --shell: min(1180px, calc(100% - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  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;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-160%);
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 2400;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cream-dark);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green-bright);
}

.site-header {
  position: fixed;
  z-index: 2300;
  top: 4px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  transition:
    transform .42s var(--ease),
    box-shadow .3s ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 4px));
}

.site-header.is-scrolled {
  box-shadow: 0 6px 0 var(--green-dark);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 30px;
}

.delta-brand {
  width: 112px;
  height: 62px;
  display: flex;
  align-items: center;
  transition:
    transform .3s var(--ease),
    opacity .3s ease;
}

.delta-brand:hover,
.delta-brand:focus-visible {
  transform: translateY(-3px);
  opacity: .88;
}

.delta-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  transition:
    transform .3s var(--ease),
    background .3s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--black);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: var(--green-dark);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--white);
  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);
}

.hero,
.section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
}

.section {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}

.section-shell {
  position: relative;
  z-index: 5;
  width: var(--shell);
  margin: 0 auto;
  padding-top: clamp(42px, 6vh, 68px);
  padding-bottom: clamp(42px, 6vh, 68px);
}

.section-title {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 3.7vw, 58px);
  line-height: 1.02;
  font-weight: 840;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.section-title span {
  display: block;
  color: var(--green-dark);
}

.section-title-light {
  color: var(--white);
}

.section-title-light span {
  color: var(--green-bright);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 4vh, 44px);
}

.section-description {
  max-width: 720px;
  margin: 17px 0 0;
  color: var(--gray);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  text-wrap: pretty;
}

.button-row,
.hero-actions {
  margin-top: clamp(24px, 3.8vh, 34px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  transition:
    transform .32s var(--ease),
    color .3s ease,
    background .3s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  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 {
  transform: translateX(4px);
}

.button-b2c,
.button-primary {
  color: var(--green-deep);
  background: var(--cream);
}

.button-b2c:hover,
.button-b2c:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--black);
  transform: translateY(-3px);
}

.button-b2b,
.button-secondary {
  color: var(--white);
  background: var(--green-dark);
}

.button-b2b:hover,
.button-b2b:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--green-deep);
  background: var(--white);
  transform: translateY(-3px);
}

.button-light {
  color: var(--green-deep);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--brown);
  transform: translateY(-3px);
}

.button-black {
  color: var(--white);
  background: var(--black);
}

.button-black:hover,
.button-black:focus-visible {
  color: var(--green-deep);
  background: var(--cream);
  transform: translateY(-3px);
}

/* HERO */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.hero-shell {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(30px, 5vh, 56px));
  padding-bottom: clamp(78px, 10vh, 104px);
  display: flex;
  align-items: center;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .87fr);
  align-items: center;
  gap: clamp(50px, 6vw, 96px);
}

.hero-copy {
  width: 100%;
  max-width: 700px;
}

.product-category {
  width: fit-content;
  margin: 0 0 clamp(24px, 3.5vh, 36px);
  padding: 10px 15px;
  color: var(--green-deep);
  background: var(--cream);
  font-size: 11px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-logo {
  width: min(100%, 590px);
  max-height: 185px;
  object-fit: contain;
  object-position: left center;
}

.hero-description {
  max-width: 650px;
  margin: clamp(24px, 3.6vh, 34px) 0 0;
  color: var(--white);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-facts {
  margin-top: clamp(24px, 4vh, 34px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-fact {
  min-height: 104px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-fact strong {
  font-family: "Agency FB", "Open Sans", sans-serif;
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.hero-fact span {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
}

.hero-fact-cream {
  color: var(--green-deep);
  background: var(--cream);
}

.hero-fact-deep {
  color: var(--white);
  background: var(--green-deep);
}

.hero-fact-dark {
  color: var(--white);
  background: var(--black);
}

.hero-product-area {
  position: relative;
  width: min(100%, 560px);
  height: min(62vh, 540px);
  min-height: 430px;
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  background: var(--cream);
  border: 10px solid var(--green-dark);
  transform-style: preserve-3d;
  transition: transform .45s var(--ease);
}

.hero-product-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-stage::after {
  content: "";
  position: absolute;
  width: 54%;
  height: 54%;
  right: 9%;
  bottom: 7%;
  background: var(--brown);
  z-index: 1;
}

.hero-product {
  position: relative;
  z-index: 3;
  width: min(78%, 390px);
  max-height: 84%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(12px 17px 0 var(--brown-dark));
  animation: productFloat 5.5s ease-in-out infinite;
}

.hero-label-column {
  position: relative;
  z-index: 6;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--green-deep);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-label-column span {
  font-size: 10px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-volume {
  position: absolute;
  z-index: 8;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 11px 14px;
  color: var(--white);
  background: var(--black);
}

.hero-volume strong {
  font-family: "Agency FB", "Open Sans", sans-serif;
  font-size: 38px;
  line-height: .8;
}

.hero-volume span {
  font-size: 12px;
  font-weight: 800;
}

.hero-bottom-band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 56px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--green-deep);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* BENEFÍCIOS */

.benefits {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  min-height: clamp(240px, 34vh, 300px);
  padding: clamp(22px, 2.5vw, 29px);
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--cream);
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--black);
  font-size: clamp(19px, 1.75vw, 24px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.benefit-card p {
  margin: 13px 0 0;
  color: var(--gray);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.62;
}

.benefit-card-dark {
  color: var(--white);
  background: var(--black);
}

.benefit-card-dark .benefit-icon {
  color: var(--green-bright);
  background: var(--green-deep);
}

.benefit-card-dark h3,
.benefit-card-dark p {
  color: var(--white);
}

.benefit-card-green {
  color: var(--white);
  background: var(--green-dark);
}

.benefit-card-green .benefit-icon {
  color: var(--green-deep);
  background: var(--cream);
}

.benefit-card-green h3,
.benefit-card-green p {
  color: var(--white);
}

/* PRODUTO */

.product-section {
  color: var(--white);
  background: var(--green-deep);
}

.product-side-label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  background: var(--cream);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.product-side-label span {
  font-family: "Agency FB", "Open Sans", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
}

.product-section .section-shell {
  padding-left: 48px;
}

.product-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(380px, .82fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 7vw, 105px);
}

.product-composition {
  position: relative;
  width: min(100%, 500px);
  height: min(61vh, 510px);
  min-height: 400px;
  overflow: hidden;
  background: var(--cream);
}

.product-green-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: var(--green);
}

.product-yam {
  position: absolute;
  z-index: 2;
  width: 88%;
  max-height: 86%;
  height: auto;
  left: 50%;
  bottom: 3%;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(13px 18px 0 var(--brown));
}

.product-copy {
  max-width: 680px;
}

.product-introduction {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}

.nutrition-grid {
  margin-top: clamp(24px, 3.8vh, 34px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nutrition-card {
  min-height: clamp(112px, 17vh, 140px);
  padding: 19px;
  background: #044b27;
}

.nutrition-card:nth-child(2),
.nutrition-card:nth-child(3) {
  background: #075b2d;
}

.nutrition-card strong {
  color: var(--cream);
  font-family: "Agency FB", "Open Sans", sans-serif;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.nutrition-card p {
  margin: 9px 0 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.5;
}

/* MODO DE USO */

.usage {
  background: var(--white);
}

.usage-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(270px, .55fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(45px, 6vw, 86px);
}

.usage-heading p {
  max-width: 370px;
  margin: 19px 0 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}

.usage-list {
  display: grid;
  gap: 10px;
}

.usage-item {
  min-height: clamp(108px, 16vh, 138px);
  padding: 20px;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 19px;
  background: var(--cream);
}

.usage-item-number {
  color: var(--green);
  font-family: "Agency FB", "Open Sans", sans-serif;
  font-size: 51px;
  line-height: 1;
}

.usage-item h3 {
  margin: 0;
  color: var(--black);
  font-size: 21px;
  line-height: 1.2;
}

.usage-item p {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.55;
}

.warning-panel {
  grid-column: 1 / -1;
  margin-top: 13px;
  padding: 23px 26px;
  display: grid;
  grid-template-columns: minmax(210px, .48fr) 1fr;
  align-items: center;
  gap: 30px;
  color: var(--white);
  background: var(--black);
  border-left: 10px solid var(--green-bright);
}

.warning-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.warning-heading svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--green-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.warning-heading h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.warning-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  list-style: none;
}

.warning-panel li {
  position: relative;
  padding-left: 17px;
  font-size: 12px;
  line-height: 1.5;
}

.warning-panel li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green-bright);
}

/* COMERCIAL */

.commercial {
  background: var(--cream);
}

.commercial-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, .58fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.commercial-copy {
  max-width: 720px;
}

.commercial-description {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--gray);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
  text-wrap: pretty;
}

.commercial-list {
  margin-top: clamp(24px, 3.5vh, 32px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.commercial-list article {
  min-height: 130px;
  padding: 18px;
  background: var(--white);
  border-top: 5px solid var(--green-dark);
}

.commercial-list strong,
.commercial-list span {
  display: block;
}

.commercial-list strong {
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.3;
}

.commercial-list span {
  margin-top: 9px;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.5;
}

.representative-form {
  width: 100%;
  max-width: 420px;
  padding: 24px;
  color: var(--white);
  background: var(--green-deep);
  border-top: 8px solid var(--green-bright);
}

.form-heading > span {
  color: var(--green-bright);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 7px 0 0;
  font-size: 26px;
  line-height: 1.08;
}

.form-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-field {
  display: grid;
  gap: 5px;
}

.form-field > span {
  color: var(--white);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--black);
  background: var(--white);
  border: 0;
  border-radius: 0;
  outline: none;
  font-size: 12px;
}

.form-field input::placeholder {
  color: var(--gray-light);
}

.form-field input:focus,
.form-field select:focus {
  box-shadow: inset 0 -4px 0 var(--green-bright);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  box-shadow: inset 0 -4px 0 var(--cream-dark);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 8px;
  color: var(--white);
  font-size: 10px;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--green-bright);
}

.form-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green-deep);
  background: var(--green-bright);
  border: 0;
  font-size: 12px;
  font-weight: 820;
  transition:
    background .3s ease,
    transform .3s var(--ease);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--cream);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.form-submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-status {
  min-height: 15px;
  margin: 8px 0 0;
  color: var(--white);
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}

.form-status.is-success {
  color: var(--green-bright);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--cream);
  font-weight: 700;
}

/* COMPRA */

.buy-section {
  color: var(--white);
  background: var(--green-dark);
}

.buy-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.buy-copy {
  max-width: 760px;
}

.buy-label {
  display: inline-block;
  margin-bottom: 15px;
  padding: 9px 12px;
  color: var(--green-deep);
  background: var(--cream);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.buy-copy > p {
  max-width: 630px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
}

.buy-product {
  position: relative;
  width: 100%;
  height: min(57vh, 470px);
  min-height: 370px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  background: var(--cream);
  border: 9px solid var(--green-bright);
}

.buy-product-label {
  grid-column: 2;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--black);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.buy-product-label span {
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.buy-product img {
  position: absolute;
  z-index: 2;
  width: min(72%, 330px);
  max-height: 88%;
  height: auto;
  top: 6%;
  left: 8%;
  object-fit: contain;
  filter: drop-shadow(12px 17px 0 var(--brown));
  animation: productFloat 5.7s ease-in-out infinite;
}

/* REVEALS */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease);
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-11px);
  }
}

/* TELAS MAIS BAIXAS */

@media (max-height: 760px) and (min-width: 981px) {
  :root {
    --header-height: 76px;
  }

  .section-shell {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 25px);
    padding-bottom: 72px;
  }

  .product-logo {
    width: min(100%, 500px);
    max-height: 145px;
  }

  .hero-description {
    margin-top: 18px;
  }

  .hero-facts {
    margin-top: 20px;
  }

  .hero-fact {
    min-height: 85px;
    padding: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-product-area {
    height: min(59vh, 445px);
    min-height: 350px;
  }

  .benefit-card {
    min-height: 220px;
  }

  .product-composition {
    height: min(57vh, 430px);
    min-height: 340px;
  }

  .nutrition-card {
    min-height: 100px;
  }

  .usage-item {
    min-height: 92px;
  }

  .commercial-list article {
    min-height: 100px;
  }

  .buy-product {
    height: min(54vh, 410px);
    min-height: 325px;
  }
}

/* TABLET */

@media (max-width: 1120px) {
  :root {
    --shell: min(1040px, calc(100% - 44px));
  }

  .header-inner {
    grid-template-columns: 125px 1fr auto;
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
    gap: 36px;
  }

  .product-logo {
    width: min(100%, 500px);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-list {
    grid-template-columns: 1fr;
  }

  .commercial-list article {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
    --shell: min(820px, calc(100% - 36px));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .delta-brand {
    width: 105px;
    height: 56px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  body.menu-open .site-header {
    transform: none !important;
  }

  .main-nav {
    position: fixed;
    z-index: 2200;
    inset: calc(var(--header-height) + 4px) 0 0;
    width: 100%;
    height: calc(100dvh - var(--header-height) - 4px);
    padding: 26px 22px max(38px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    overflow-y: auto;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity .28s ease,
      transform .4s var(--ease),
      visibility 0s linear .4s;
  }

  .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: 62px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background: var(--green-dark);
    font-size: 16px;
  }

  .main-nav a::after {
    display: none;
  }

  .section {
    min-height: auto;
  }

  .section-shell {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 108px;
  }

  .hero-grid,
  .product-grid,
  .usage-grid,
  .commercial-grid,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-area,
  .product-composition,
  .buy-product {
    justify-self: center;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-logo {
    width: min(100%, 600px);
  }

  .hero-product-area {
    width: min(100%, 610px);
    height: 540px;
    margin-top: 8px;
  }

  .product-side-label {
    display: none;
  }

  .product-section .section-shell {
    padding-left: 0;
  }

  .product-composition {
    order: 2;
    width: min(100%, 580px);
    height: 500px;
  }

  .product-copy {
    order: 1;
    max-width: 760px;
  }

  .usage-grid {
    gap: 38px;
  }

  .warning-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .commercial-grid {
    gap: 44px;
  }

  .commercial-copy {
    max-width: 760px;
  }

  .representative-form {
    max-width: 520px;
  }

  .buy-product {
    width: min(100%, 540px);
    height: 480px;
  }
}

/* MOBILE */

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header.is-scrolled {
    box-shadow: 0 5px 0 var(--green-dark);
  }

  .section-shell {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-title {
    font-size: clamp(34px, 10.5vw, 45px);
    line-height: 1.04;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-description {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 96px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .product-category {
    margin-bottom: 25px;
    padding: 9px 12px;
    font-size: 10px;
  }

  .product-logo {
    width: 100%;
    max-height: 155px;
    object-position: left center;
  }

  .hero-description {
    margin-top: 25px;
    max-width: none;
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-facts {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-fact {
    min-height: 94px;
    padding: 17px 19px;
  }

  .hero-fact strong {
    font-size: 32px;
  }

  .hero-fact span {
    margin-top: 7px;
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 19px;
    font-size: 13px;
  }

  .hero-product-area {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 0;
    grid-template-columns: minmax(0, 1fr) 68px;
    aspect-ratio: 1 / .9;
    border-width: 7px;
  }

  .hero-product-stage {
    min-height: 0;
  }

  .hero-product-stage::after {
    width: 52%;
    height: 48%;
    right: 8%;
    bottom: 9%;
  }

  .hero-product {
    width: 80%;
    max-height: 84%;
    filter: drop-shadow(9px 12px 0 var(--brown-dark));
  }

  .hero-label-column {
    padding: 14px 9px;
  }

  .hero-label-column span {
    font-size: 8px;
  }

  .hero-volume {
    left: 12px;
    bottom: 12px;
    padding: 9px 11px;
  }

  .hero-volume strong {
    font-size: 31px;
  }

  .hero-volume span {
    font-size: 10px;
  }

  .hero-bottom-band {
    min-height: 48px;
    justify-content: center;
    padding: 0 18px;
    font-size: 9px;
  }

  .hero-bottom-band span:not(:first-child) {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .benefit-card h3 {
    margin-top: 30px;
    padding-top: 0;
    font-size: 22px;
  }

  .benefit-card p {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.6;
  }

  .product-grid {
    gap: 38px;
  }

  .product-composition {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / .92;
  }

  .product-green-block {
    width: 30%;
  }

  .product-yam {
    width: 90%;
    max-height: 83%;
    bottom: 5%;
    filter: drop-shadow(9px 12px 0 var(--brown));
  }

  .product-introduction {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }

  .nutrition-grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .nutrition-card {
    min-height: 105px;
    padding: 18px;
  }

  .nutrition-card strong {
    font-size: 35px;
  }

  .nutrition-card p {
    margin-top: 7px;
    font-size: 12px;
  }

  .usage-grid {
    gap: 32px;
  }

  .usage-heading p {
    margin-top: 14px;
    font-size: 15px;
  }

  .usage-list {
    gap: 9px;
  }

  .usage-item {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 51px 1fr;
    gap: 15px;
  }

  .usage-item-number {
    font-size: 42px;
  }

  .usage-item h3 {
    font-size: 19px;
  }

  .usage-item p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.55;
  }

  .warning-panel {
    margin-top: 5px;
    padding: 22px;
    border-left-width: 7px;
  }

  .warning-heading {
    gap: 12px;
  }

  .warning-heading svg {
    width: 27px;
    height: 27px;
  }

  .warning-heading h3 {
    font-size: 19px;
  }

  .warning-panel ul {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .warning-panel li {
    padding-left: 15px;
    font-size: 12px;
  }

  .commercial-grid {
    gap: 36px;
  }

  .commercial-description {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.65;
  }

  .commercial-list {
    margin-top: 25px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .commercial-list article {
    min-height: 0;
    padding: 18px;
  }

  .commercial-list strong {
    font-size: 14px;
  }

  .commercial-list span {
    margin-top: 7px;
    font-size: 12px;
  }

  .representative-form {
    max-width: 100%;
    padding: 22px;
    border-top-width: 7px;
  }

  .form-heading > span {
    font-size: 9px;
  }

  .form-heading h3 {
    margin-top: 6px;
    font-size: 25px;
  }

  .form-grid {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .form-field {
    gap: 5px;
  }

  .form-field > span {
    font-size: 10px;
  }

  .form-field input,
  .form-field select {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-consent {
    margin-top: 14px;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    font-size: 10px;
  }

  .form-consent input {
    width: 16px;
    height: 16px;
  }

  .form-submit {
    min-height: 48px;
    margin-top: 15px;
    padding: 0 16px;
    font-size: 12px;
  }

  .form-submit svg {
    width: 17px;
    height: 17px;
  }

  .form-status {
    min-height: 15px;
    margin-top: 8px;
    font-size: 10px;
  }

  .buy-grid {
    gap: 36px;
  }

  .buy-label {
    margin-bottom: 13px;
    padding: 8px 10px;
    font-size: 9px;
  }

  .buy-copy > p {
    margin-top: 16px;
    font-size: 15px;
  }

  .buy-product {
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 62px;
    aspect-ratio: 1 / .95;
    border-width: 7px;
  }

  .buy-product-label {
    padding: 13px 7px;
  }

  .buy-product-label span {
    font-size: 8px;
  }

  .buy-product img {
    width: 78%;
    max-height: 85%;
    top: 7%;
    left: 5%;
    filter: drop-shadow(9px 12px 0 var(--brown));
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 26px);
  }

  .section-title {
    font-size: 33px;
  }

  .product-logo {
    max-height: 135px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-product-area {
    grid-template-columns: minmax(0, 1fr) 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ==================================================
   AJUSTE FINAL DA LOGO DO PRODUTO NA HERO
   Corta a área transparente existente no arquivo
   ================================================== */

.product-logo-frame {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 5.35 / 1;
  overflow: hidden;
  margin: 0;
}

.product-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

/* Aproxima a chamada, a logo e o texto */
.product-category {
  margin-bottom: 10px;
}

.hero-description {
  margin-top: 10px;
}

/* Compacta o restante da hero no desktop */
.hero-facts {
  margin-top: 20px;
}

.hero-actions {
  margin-top: 18px;
}

.hero-shell {
  padding-top: calc(
    var(--header-height) + clamp(20px, 2.8vh, 34px)
  );
}
@media (max-width: 680px) {
  .product-category {
    margin-bottom: 8px;
  }

  .product-logo-frame {
    width: 100%;
    aspect-ratio: 5.15 / 1;
    margin: 0;
  }

  .hero-description {
    margin-top: 8px;
  }
}
/* ==================================================
   RODAPÉ GLOBAL DELTA DISTRIBUIDORA
   ================================================== */

.site-footer {
  position: relative;
  z-index: 10;
  color: #ffffff;
  background: #063f24;
  font-family: "Open Sans", Arial, sans-serif;
}

.footer-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-main {
  padding: 68px 0 58px;
  border-top: 10px solid #4c9f0e;
}

.footer-grid {
  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-logo {
  width: 138px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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;
}

.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 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;
}

.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 {
  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;
}

/* 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;
  }
}

/* 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;
  }

  .footer-brand {
    display: grid;
    justify-items: start;
  }

  .footer-logo {
    width: 130px;
    height: 86px;
  }

  .footer-logo img {
    width: 108px;
    height: 70px;
  }

  .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: translateX(0);
  }

  .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;
  }
}