:root {
  --brown-earth: #4a2c0a;
  --brown-earth-dark: #2e1b07;
  --forest-amber: #c87d0a;
  --cupuaçu-gold: #f5c070;
  --amazon-cream: #fdf6ec;
  --forest-green: #3a7010;
  --forest-green-dark: #24470c;
  --forest-deep: #102805;
  --white: #fff;
  --header-height: 82px;
  --container: 1280px;
  --page-padding: clamp(20px, 5.85vw, 80px);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--brown-earth);
  font-family: "Inter", Arial, sans-serif;
  background: var(--amazon-cream);
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.story-container {
  width: min(100%, calc(var(--container) + (var(--page-padding) * 2)));
  margin: 0 auto;
  padding-inline: var(--page-padding);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-green-dark);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

/* PROGRESSO DE LEITURA */
.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--forest-amber), var(--cupuaçu-gold));
  box-shadow: 0 0 14px rgba(245, 192, 112, 0.45);
  pointer-events: none;
}

/* CABEÇALHO PRINCIPAL */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(74, 44, 10, 0.08);
  background: rgba(253, 246, 236, 0.96);
  transition:
    height 300ms var(--ease-premium),
    background 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  --header-height: 68px;
  background: rgba(253, 246, 236, 0.91);
  box-shadow: 0 10px 35px rgba(45, 26, 7, 0.1);
  backdrop-filter: blur(16px);
}

.header-container {
  width: min(100%, calc(var(--container) + (var(--page-padding) * 2)));
  height: 100%;
  margin: 0 auto;
  padding-inline: var(--page-padding);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3.3vw, 48px);
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  transition:
    width 300ms var(--ease-premium),
    height 300ms var(--ease-premium);
}

.site-header.is-scrolled .brand img {
  width: 46px;
  height: 46px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1;
}

.brand-copy small {
  color: var(--forest-amber);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.main-navigation {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.main-navigation a {
  position: relative;
  padding: 10px 0;
  color: #33271d;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--forest-amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-premium);
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation a.is-active {
  color: var(--forest-amber);
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after,
.main-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.whatsapp-button {
  min-width: max-content;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  color: var(--white);
  background: var(--forest-green-dark);
  box-shadow: 0 10px 24px rgba(36, 71, 12, 0.17);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 250ms ease,
    box-shadow 300ms ease,
    transform 300ms var(--ease-premium);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: var(--forest-green);
  box-shadow: 0 14px 30px rgba(36, 71, 12, 0.24);
  transform: translateY(-2px);
}

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

.menu-toggle {
  width: 45px;
  height: 45px;
  padding: 10px;
  display: none;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--brown-earth);
  transition:
    opacity 250ms ease,
    transform 300ms var(--ease-premium);
}

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

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

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

/* HERO DA HISTÓRIA */
.story-hero {
  position: relative;
  isolation: isolate;
  min-height: min(920px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  color: var(--white);
  background: var(--forest-deep);
}

.story-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.01);
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 24, 4, 0.96) 0%, rgba(14, 34, 7, 0.9) 38%, rgba(13, 32, 6, 0.55) 65%, rgba(7, 17, 3, 0.15) 100%),
    linear-gradient(180deg, rgba(5, 14, 3, 0.16) 0%, rgba(5, 14, 3, 0.06) 50%, rgba(5, 14, 3, 0.72) 100%);
}

.story-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  pointer-events: none;
  background:
    radial-gradient(rgba(255, 255, 255, 0.15) 0.55px, transparent 0.75px),
    repeating-linear-gradient(118deg, rgba(245, 192, 112, 0.025) 0 1px, transparent 1px 31px);
  background-size: 4px 4px, auto;
  mix-blend-mode: soft-light;
}

.story-hero-container {
  position: relative;
  min-height: inherit;
  padding-top: calc(var(--header-height) + clamp(64px, 9vh, 100px));
  padding-bottom: clamp(110px, 14vh, 150px);
  display: flex;
  align-items: center;
}

.story-hero-content {
  width: min(100%, 680px);
}

.story-kicker {
  margin: 0 0 17px;
  color: var(--cupuaçu-gold);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.story-hero h1 {
  margin: 0;
  color: #fffaf3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 6.5vw, 6.25rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(4, 12, 2, 0.4);
}

.story-hero-divider {
  width: 205px;
  margin: 27px 0 23px;
  display: grid;
  grid-template-columns: 1fr 11px 1fr;
  align-items: center;
  gap: 13px;
  color: var(--cupuaçu-gold);
}

.story-hero-divider span {
  height: 1px;
  background: currentColor;
}

.story-hero-divider i {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.story-hero-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 250, 243, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
  text-shadow: 0 2px 18px rgba(4, 12, 2, 0.38);
}

.story-identities {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.story-identities span {
  padding: 8px 11px;
  border: 1px solid rgba(245, 192, 112, 0.42);
  border-radius: 999px;
  color: rgba(255, 250, 243, 0.85);
  background: rgba(11, 31, 5, 0.3);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-scroll {
  position: absolute;
  bottom: 38px;
  left: var(--page-padding);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 243, 0.74);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.story-scroll svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--cupuaçu-gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 300ms var(--ease-premium);
}

.story-scroll:hover svg,
.story-scroll:focus-visible svg {
  transform: translateY(5px);
}

.photo-credit {
  position: absolute;
  right: var(--page-padding);
  bottom: 38px;
  margin: 0;
  color: rgba(255, 250, 243, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* TÍTULOS DOS CAPÍTULOS */
.chapter-index {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.chapter-index i {
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.chapter-index small {
  font: inherit;
}

.chapter-index-light {
  color: var(--cupuaçu-gold);
}

.chapter-eyebrow {
  margin: 0 0 12px;
  color: var(--forest-green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.chapter-eyebrow-light {
  color: #b8d596;
}

/* RAÍZES E IDENTIDADE */
.roots-section {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 9vw, 132px) 0 clamp(90px, 8vw, 120px);
  background:
    radial-gradient(circle at 8% 20%, rgba(245, 192, 112, 0.15), transparent 28rem),
    radial-gradient(circle at 92% 85%, rgba(58, 112, 16, 0.07), transparent 30rem),
    linear-gradient(180deg, #f8eee0 0%, var(--amazon-cream) 100%);
}

.roots-section::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  top: -365px;
  right: -100px;
  border: 1px solid rgba(74, 44, 10, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(74, 44, 10, 0.018),
    0 0 0 84px rgba(74, 44, 10, 0.012);
}

.roots-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
}

.chapter-heading h2,
.innovation-content h2,
.legacy-heading h2,
.recognition-copy h2,
.press-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.chapter-heading h2 {
  max-width: 560px;
  font-size: clamp(3rem, 4.4vw, 4.5rem);
}

.roots-copy {
  padding-top: 43px;
}

.roots-copy p {
  margin: 0 0 20px;
  color: #6c5a47;
  font-size: 0.96rem;
  line-height: 1.78;
}

.roots-copy .roots-opening {
  color: var(--brown-earth);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.22rem, 1.65vw, 1.48rem);
  line-height: 1.58;
}

.roots-facts {
  margin-top: clamp(60px, 7vw, 96px);
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(74, 44, 10, 0.18);
  border-bottom: 1px solid rgba(74, 44, 10, 0.18);
}

.roots-facts article {
  padding: 0 clamp(22px, 3vw, 44px);
  display: grid;
  gap: 6px;
  border-right: 1px solid rgba(74, 44, 10, 0.16);
}

.roots-facts article:first-child {
  padding-left: 0;
}

.roots-facts article:last-child {
  padding-right: 0;
  border-right: 0;
}

.roots-facts small {
  color: var(--forest-amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roots-facts strong {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
}

.roots-facts span {
  color: #85725e;
  font-size: 0.74rem;
}

/* LINHA DO TEMPO */
.journey-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 9vw, 138px) 0;
  color: var(--white);
  background: #0d2505;
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: -2;
  opacity: 0.5;
  pointer-events: none;
  background: url("../assets/images/hero/hero-cultivo.jpg") 52% center / cover no-repeat;
  filter: saturate(0.62) contrast(1.06);
  transform: scale(1.025);
}

.journey-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 27, 3, 0.9) 0%, rgba(11, 34, 5, 0.72) 52%, rgba(8, 26, 3, 0.82) 100%),
    linear-gradient(180deg, rgba(7, 22, 3, 0.4) 0%, rgba(9, 29, 4, 0.24) 46%, rgba(6, 20, 3, 0.72) 100%),
    repeating-linear-gradient(116deg, rgba(245, 192, 112, 0.025) 0 1px, transparent 1px 38px);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.journey-intro {
  position: sticky;
  top: calc(var(--header-height) + 60px);
}

.journey-intro h2 {
  max-width: 480px;
  margin: 0;
  color: #fffaf3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 4.8vw, 4.8rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.journey-intro > p:last-child {
  max-width: 440px;
  margin: 26px 0 0;
  color: rgba(255, 250, 243, 0.7);
  font-size: 0.93rem;
  line-height: 1.72;
}

.journey-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-timeline li {
  position: relative;
  min-height: 240px;
  padding: 0 0 64px 42px;
  display: grid;
  grid-template-columns: 1fr;
}

.journey-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 0;
  left: 5px;
  width: 1px;
  background: linear-gradient(var(--cupuaçu-gold), rgba(245, 192, 112, 0.14));
}

.journey-timeline li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(245, 192, 112, 0.58);
  border-radius: 50%;
  background: var(--cupuaçu-gold);
  box-shadow: 0 0 0 6px rgba(245, 192, 112, 0.05);
}

.timeline-label {
  margin: 0 0 9px;
  color: #b8d596;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-timeline h3 {
  max-width: 540px;
  margin: 0 0 14px;
  color: #fffaf3;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.58rem);
  font-weight: 500;
  line-height: 1.35;
}

.journey-timeline li p:last-child {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 250, 243, 0.66);
  font-size: 0.87rem;
  line-height: 1.72;
}

/* NASCIMENTO DA JUJUBA */
.innovation-section {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 9vw, 136px) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(245, 192, 112, 0.15), transparent 28rem),
    linear-gradient(180deg, #f3e4d1 0%, #fbf4e9 100%);
}

.innovation-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.08fr) minmax(440px, 0.92fr);
  gap: 0;
  align-items: center;
}

.innovation-photo {
  position: relative;
  z-index: 1;
  width: calc(100% + var(--page-padding));
  margin: 0;
  margin-left: calc(var(--page-padding) * -1);
}

.innovation-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 512 / 607;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 69%,
    rgba(0, 0, 0, 0.56) 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 69%,
    rgba(0, 0, 0, 0.56) 82%,
    transparent 100%
  );
}

.innovation-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 512 / 607;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.01);
  transition:
    filter 700ms ease,
    transform 900ms var(--ease-premium);
}

.innovation-photo:hover .innovation-photo-frame img {
  filter: saturate(1.02) contrast(1.035);
  transform: scale(1.028);
}

.innovation-content {
  position: relative;
  z-index: 2;
  margin-left: clamp(-72px, -5vw, -38px);
  padding: 42px 0 42px clamp(18px, 3vw, 44px);
}

.innovation-content h2 {
  max-width: 650px;
  font-size: clamp(3.1rem, 4.6vw, 4.6rem);
}

.innovation-content > p {
  max-width: 630px;
  margin: 20px 0 0;
  color: #6d5b48;
  font-size: 0.94rem;
  line-height: 1.76;
}

.innovation-content .innovation-lead {
  color: var(--brown-earth);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.58;
}

.innovation-callout {
  max-width: 620px;
  margin: 32px 0 0;
  padding: 22px 0 3px 24px;
  border-left: 2px solid var(--forest-amber);
}

.innovation-callout p {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.78rem);
  font-weight: 600;
  line-height: 1.25;
}

.innovation-callout span {
  color: #8b765f;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  .innovation-section {
    padding-block: 0;
  }
}

/* FILOSOFIA DE PRODUÇÃO */
.philosophy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(98px, 9vw, 136px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(85, 141, 41, 0.2), transparent 38rem),
    #122c06;
}

.philosophy-quote {
  width: min(100%, 940px);
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote > svg {
  width: 44px;
  height: 34px;
  margin: 0 auto 25px;
  fill: var(--cupuaçu-gold);
  opacity: 0.82;
}

.philosophy-quote > p {
  margin: 0;
  color: #fffaf3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.philosophy-quote cite {
  margin-top: 26px;
  display: block;
  color: #b8d596;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.philosophy-pillars {
  margin-top: clamp(68px, 7vw, 94px);
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 192, 112, 0.32);
}

.philosophy-pillars article {
  padding-inline: clamp(25px, 3.4vw, 50px);
  border-right: 1px solid rgba(245, 192, 112, 0.2);
}

.philosophy-pillars article:first-child {
  padding-left: 0;
}

.philosophy-pillars article:last-child {
  padding-right: 0;
  border-right: 0;
}

.philosophy-pillars h3 {
  margin: 0 0 11px;
  color: #fffaf3;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
}

.philosophy-pillars p {
  margin: 0;
  color: rgba(255, 250, 243, 0.62);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* CRESCIMENTO E LEGADO */
.legacy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 9vw, 140px) 0;
  background:
    radial-gradient(circle at 92% 15%, rgba(58, 112, 16, 0.08), transparent 30rem),
    linear-gradient(180deg, #f8efe2 0%, #f2e4d2 100%);
}

.legacy-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -310px;
  bottom: -230px;
  border: 1px solid rgba(74, 44, 10, 0.08);
  border-radius: 50%;
}

.legacy-heading {
  width: min(100%, 880px);
  margin-bottom: clamp(52px, 6vw, 80px);
}

.legacy-heading h2 {
  font-size: clamp(3.1rem, 4.7vw, 4.8rem);
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1.12fr) minmax(390px, 0.88fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: center;
}

.legacy-main-photo {
  position: relative;
  min-height: 550px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #bfa789;
  box-shadow:
    0 30px 68px rgba(74, 44, 10, 0.18),
    inset 0 -4px 0 rgba(74, 44, 10, 0.72);
}

.legacy-main-photo img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  transition:
    filter 700ms ease,
    transform 900ms var(--ease-premium);
}

.legacy-main-photo:hover img {
  filter: saturate(1) contrast(1.035);
  transform: scale(1.03);
}

.legacy-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(28, 17, 5, 0.78) 100%);
  pointer-events: none;
}

.legacy-main-photo figcaption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 2;
  display: grid;
  gap: 5px;
  color: var(--white);
}

.legacy-main-photo figcaption strong {
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
}

.legacy-main-photo figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.legacy-copy > p {
  margin: 0 0 20px;
  color: #6d5b48;
  font-size: 0.92rem;
  line-height: 1.76;
}

.legacy-copy .legacy-opening {
  color: var(--brown-earth);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.12rem, 1.5vw, 1.34rem);
  line-height: 1.62;
}

.name-meaning {
  margin-top: 34px;
  padding: 25px 27px;
  border-left: 3px solid var(--forest-amber);
  border-radius: 0 10px 10px 0;
  background: rgba(253, 246, 236, 0.72);
  box-shadow: 0 14px 35px rgba(74, 44, 10, 0.08);
}

.name-meaning small {
  color: var(--forest-green);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.name-meaning strong {
  margin-top: 9px;
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
}

.name-meaning p {
  margin: 8px 0 0;
  color: #776653;
  font-size: 0.79rem;
  line-height: 1.62;
}

/* PRESENÇA E RECONHECIMENTO */
.recognition-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(245, 192, 112, 0.13), transparent 28rem),
    var(--amazon-cream);
}

.recognition-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.08fr) minmax(440px, 0.92fr);
  gap: 0;
  align-items: center;
}

.recognition-photo {
  position: relative;
  z-index: 1;
  width: calc(100% + var(--page-padding));
  margin: 0;
  margin-left: calc(var(--page-padding) * -1);
  overflow: hidden;
  aspect-ratio: 595 / 608;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 69%,
    rgba(0, 0, 0, 0.56) 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.92) 69%,
    rgba(0, 0, 0, 0.56) 82%,
    transparent 100%
  );
}

.recognition-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 595 / 608;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.01);
  transition:
    filter 700ms ease,
    transform 900ms var(--ease-premium);
}

.recognition-photo:hover img {
  filter: saturate(1.02) contrast(1.035);
  transform: scale(1.028);
}

.recognition-copy {
  position: relative;
  z-index: 2;
  margin-left: clamp(-72px, -5vw, -38px);
  padding: 42px 0 42px clamp(18px, 3vw, 44px);
}

.recognition-copy h2 {
  max-width: 690px;
  font-size: clamp(3rem, 4.4vw, 4.5rem);
}

.recognition-copy > p:not(.chapter-eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #6d5b48;
  font-size: 0.93rem;
  line-height: 1.76;
}

.recognition-copy ul {
  max-width: 620px;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 28px;
  list-style: none;
}

.recognition-copy li {
  position: relative;
  padding: 12px 12px 12px 25px;
  border-bottom: 1px solid rgba(74, 44, 10, 0.13);
  color: var(--brown-earth);
  font-family: "Lora", Georgia, serif;
  font-size: 0.83rem;
}

.recognition-copy li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--forest-amber);
  transform: rotate(45deg);
}

/* DONA VERA NA IMPRENSA */
.press-section {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 8vw, 124px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 192, 112, 0.12), transparent 26rem),
    linear-gradient(180deg, #edddc8 0%, #f5e9da 100%);
}

.press-heading {
  width: min(100%, 720px);
  margin: 0 auto clamp(45px, 5vw, 64px);
  text-align: center;
}

.press-heading h2 {
  font-size: clamp(3rem, 4.4vw, 4.45rem);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
}

.press-card {
  position: relative;
  min-height: 320px;
  padding: clamp(32px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  color: var(--brown-earth);
  background: rgba(253, 246, 236, 0.9);
  box-shadow:
    0 22px 52px rgba(74, 44, 10, 0.13),
    inset 0 -4px 0 rgba(74, 44, 10, 0.58);
  text-decoration: none;
  transition:
    box-shadow 400ms var(--ease-premium),
    transform 400ms var(--ease-premium);
}

.press-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -135px;
  right: -105px;
  border: 1px solid rgba(58, 112, 16, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(58, 112, 16, 0.025);
}

.press-card:hover,
.press-card:focus-visible {
  box-shadow:
    0 30px 65px rgba(74, 44, 10, 0.18),
    inset 0 -6px 0 var(--forest-amber);
  transform: translateY(-6px);
}

.press-card:focus-visible {
  outline: 2px solid var(--forest-amber);
  outline-offset: 4px;
}

.press-source {
  color: var(--forest-green);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-card h3 {
  max-width: 520px;
  margin: 18px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.press-card > p {
  max-width: 500px;
  margin: 0 0 28px;
  color: #74624f;
  font-size: 0.83rem;
  line-height: 1.68;
}

.press-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-amber);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.press-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 300ms var(--ease-premium);
}

.press-card:hover .press-link svg,
.press-card:focus-visible .press-link svg {
  transform: translateX(5px);
}

/* VISÃO DE FUTURO */
.future-story-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 9vw, 142px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(85, 141, 41, 0.23), transparent 32rem),
    linear-gradient(135deg, #102805 0%, #1b3d0b 62%, #112806 100%);
}

.future-story-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(245, 192, 112, 0.04) 58% 58.1%, transparent 58.1%),
    radial-gradient(rgba(255, 255, 255, 0.11) 0.6px, transparent 0.8px);
  background-size: auto, 5px 5px;
}

.future-story-layout {
  display: grid;
  grid-template-columns: minmax(440px, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(64px, 9vw, 130px);
  align-items: center;
}

.future-story-copy h2 {
  margin: 0;
  color: #fffaf3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.future-story-copy > p:not(.chapter-eyebrow) {
  max-width: 620px;
  margin: 23px 0 0;
  color: rgba(255, 250, 243, 0.7);
  font-size: 0.91rem;
  line-height: 1.76;
}

.future-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.primary-action {
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 7px;
  color: var(--brown-earth-dark);
  background: var(--cupuaçu-gold);
  box-shadow: 0 16px 34px rgba(3, 12, 1, 0.22);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 250ms ease,
    box-shadow 300ms ease,
    transform 300ms var(--ease-premium);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #ffd293;
  box-shadow: 0 20px 42px rgba(3, 12, 1, 0.3);
  transform: translateY(-3px);
}

.primary-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secondary-action {
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 192, 112, 0.55);
  color: rgba(255, 250, 243, 0.77);
  font-size: 0.73rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    border-color 250ms ease,
    color 250ms ease;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: var(--cupuaçu-gold);
  color: var(--white);
}

.future-story-quote {
  position: relative;
  margin: 0;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(245, 192, 112, 0.26);
  border-radius: 14px;
  background: rgba(7, 23, 3, 0.35);
  box-shadow: 0 28px 60px rgba(4, 14, 2, 0.24);
  backdrop-filter: blur(10px);
}

.future-story-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 25px;
  color: var(--cupuaçu-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.42;
}

.future-story-quote p {
  position: relative;
  z-index: 1;
  margin: 20px 0;
  color: #fffaf3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
}

.future-story-quote cite {
  color: #b8d596;
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* RODAPÉ */
.story-footer {
  padding: 46px 0;
  color: rgba(255, 250, 243, 0.72);
  background: #0a1d03;
}

.story-footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-brand span {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-brand small {
  color: var(--cupuaçu-gold);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-footer-layout > p {
  max-width: 490px;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
}

.story-footer nav {
  display: flex;
  gap: 24px;
}

.story-footer nav a {
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 250ms ease;
}

.story-footer nav a:hover,
.story-footer nav a:focus-visible {
  color: var(--cupuaçu-gold);
}

.mobile-whatsapp {
  display: none;
}

/* ENTRADAS SUAVES */
@media (prefers-reduced-motion: no-preference) {
  .has-js [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
  }

  .has-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 750ms ease,
      transform 900ms var(--ease-premium);
  }

  .has-js .journey-timeline li[data-reveal]:nth-child(2),
  .has-js .press-card[data-reveal]:nth-child(2) {
    transition-delay: 90ms;
  }

  .has-js .journey-timeline li[data-reveal]:nth-child(3) {
    transition-delay: 130ms;
  }

  .has-js .journey-timeline li[data-reveal]:nth-child(4) {
    transition-delay: 170ms;
  }
}

/* RESPONSIVIDADE DO CABEÇALHO */
@media (max-width: 1120px) {
  .header-container {
    gap: 18px;
  }

  .brand-copy {
    display: none;
  }

  .main-navigation {
    gap: 18px;
  }

  .main-navigation a {
    font-size: 0.74rem;
  }

  .roots-layout,
  .journey-layout,
  .innovation-layout,
  .legacy-grid,
  .future-story-layout {
    gap: clamp(42px, 6vw, 70px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --page-padding: clamp(20px, 5vw, 40px);
  }

  .site-header.is-scrolled {
    --header-height: 64px;
  }

  .header-container {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    position: relative;
    z-index: 2;
  }

  .brand-copy {
    display: grid;
    gap: 2px;
  }

  .brand-copy strong {
    font-size: 1.34rem;
  }

  .brand-copy small {
    font-size: 0.54rem;
    letter-spacing: 0.01em;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    grid-column: 3;
    justify-self: end;
    display: grid;
    align-content: center;
  }

  .main-navigation {
    position: fixed;
    inset: 0;
    z-index: 1;
    padding: calc(var(--header-height) + 50px) var(--page-padding) 48px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    background:
      radial-gradient(circle at 85% 12%, rgba(245, 192, 112, 0.16), transparent 28rem),
      var(--amazon-cream);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition:
      visibility 300ms step-end,
      opacity 300ms ease,
      transform 400ms var(--ease-premium);
  }

  .main-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition:
      visibility 0s step-start,
      opacity 300ms ease,
      transform 400ms var(--ease-premium);
  }

  .main-navigation a {
    width: 100%;
    padding: 12px 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    font-weight: 600;
  }

  .main-navigation a::after {
    display: none;
  }

  .whatsapp-button {
    display: none;
  }

  .story-hero {
    min-height: 760px;
  }

  .story-hero-image {
    object-position: 63% center;
  }

  .story-hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 23, 4, 0.95) 0%, rgba(12, 31, 6, 0.81) 62%, rgba(8, 20, 4, 0.46) 100%),
      linear-gradient(180deg, rgba(5, 14, 3, 0.14) 0%, rgba(5, 14, 3, 0.1) 48%, rgba(5, 14, 3, 0.78) 100%);
  }

  .story-hero-content {
    width: min(100%, 610px);
  }

  .roots-layout,
  .innovation-layout,
  .legacy-grid,
  .recognition-layout,
  .future-story-layout {
    grid-template-columns: 1fr;
  }

  .roots-copy {
    padding-top: 0;
  }

  .journey-layout {
    grid-template-columns: 1fr;
  }

  .journey-section::before {
    background-position: 62% center;
  }

  .journey-section::after {
    background:
      linear-gradient(180deg, rgba(7, 24, 3, 0.86) 0%, rgba(10, 32, 4, 0.7) 44%, rgba(7, 23, 3, 0.86) 100%),
      linear-gradient(90deg, rgba(7, 23, 3, 0.7), rgba(9, 30, 4, 0.48));
  }

  .journey-intro {
    position: static;
    margin-bottom: 26px;
  }

  .journey-timeline {
    max-width: 720px;
  }

  .innovation-photo {
    width: calc(100% + (var(--page-padding) * 2));
    margin: clamp(-58px, -6vw, -34px) calc(var(--page-padding) * -1) 0;
    order: 2;
  }

  .innovation-layout {
    display: flex;
    flex-direction: column;
  }

  .innovation-content {
    width: 100%;
    margin-left: 0;
    padding: 0;
    order: 1;
  }

  .innovation-photo-frame {
    -webkit-mask-image: linear-gradient(
      0deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.44) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      0deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.44) 86%,
      transparent 100%
    );
  }

  .innovation-section {
    padding-bottom: 0;
  }

  .recognition-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .recognition-copy {
    width: 100%;
    margin-left: 0;
    padding: 0;
    order: 1;
  }

  .recognition-photo {
    width: calc(100% + (var(--page-padding) * 2));
    min-height: 0;
    margin: clamp(-48px, -5vw, -30px) calc(var(--page-padding) * -1) 0;
    order: 2;
    border-radius: 0;
    aspect-ratio: 595 / 608;
    -webkit-mask-image: linear-gradient(
      0deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.44) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      0deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.44) 86%,
      transparent 100%
    );
  }

  .recognition-photo img {
    min-height: 0;
    aspect-ratio: 595 / 608;
    object-fit: contain;
  }

  .recognition-section {
    padding-top: clamp(84px, 10vw, 104px);
    padding-bottom: 0;
  }

  .legacy-main-photo {
    min-height: 600px;
  }

  .legacy-main-photo img {
    min-height: 600px;
  }

  .recognition-photo {
    width: min(100%, 520px);
    min-height: 640px;
    justify-self: center;
  }

  .recognition-photo img {
    min-height: 640px;
  }

  .future-story-quote {
    max-width: 680px;
  }

  .story-footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 26px;
  }
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 640px) {
  .brand {
    gap: 8px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .site-header.is-scrolled .brand img {
    width: 52px;
    height: 52px;
  }

  .story-hero {
    min-height: 780px;
  }

  .story-hero-image {
    object-position: 66% center;
  }

  .story-hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 23, 4, 0.9) 0%, rgba(8, 23, 4, 0.54) 100%),
      linear-gradient(180deg, rgba(5, 14, 3, 0.2) 0%, rgba(5, 14, 3, 0.12) 32%, rgba(5, 14, 3, 0.88) 100%);
  }

  .story-hero-container {
    padding-top: calc(var(--header-height) + 90px);
    padding-bottom: 125px;
    align-items: flex-end;
  }

  .story-kicker {
    font-size: 0.61rem;
    line-height: 1.5;
  }

  .story-hero h1 {
    font-size: clamp(3.5rem, 16vw, 4.6rem);
    line-height: 0.9;
  }

  .story-hero-divider {
    margin-block: 23px 20px;
  }

  .story-hero-lead {
    font-size: 0.93rem;
    line-height: 1.66;
  }

  .story-identities {
    margin-top: 24px;
    gap: 7px;
  }

  .story-identities span {
    padding: 7px 9px;
    font-size: 0.56rem;
  }

  .story-scroll {
    bottom: 32px;
  }

  .photo-credit {
    display: none;
  }

  .roots-section,
  .journey-section,
  .innovation-section,
  .philosophy-section,
  .legacy-section,
  .recognition-section,
  .press-section,
  .future-story-section {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .chapter-index {
    margin-bottom: 18px;
  }

  .chapter-heading h2,
  .innovation-content h2,
  .legacy-heading h2,
  .recognition-copy h2,
  .press-heading h2,
  .future-story-copy h2 {
    font-size: clamp(2.8rem, 12.5vw, 3.65rem);
  }

  .roots-copy .roots-opening {
    font-size: 1.12rem;
  }

  .roots-copy p {
    font-size: 0.91rem;
    line-height: 1.72;
  }

  .roots-facts {
    margin-top: 54px;
    padding: 0;
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .roots-facts article,
  .roots-facts article:first-child,
  .roots-facts article:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(74, 44, 10, 0.16);
  }

  .journey-intro h2 {
    font-size: clamp(2.9rem, 13vw, 3.7rem);
  }

  .journey-timeline li {
    min-height: 0;
    padding: 0 0 58px 36px;
  }

  .journey-timeline li:not(:last-child)::before {
    left: 5px;
  }

  .journey-timeline h3 {
    font-size: 1.22rem;
  }

  .journey-timeline li p:last-child {
    font-size: 0.83rem;
  }

  .innovation-photo {
    width: calc(100% + (var(--page-padding) * 2));
    margin-top: -36px;
  }

  .innovation-section {
    padding-bottom: 0;
  }

  .innovation-photo-frame {
    aspect-ratio: 512 / 607;
  }

  .innovation-content > p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .innovation-content .innovation-lead {
    font-size: 1.1rem;
  }

  .innovation-callout {
    margin-top: 28px;
    padding-left: 19px;
  }

  .philosophy-quote > p {
    font-size: clamp(2.75rem, 13vw, 3.55rem);
  }

  .philosophy-pillars {
    margin-top: 58px;
    padding-top: 4px;
    grid-template-columns: 1fr;
  }

  .philosophy-pillars article,
  .philosophy-pillars article:first-child,
  .philosophy-pillars article:last-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 192, 112, 0.2);
  }

  .philosophy-pillars article:last-child {
    border-bottom: 0;
  }

  .legacy-heading {
    margin-bottom: 44px;
  }

  .legacy-main-photo {
    min-height: 500px;
    border-radius: 15px;
  }

  .legacy-main-photo img {
    min-height: 500px;
    object-position: 55% center;
  }

  .legacy-main-photo figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .legacy-copy > p {
    font-size: 0.89rem;
    line-height: 1.72;
  }

  .legacy-copy .legacy-opening {
    font-size: 1.08rem;
  }

  .name-meaning {
    padding: 22px 20px;
  }

  .recognition-photo {
    width: calc(100% + (var(--page-padding) * 2));
    min-height: 0;
    margin: clamp(-48px, -5vw, -30px) calc(var(--page-padding) * -1) 0;
    order: 2;
    border-radius: 0;
    aspect-ratio: 595 / 608;
    -webkit-mask-image: linear-gradient(
      0deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.44) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      0deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, 0.88) 72%,
      rgba(0, 0, 0, 0.44) 86%,
      transparent 100%
    );
  }

  .recognition-photo img {
    min-height: 0;
    aspect-ratio: 595 / 608;
    object-fit: contain;
  }

  .recognition-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .recognition-copy {
    width: 100%;
    margin-left: 0;
    padding: 0;
    order: 1;
  }

  .recognition-section {
    padding-bottom: 0;
  }

  .recognition-copy > p:not(.chapter-eyebrow) {
    font-size: 0.89rem;
    line-height: 1.72;
  }

  .recognition-copy ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .press-heading {
    text-align: left;
  }

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

  .press-card {
    min-height: 300px;
    padding: 30px 25px 34px;
  }

  .press-card h3 {
    font-size: 2.25rem;
  }

  .future-story-copy > p:not(.chapter-eyebrow) {
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .future-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .primary-action {
    width: 100%;
    justify-content: center;
  }

  .future-story-quote {
    padding: 31px 23px;
  }

  .future-story-quote p {
    font-size: 1.7rem;
  }

  .story-footer {
    padding-bottom: 90px;
  }

  .story-footer nav {
    flex-wrap: wrap;
    gap: 15px 22px;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--white);
    background: var(--forest-green-dark);
    box-shadow: 0 14px 32px rgba(20, 51, 8, 0.3);
    text-decoration: none;
  }

  .mobile-whatsapp svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
  }
}

@media (max-height: 650px) and (min-width: 641px) {
  .story-hero {
    min-height: 650px;
  }

  .story-hero-container {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 90px;
  }

  .story-hero h1 {
    font-size: clamp(3.5rem, 8vh, 5rem);
  }

  .story-hero-divider {
    margin-block: 20px 18px;
  }

  .story-identities {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* NAVEGACAO MULTIPAGINA E SUBMENU DE PRODUTOS */
.nav-products {
  position: relative;
  flex: 0 0 auto;
}

.nav-products-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-products-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 220ms var(--ease-premium);
}

.nav-products-submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 10;
  width: max-content;
  min-width: 218px;
  padding: 9px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(74, 44, 10, 0.1);
  border-radius: 12px;
  background: rgba(253, 246, 236, 0.98);
  box-shadow: 0 18px 44px rgba(45, 26, 7, 0.16);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    visibility 180ms step-end,
    opacity 180ms ease,
    transform 220ms var(--ease-premium);
}

.nav-products-submenu::before {
  content: "";
  position: absolute;
  inset: -4px 0 auto;
  height: 4px;
}

.nav-products:hover .nav-products-submenu,
.nav-products:focus-within .nav-products-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    visibility 0s step-start,
    opacity 180ms ease,
    transform 220ms var(--ease-premium);
}

.nav-products:hover .nav-products-trigger svg,
.nav-products:focus-within .nav-products-trigger svg {
  transform: rotate(180deg);
}

.main-navigation .nav-products-submenu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--brown-earth);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
}

.main-navigation .nav-products-submenu a::after {
  display: none;
}

.main-navigation .nav-products-submenu a:hover,
.main-navigation .nav-products-submenu a:focus-visible {
  color: var(--forest-green);
  background: rgba(200, 125, 10, 0.09);
}

@media (max-width: 860px) {
  body.menu-open .site-header.is-scrolled {
    backdrop-filter: none;
  }

  .main-navigation {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-products {
    width: 100%;
  }

  .nav-products-trigger {
    justify-content: space-between;
  }

  .main-navigation .nav-products-trigger:focus-visible {
    border-radius: 8px;
    outline: none;
    box-shadow: 0 0 0 2px rgba(200, 125, 10, 0.22);
  }

  .nav-products-trigger svg {
    width: 17px;
    height: 17px;
    transform: rotate(0);
  }

  .main-navigation .nav-products .nav-products-submenu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 17px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      max-height 360ms var(--ease-premium),
      margin 300ms var(--ease-premium),
      padding 300ms var(--ease-premium),
      border-color 260ms ease,
      opacity 220ms ease,
      transform 300ms var(--ease-premium),
      visibility 220ms step-end;
  }

  .main-navigation .nav-products.is-expanded .nav-products-submenu {
    max-height: 180px;
    margin: 0 0 5px;
    padding: 2px 0 5px 17px;
    border-left-color: rgba(200, 125, 10, 0.32);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition:
      max-height 420ms var(--ease-premium),
      margin 300ms var(--ease-premium),
      padding 300ms var(--ease-premium),
      border-color 260ms ease,
      opacity 220ms ease,
      transform 300ms var(--ease-premium),
      visibility 0s step-start;
  }

  .main-navigation .nav-products.is-expanded .nav-products-trigger svg {
    transform: rotate(180deg);
  }

  .main-navigation .nav-products-submenu a {
    padding: 7px 0 7px 12px;
    color: rgba(74, 44, 10, 0.76);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
  }
}
