@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Lilita One";
  src: url("assets/fonts/lilita-one-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #17110d;
  --ink-soft: #2c1d15;
  --cream: #f3e6d0;
  --cream-soft: #ead8bb;
  --paper: #fbf4e8;
  --wine: #751f2e;
  --wine-deep: #3e1019;
  --gold: #cf9f59;
  --olive: #6f7750;
  --white: #fffaf0;
  --stage: #080604;
  --ease: cubic-bezier(.22, .72, .2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html {
  background: var(--stage);
}

body {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(117, 31, 46, .18), transparent 36%),
    var(--stage);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a,
output {
  font: inherit;
}

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
}

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

.deck {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  transition: transform 600ms var(--ease), filter 600ms var(--ease);
}

.slide {
  position: absolute;
  display: none;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  overflow: hidden;
  container-type: inline-size;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04), 0 24px 80px rgba(0, 0, 0, .5);
  isolation: isolate;
}

.slide.is-active {
  display: block;
  animation: slide-enter 900ms var(--ease) both;
}

@keyframes slide-enter {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: filter 800ms ease;
  will-change: transform;
}

.slide.is-active .photo img {
  animation: photo-arrive 1.6s var(--ease) both;
}

@keyframes photo-arrive {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.045);
  }
}

.veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.slide h1,
.slide h2,
.slide p {
  text-wrap: balance;
}

.slide h1,
.slide h2 {
  margin: 0;
  font-family: "Lilita One", "Arial Black", sans-serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.slide h1 em,
.slide h2 em {
  font-weight: 400;
  font-style: normal;
}

.kicker {
  margin: 0 0 1.2cqw;
  color: rgba(255, 250, 240, .78);
  font-size: .82cqw;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.kicker--ink {
  color: rgba(23, 17, 13, .66);
}

.logo {
  display: block;
  width: 13.5cqw;
  height: auto;
  object-fit: contain;
}

.logo--light {
  filter: brightness(0) invert(1) sepia(.2) saturate(.4);
}

.folio {
  position: absolute;
  z-index: 8;
  right: 2.4cqw;
  bottom: 2.2cqw;
  color: rgba(255, 250, 240, .62);
  font-size: .72cqw;
  font-weight: 700;
  letter-spacing: .18em;
}

.folio--dark {
  color: rgba(23, 17, 13, .5);
}

/* 01 — capa */

.photo--hero img {
  object-position: 52% 54%;
  filter: saturate(.92) contrast(1.04) brightness(.86);
}

.veil--cover {
  background:
    linear-gradient(90deg, rgba(18, 10, 7, .96) 0%, rgba(18, 10, 7, .74) 35%, rgba(18, 10, 7, .08) 72%),
    linear-gradient(0deg, rgba(55, 12, 20, .64), transparent 48%);
}

.topline {
  position: absolute;
  z-index: 3;
  top: 3.1cqw;
  right: 4.2cqw;
  left: 4.2cqw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 250, 240, .72);
}

.topline span {
  font-size: .77cqw;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.cover-copy {
  position: absolute;
  z-index: 3;
  bottom: 5.5cqw;
  left: 4.2cqw;
  width: 51cqw;
}

.cover-copy h1 {
  color: var(--white);
  font-size: 5.75cqw;
  line-height: .88;
}

.deckline {
  max-width: 32cqw;
  margin: 2.2cqw 0 0;
  color: rgba(255, 250, 240, .78);
  font-family: "Archivo", sans-serif;
  font-size: 1.02cqw;
  font-style: italic;
  line-height: 1.5;
}

.micro-note {
  position: absolute;
  z-index: 3;
  right: 4.2cqw;
  bottom: 5.7cqw;
  margin: 0;
  color: rgba(255, 250, 240, .62);
  font-size: .78cqw;
  letter-spacing: .22em;
}

/* 02 — sensorial */

.photo--sensory img {
  object-position: 53% 52%;
  filter: saturate(1.03) contrast(1.04) brightness(.8);
}

.veil--sensory {
  background:
    linear-gradient(90deg, rgba(18, 8, 5, .9) 0%, rgba(18, 8, 5, .48) 44%, transparent 74%),
    linear-gradient(0deg, rgba(18, 8, 5, .5), transparent 48%);
}

.sensory-copy {
  position: absolute;
  z-index: 3;
  top: 7cqw;
  left: 5cqw;
  width: 42cqw;
}

.sensory-copy h2 {
  font-size: 5.9cqw;
  line-height: .84;
}

.sensory-copy h2 em {
  color: var(--gold);
}

.sensory-caption {
  position: absolute;
  z-index: 3;
  right: 5cqw;
  bottom: 5.3cqw;
  display: flex;
  width: 28cqw;
  align-items: flex-start;
  gap: 1.2cqw;
}

.sensory-caption .line {
  width: 4cqw;
  height: 1px;
  margin-top: .65cqw;
  flex: none;
  background: rgba(255, 250, 240, .65);
}

.sensory-caption p {
  margin: 0;
  color: rgba(255, 250, 240, .8);
  font-size: .95cqw;
  line-height: 1.55;
}

/* 03 — ingrediente */

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

.ingredient-photo {
  right: 36%;
}

.ingredient-photo img {
  object-position: 47% 58%;
  filter: saturate(.96) contrast(1.02);
}

.ingredient-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 70%, var(--cream) 100%);
}

.ingredient-copy {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  display: flex;
  width: 39%;
  height: 100%;
  padding: 6.1cqw 4.7cqw 4.7cqw 3.3cqw;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.ingredient-copy h2 {
  font-size: 4.7cqw;
  line-height: .9;
}

.ingredient-copy h2 em {
  color: var(--wine);
}

.ingredient-copy > p:not(.kicker) {
  margin: 2cqw 0 0;
  color: rgba(23, 17, 13, .7);
  font-size: 1cqw;
  line-height: 1.6;
}

.ingredient-facts {
  display: flex;
  margin-top: 3cqw;
  border-top: 1px solid rgba(23, 17, 13, .25);
  flex-direction: column;
}

.ingredient-facts span {
  padding: .72cqw 0;
  border-bottom: 1px solid rgba(23, 17, 13, .16);
  font-size: .78cqw;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* 04 — linha */

.photo--lineup img {
  object-position: 58% 62%;
  filter: saturate(.92) brightness(.83) contrast(1.02);
}

.veil--lineup {
  background:
    linear-gradient(90deg, rgba(20, 8, 8, .94) 0%, rgba(20, 8, 8, .66) 42%, rgba(20, 8, 8, .05) 75%),
    linear-gradient(0deg, rgba(85, 15, 28, .4), transparent 48%);
}

.lineup-copy {
  position: absolute;
  z-index: 3;
  top: 6cqw;
  left: 4.7cqw;
  width: 48cqw;
}

.lineup-copy h2 {
  font-size: 5.2cqw;
  line-height: .88;
}

.flavor-index {
  position: absolute;
  z-index: 3;
  right: 4.7cqw;
  bottom: 4.5cqw;
  display: flex;
  width: 45cqw;
  border-top: 1px solid rgba(255, 250, 240, .38);
  justify-content: space-between;
}

.flavor-index div {
  width: 31%;
  padding-top: 1.15cqw;
}

.flavor-index span {
  display: block;
  margin-bottom: .45cqw;
  color: rgba(255, 250, 240, .5);
  font-size: .65cqw;
  letter-spacing: .18em;
}

.flavor-index strong {
  font-family: "Lilita One", "Arial Black", sans-serif;
  font-size: 1.18cqw;
  font-weight: 400;
}

/* 05–07 — sabores */

.photo--dark-flavor img {
  object-position: 53% 50%;
  filter: saturate(.86) contrast(1.05) brightness(.76);
}

.veil--dark-flavor {
  background:
    linear-gradient(90deg, rgba(18, 9, 6, .95) 0%, rgba(18, 9, 6, .72) 43%, rgba(18, 9, 6, .04) 78%),
    linear-gradient(0deg, rgba(62, 16, 25, .35), transparent 50%);
}

.photo--white-flavor {
  left: 46%;
}

.photo--white-flavor img {
  object-position: 69% 49%;
  filter: saturate(.84) contrast(1.02) brightness(.96);
}

.veil--white-flavor {
  background: linear-gradient(90deg, var(--paper) 0%, rgba(251, 244, 232, .98) 39%, rgba(251, 244, 232, .66) 56%, rgba(251, 244, 232, 0) 76%);
}

.slide--white-flavor {
  background: var(--paper);
  color: var(--ink);
}

.flavor-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 47cqw;
  transform: translateY(-50%);
}

.flavor-copy--left {
  left: 4.7cqw;
}

.flavor-copy--right {
  left: 4.7cqw;
}

.flavor-copy h2 {
  font-size: 6.3cqw;
  line-height: .78;
}

.flavor-copy h2 em {
  color: var(--gold);
}

.slide--white-flavor .flavor-copy h2 em {
  color: var(--wine);
}

.flavor-promise {
  max-width: 29cqw;
  margin: 2cqw 0 0;
  color: rgba(255, 250, 240, .76);
  font-family: "Archivo", sans-serif;
  font-size: 1.02cqw;
  font-style: italic;
  line-height: 1.5;
}

.slide--white-flavor .flavor-promise {
  color: rgba(23, 17, 13, .7);
}

.floating-pack {
  position: absolute;
  z-index: 4;
  height: 36cqw;
  object-fit: contain;
  filter: drop-shadow(0 2cqw 2.8cqw rgba(0, 0, 0, .35));
  transform: rotate(var(--pack-rotate));
  will-change: transform;
}

.slide.is-active .floating-pack {
  animation: pack-enter 1.05s 180ms var(--ease) both;
}

@keyframes pack-enter {
  from {
    opacity: 0;
    transform: translate3d(3.5cqw, 4cqw, 0) rotate(calc(var(--pack-rotate) + 5deg)) scale(.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--pack-rotate)) scale(1);
  }
}

.floating-pack--dark {
  --pack-rotate: 6deg;
  right: 11cqw;
  bottom: 6cqw;
}

.floating-pack--white {
  --pack-rotate: -5deg;
  right: 8.2cqw;
  bottom: 5.3cqw;
  height: 38cqw;
}

.reveal-button {
  display: inline-flex;
  width: max-content;
  margin-top: 2.4cqw;
  padding: .82cqw 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 240, .6);
  align-items: center;
  gap: 2cqw;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: .75cqw;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: gap 260ms ease, border-color 260ms ease;
}

.reveal-button:hover,
.reveal-button:focus-visible {
  gap: 2.6cqw;
  border-color: var(--gold);
  outline: none;
}

.reveal-button--dark {
  border-color: rgba(23, 17, 13, .45);
  color: var(--ink);
}

.flavor-specs {
  position: absolute;
  z-index: 5;
  right: 4.5cqw;
  bottom: 4.4cqw;
  display: flex;
  gap: 2.8cqw;
}

.flavor-specs p {
  margin: 0;
}

.flavor-specs strong {
  display: block;
  font-family: "Lilita One", "Arial Black", sans-serif;
  font-size: 1.7cqw;
  font-weight: 400;
}

.flavor-specs span {
  color: rgba(255, 250, 240, .55);
  font-size: .66cqw;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.flavor-specs--dark strong {
  color: var(--ink);
}

.flavor-specs--dark span {
  color: rgba(23, 17, 13, .52);
}

.photo--pistachio img {
  object-position: center;
  filter: saturate(.88) brightness(.84);
}

.veil--pistachio {
  background:
    linear-gradient(90deg, rgba(12, 13, 7, .96) 0%, rgba(12, 13, 7, .73) 43%, rgba(12, 13, 7, .03) 73%),
    linear-gradient(0deg, rgba(15, 18, 8, .4), transparent 50%);
}

.pistachio-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 4.8cqw;
  width: 44cqw;
  transform: translateY(-50%);
}

.pistachio-copy h2 {
  color: #d2d99c;
  font-size: 7.1cqw;
  line-height: .86;
}

.pistachio-copy > p:not(.kicker) {
  margin: 1.8cqw 0 0;
  color: rgba(255, 250, 240, .78);
  font-family: "Archivo", sans-serif;
  font-size: 1.08cqw;
  font-style: italic;
}

.pistachio-specs {
  display: flex;
  margin-top: 2cqw;
  gap: 2.2cqw;
  color: rgba(255, 250, 240, .58);
  font-size: .75cqw;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pistachio-specs strong {
  color: var(--white);
  font-size: 1.1cqw;
}

.asset-disclosure {
  position: absolute;
  z-index: 4;
  right: 4.6cqw;
  bottom: 4.3cqw;
  max-width: 24cqw;
  margin: 0;
  color: rgba(255, 250, 240, .52);
  font-size: .6cqw;
  line-height: 1.5;
  text-align: right;
}

/* 08 — canais */

.photo--channels img {
  object-position: 50% 50%;
  filter: saturate(.82) brightness(.77) contrast(1.03);
}

.veil--channels {
  background:
    linear-gradient(90deg, rgba(22, 12, 8, .9), rgba(22, 12, 8, .35) 52%, rgba(22, 12, 8, .08)),
    linear-gradient(0deg, rgba(23, 8, 11, .82), transparent 58%);
}

.channels-copy {
  position: absolute;
  z-index: 4;
  top: 7cqw;
  left: 4.7cqw;
  width: 52cqw;
}

.channels-copy h2 {
  font-size: 5.6cqw;
  line-height: .84;
}

.channels-copy h2 em {
  color: var(--gold);
}

.channels-copy > p:not(.kicker) {
  max-width: 28cqw;
  margin: 2cqw 0 0;
  color: rgba(255, 250, 240, .76);
  font-size: .94cqw;
  line-height: 1.5;
}

.channel-ribbon {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 1.65cqw 4.8cqw;
  border-top: 1px solid rgba(255, 250, 240, .28);
  align-items: center;
  justify-content: space-between;
  background: rgba(23, 8, 11, .66);
  backdrop-filter: blur(8px);
}

.channel-ribbon span {
  color: rgba(255, 250, 240, .88);
  font-family: "Lilita One", "Arial Black", sans-serif;
  font-size: .9cqw;
}

/* 09 — comercial */

.slide--commercial {
  background:
    radial-gradient(circle at 82% 48%, rgba(207, 159, 89, .26), transparent 31%),
    var(--cream);
  color: var(--ink);
}

.commercial-copy {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  width: 51%;
  height: 100%;
  padding: 5.3cqw 2cqw 4.5cqw 4.8cqw;
  flex-direction: column;
  justify-content: center;
}

.commercial-copy h2 {
  font-size: 5.2cqw;
  line-height: .86;
}

.commercial-numbers {
  display: flex;
  margin-top: 2.6cqw;
  gap: 4cqw;
}

.commercial-numbers div {
  display: flex;
  width: 14cqw;
  border-top: 1px solid rgba(23, 17, 13, .28);
  flex-direction: column;
}

.commercial-numbers strong {
  padding-top: .7cqw;
  font-family: "Lilita One", "Arial Black", sans-serif;
  font-size: 3.3cqw;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
}

.commercial-numbers span {
  margin-top: .3cqw;
  color: rgba(23, 17, 13, .64);
  font-size: .68cqw;
  line-height: 1.35;
  text-transform: uppercase;
}

.validation-flag {
  margin: 1.2cqw 0 0;
  color: rgba(23, 17, 13, .5);
  font-size: .58cqw;
}

.display-stage {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  overflow: hidden;
}

.display-halo {
  position: absolute;
  right: 9cqw;
  bottom: 2.5cqw;
  width: 31cqw;
  height: 31cqw;
  border-radius: 50%;
  background: rgba(255, 250, 240, .54);
  box-shadow: 0 0 0 1px rgba(23, 17, 13, .05);
}

.display {
  position: absolute;
  z-index: 3;
  width: 31cqw;
  filter: drop-shadow(0 2.3cqw 2.6cqw rgba(45, 26, 13, .23));
  transform: rotate(var(--display-rotate));
  will-change: transform;
}

.slide.is-active .display {
  animation: display-enter 1.05s var(--ease) both;
}

.slide.is-active .display--white {
  animation-delay: 120ms;
}

.slide.is-active .display--dark {
  animation-delay: 260ms;
}

@keyframes display-enter {
  from {
    opacity: 0;
    transform: translate3d(4cqw, 5cqw, 0) rotate(calc(var(--display-rotate) + 6deg)) scale(.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--display-rotate)) scale(1);
  }
}

.display--white {
  --display-rotate: -5deg;
  right: 19cqw;
  bottom: 4.8cqw;
}

.display--dark {
  --display-rotate: 4deg;
  right: 3.2cqw;
  bottom: 3.7cqw;
}

/* 10 — contato */

.photo--contact img {
  object-position: 58% 52%;
  filter: saturate(.86) brightness(.75) contrast(1.03);
}

.veil--contact {
  background:
    linear-gradient(90deg, rgba(20, 8, 9, .96) 0%, rgba(20, 8, 9, .78) 45%, rgba(20, 8, 9, .08) 78%),
    linear-gradient(0deg, rgba(70, 13, 24, .42), transparent 52%);
}

.contact-copy {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  display: flex;
  width: 58%;
  height: 100%;
  padding: 4.1cqw 4.8cqw;
  flex-direction: column;
}

.logo--contact {
  margin-bottom: auto;
}

.contact-copy h2 {
  font-size: 4.7cqw;
  line-height: .91;
}

.contact-copy > p {
  margin: 1.5cqw 0 0;
  color: rgba(255, 250, 240, .72);
  font-size: .92cqw;
}

.contact-copy address {
  display: grid;
  margin-top: 2.2cqw;
  grid-template-columns: repeat(2, max-content);
  gap: .6cqw 2.4cqw;
  font-style: normal;
}

.contact-copy address strong {
  grid-column: 1 / -1;
  font-family: "Lilita One", "Arial Black", sans-serif;
  font-size: 1.25cqw;
  font-weight: 400;
}

.contact-copy address a {
  color: rgba(255, 250, 240, .76);
  font-size: .75cqw;
  text-decoration: none;
}

.contact-copy address a:hover,
.contact-copy address a:focus-visible {
  color: var(--gold);
  outline: none;
}

/* Detalhes sob demanda */

.detail-sheet,
.notes-panel {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(39rem, 92vw);
  padding: clamp(2.3rem, 5vw, 5rem);
  overflow: auto;
  transform: translateX(105%);
  background: var(--paper);
  color: var(--ink);
  box-shadow: -30px 0 80px rgba(0, 0, 0, .35);
  transition: transform 560ms var(--ease);
}

.detail-sheet[aria-hidden="false"],
.notes-panel[aria-hidden="false"] {
  transform: translateX(0);
}

body.sheet-open .deck,
body.notes-open .deck {
  transform: translateX(-8vw) scale(.94);
  filter: brightness(.55);
}

.detail-sheet__close,
.notes-panel__close {
  display: block;
  margin: 0 0 clamp(4rem, 12vh, 8rem) auto;
  padding: .55rem 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 17, 13, .32);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.detail-sheet h2,
.notes-panel h2 {
  margin: 0;
  font-family: "Lilita One", "Arial Black", sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .9;
}

.detail-sheet__content {
  margin-top: 2.5rem;
}

.detail-sheet__content > p {
  margin: 0 0 1.4rem;
  color: rgba(23, 17, 13, .72);
  font-size: 1rem;
  line-height: 1.65;
}

.detail-sheet__content ul,
.detail-sheet__content dl {
  margin: 2rem 0 0;
  padding: 0;
}

.detail-sheet__content ul {
  border-top: 1px solid rgba(23, 17, 13, .2);
  list-style: none;
}

.detail-sheet__content li {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(23, 17, 13, .13);
}

.detail-sheet__content dl div {
  display: grid;
  padding: .78rem 0;
  border-bottom: 1px solid rgba(23, 17, 13, .13);
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
}

.detail-sheet__content dt {
  color: rgba(23, 17, 13, .48);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-sheet__content dd {
  margin: 0;
  line-height: 1.45;
}

.detail-sheet__alert {
  margin-top: 2rem !important;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--wine);
  background: rgba(117, 31, 46, .08);
  font-size: .82rem !important;
}

/* Notas internas */

.notes-panel {
  width: min(32rem, 92vw);
  background: #13100d;
  color: var(--white);
}

.notes-panel__close {
  border-color: rgba(255, 250, 240, .26);
  color: var(--white);
}

.notes-panel__page {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.notes-panel h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.notes-panel__status {
  display: flex;
  margin-top: 1.6rem;
  flex-wrap: wrap;
  gap: .55rem;
}

.note-status {
  padding: .4rem .65rem;
  border: 1px solid rgba(255, 250, 240, .22);
  color: rgba(255, 250, 240, .7);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.note-status--pending {
  border-color: rgba(207, 159, 89, .64);
  color: #ebc785;
}

.notes-panel__content {
  margin-top: 2rem;
  color: rgba(255, 250, 240, .68);
  font-size: .92rem;
  line-height: 1.65;
}

.notes-panel__content strong {
  color: var(--white);
}

/* Navegação */

.controls {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 1rem;
  display: flex;
  height: 2.7rem;
  padding: 0 .55rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 99px;
  align-items: center;
  gap: .55rem;
  transform: translateX(-50%);
  background: rgba(8, 6, 4, .64);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
  opacity: .35;
  transition: opacity 220ms ease, transform 560ms var(--ease);
}

.controls:hover,
.controls:focus-within {
  opacity: 1;
}

body.sheet-open .controls,
body.notes-open .controls {
  transform: translateX(calc(-50% - 8vw));
}

.control {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
}

.control:disabled {
  opacity: .25;
  cursor: default;
}

.control--arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1rem;
}

.control--arrow:not(:disabled):hover,
.control--arrow:focus-visible {
  background: rgba(255, 255, 255, .1);
  outline: none;
}

.control--text {
  padding: .5rem .55rem;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.control--text:hover,
.control--text:focus-visible {
  color: var(--gold);
  outline: none;
}

.progress {
  width: 6.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--gold);
  transition: width 500ms var(--ease);
}

#pageCounter {
  min-width: 3.8rem;
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  text-align: center;
}

.swipe-cue {
  position: fixed;
  z-index: 60;
  right: .75rem;
  bottom: 50%;
  display: none;
  color: rgba(255, 255, 255, .48);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right bottom;
}

/* V3 — leitura, hierarquia e affordance */

.kicker {
  margin-bottom: 1.35cqw;
  font-size: clamp(.72rem, .9cqw, 1rem);
  font-weight: 700;
  letter-spacing: .19em;
}

.topline span {
  font-size: clamp(.7rem, .82cqw, .95rem);
}

.cover-copy h1 {
  font-size: 6.55cqw;
}

.deckline {
  max-width: 36cqw;
  font-size: clamp(.98rem, 1.12cqw, 1.35rem);
}

.sensory-copy h2 {
  font-size: 6.65cqw;
}

.sensory-caption p {
  font-size: clamp(.88rem, 1.02cqw, 1.2rem);
}

.ingredient-copy h2 {
  font-size: 5.35cqw;
}

.ingredient-copy > p:not(.kicker) {
  font-size: clamp(.9rem, 1.08cqw, 1.2rem);
}

.ingredient-facts span {
  font-size: clamp(.72rem, .86cqw, .95rem);
}

.lineup-copy h2 {
  font-size: 5.95cqw;
}

.flavor-index span {
  font-size: clamp(.66rem, .72cqw, .82rem);
}

.flavor-index strong {
  font-size: clamp(1rem, 1.38cqw, 1.55rem);
}

.photo--dark-flavor img {
  object-position: 58% 50%;
  filter: saturate(.9) contrast(1.06) brightness(.78);
}

.veil--dark-flavor {
  background:
    linear-gradient(90deg, rgba(18, 9, 6, .98) 0%, rgba(18, 9, 6, .82) 42%, rgba(18, 9, 6, .08) 72%),
    linear-gradient(0deg, rgba(62, 16, 25, .35), transparent 50%);
}

.photo--white-flavor {
  left: 43%;
}

.photo--white-flavor img {
  object-position: 38% 52%;
}

.veil--white-flavor {
  background: linear-gradient(90deg, var(--paper) 0%, rgba(251, 244, 232, .99) 42%, rgba(251, 244, 232, .72) 54%, rgba(251, 244, 232, 0) 72%);
}

.flavor-copy {
  top: 49%;
  width: 49cqw;
}

.flavor-copy h2 {
  font-size: 8.1cqw;
  line-height: .76;
}

.slide--white-flavor .flavor-copy h2 {
  font-size: 7.55cqw;
}

.flavor-promise {
  max-width: 34cqw;
  margin-top: 1.6cqw;
  color: rgba(255, 250, 240, .86);
  font-size: clamp(.98rem, 1.14cqw, 1.28rem);
}

.flavor-specs {
  position: static;
  display: flex;
  margin-top: 1.55cqw;
  gap: .8cqw;
}

.flavor-specs p {
  min-width: 10.5cqw;
  margin: 0;
  padding: .72cqw .9cqw;
  border: 1px solid rgba(255, 250, 240, .28);
  border-radius: .75cqw;
  background: rgba(18, 9, 6, .32);
  backdrop-filter: blur(10px);
}

.flavor-specs strong {
  font-size: clamp(1.05rem, 1.38cqw, 1.55rem);
}

.flavor-specs span {
  font-size: clamp(.65rem, .72cqw, .8rem);
}

.flavor-specs--dark p {
  border-color: rgba(23, 17, 13, .18);
  background: rgba(255, 255, 255, .58);
}

.reveal-button {
  display: inline-flex;
  width: auto;
  min-width: 19rem;
  margin-top: 1.65cqw;
  padding: .72rem .75rem .72rem 1.15rem;
  border: 1px solid rgba(255, 250, 240, .7);
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: rgba(255, 250, 240, .96);
  color: var(--ink);
  box-shadow: 0 .75rem 2.4rem rgba(0, 0, 0, .2);
  font-size: clamp(.92rem, 1.02cqw, 1.08rem);
  font-weight: 750;
  letter-spacing: .01em;
  text-align: left;
  text-transform: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.reveal-button:hover,
.reveal-button:focus-visible {
  border-color: rgba(255, 250, 240, .92);
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: 0 1.05rem 3rem rgba(0, 0, 0, .28);
  outline: 3px solid rgba(207, 159, 89, .7);
  outline-offset: 3px;
}

.reveal-button--dark {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}

.reveal-button--dark:hover,
.reveal-button--dark:focus-visible {
  border-color: var(--wine-deep);
  background: var(--wine-deep);
}

.reveal-button--pistachio {
  border-color: #d2d99c;
  background: #d2d99c;
}

.reveal-button__icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 1.15rem;
  transition: transform 220ms ease;
}

.reveal-button--dark .reveal-button__icon {
  background: var(--white);
  color: var(--wine);
}

.reveal-button:hover .reveal-button__icon,
.reveal-button:focus-visible .reveal-button__icon {
  transform: rotate(45deg);
}

.pistachio-copy {
  width: 50cqw;
}

.pistachio-copy h2 {
  font-size: 8.8cqw;
}

.pistachio-copy > p:not(.kicker) {
  font-size: clamp(.98rem, 1.15cqw, 1.3rem);
}

.pistachio-specs {
  gap: .8cqw;
  font-size: clamp(.65rem, .72cqw, .8rem);
}

.pistachio-specs strong {
  font-size: clamp(1.05rem, 1.3cqw, 1.45rem);
}

.pistachio-specs span {
  min-width: 11.2cqw;
  padding: .72cqw .9cqw;
  border: 1px solid rgba(210, 217, 156, .32);
  border-radius: .75cqw;
  background: rgba(7, 9, 4, .34);
  backdrop-filter: blur(10px);
}

.asset-disclosure {
  font-size: clamp(.62rem, .67cqw, .75rem);
}

.channels-copy h2 {
  font-size: 6.35cqw;
}

.channels-copy > p:not(.kicker) {
  max-width: 32cqw;
  font-size: clamp(.92rem, 1.06cqw, 1.2rem);
}

.channel-ribbon {
  right: 3cqw;
  bottom: 4.8rem;
  left: 3cqw;
  padding: 1.05cqw 1.6cqw;
  border: 1px solid rgba(255, 250, 240, .22);
  border-radius: 1rem;
}

.channel-ribbon span {
  font-size: clamp(.76rem, .98cqw, 1.08rem);
}

.commercial-copy h2 {
  font-size: 5.8cqw;
}

.commercial-numbers strong {
  font-size: 3.65cqw;
}

.commercial-numbers span {
  font-size: clamp(.68rem, .78cqw, .88rem);
}

.validation-flag {
  font-size: clamp(.62rem, .67cqw, .76rem);
}

.contact-copy h2 {
  font-size: 5.2cqw;
}

.contact-copy > p {
  font-size: clamp(.9rem, 1.05cqw, 1.18rem);
}

.contact-copy address strong {
  font-size: clamp(1.08rem, 1.42cqw, 1.6rem);
}

.contact-copy address a {
  font-size: clamp(.88rem, 1cqw, 1.08rem);
}

.detail-sheet {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: 100%;
  max-height: min(78vh, 44rem);
  padding: clamp(3rem, 4.5vw, 5rem) clamp(3rem, 6vw, 7rem);
  border-radius: 2rem 2rem 0 0;
  grid-template-columns: minmax(16rem, .78fr) minmax(30rem, 1.22fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(3rem, 6vw, 7rem);
  overflow: auto;
  transform: translateY(105%);
  box-shadow: 0 -30px 90px rgba(0, 0, 0, .42);
}

.detail-sheet::before {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 4.5rem;
  height: .3rem;
  border-radius: 99px;
  content: "";
  transform: translateX(-50%);
  background: rgba(23, 17, 13, .18);
}

.detail-sheet[aria-hidden="false"] {
  transform: translateY(0);
}

.notes-panel[aria-hidden="false"] {
  transform: translateX(0);
}

.detail-sheet > .kicker {
  grid-column: 1;
  grid-row: 1;
}

.detail-sheet h2 {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  font-size: clamp(3.4rem, 5.4vw, 5.8rem);
}

.detail-sheet__content {
  margin-top: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.detail-sheet__content > p,
.detail-sheet__content li,
.detail-sheet__content dd {
  font-size: clamp(.98rem, 1.12vw, 1.15rem);
}

.detail-sheet__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
}

.detail-sheet__close {
  position: absolute;
  z-index: 2;
  top: 1.4rem;
  right: 2rem;
  margin: 0;
  padding: .7rem 1rem;
  border: 1px solid rgba(23, 17, 13, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
  font-size: .75rem;
}

body.sheet-open .deck {
  transform: translateY(-8vh) scale(.94);
  filter: brightness(.42);
}

body.notes-open .deck {
  transform: translateX(-8vw) scale(.94);
}

body.sheet-open .controls {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(1rem);
}

.controls {
  height: 3rem;
  opacity: .68;
}

.control--arrow {
  width: 2.25rem;
  height: 2.25rem;
}

.control--text {
  font-size: .7rem;
}

#pageCounter {
  font-size: .76rem;
}

@media (max-width: 900px), (pointer: coarse) {
  .controls {
    bottom: .55rem;
    opacity: 1;
  }

  .control--text {
    display: none;
  }

  .swipe-cue {
    display: block;
  }

  .detail-sheet {
    display: block;
    max-height: 88vh;
    padding: 4.2rem 1.25rem 2rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .detail-sheet > .kicker {
    margin-bottom: .75rem;
  }

  .detail-sheet h2 {
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .detail-sheet__content {
    margin-top: 1.6rem;
  }

  .detail-sheet__content ul {
    display: block;
  }

  .detail-sheet__content dl div {
    grid-template-columns: 7rem 1fr;
  }

  .detail-sheet__close {
    top: 1rem;
    right: 1rem;
  }

}

@media (max-aspect-ratio: 4 / 5) {
  .slide {
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
  }

  .slide h1,
  .slide h2 {
    font-size: clamp(3.2rem, 15vw, 6rem);
  }

  .ingredient-photo {
    right: 0;
    bottom: 42%;
  }

  .ingredient-copy {
    top: 55%;
    width: 100%;
    height: 45%;
    padding: 1.35rem 1.25rem 4.6rem;
  }

  .flavor-index,
  .channel-ribbon {
    overflow: hidden;
    gap: 1.2rem;
  }

  .cover-copy {
    right: 1.25rem;
    bottom: 6rem;
    left: 1.25rem;
    width: auto;
  }

  .cover-copy h1 {
    font-size: clamp(3.6rem, 16vw, 6rem);
  }

  .deckline {
    max-width: 34rem;
    font-size: 1rem;
  }

  .topline {
    top: 1.25rem;
    right: 1.25rem;
    left: 1.25rem;
  }

  .logo {
    width: 8.5rem;
  }

  .sensory-copy,
  .lineup-copy,
  .channels-copy {
    top: 5.5rem;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
  }

  .sensory-caption {
    right: auto;
    bottom: 6rem;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
  }

  .lineup-copy h2,
  .channels-copy h2 {
    font-size: clamp(3.4rem, 15vw, 5.6rem);
  }

  .flavor-index {
    right: 1.25rem;
    bottom: 5rem;
    left: 1.25rem;
    width: auto;
  }

  .flavor-index strong {
    font-size: .95rem;
  }

  .photo--white-flavor {
    left: 0;
  }

  .photo--white-flavor img {
    object-position: 37% center;
  }

  .veil--dark-flavor,
  .veil--pistachio {
    background: linear-gradient(0deg, rgba(12, 8, 6, .98) 0%, rgba(12, 8, 6, .84) 43%, rgba(12, 8, 6, .05) 78%);
  }

  .veil--white-flavor {
    background: linear-gradient(0deg, rgba(251, 244, 232, .99) 0%, rgba(251, 244, 232, .9) 44%, rgba(251, 244, 232, .04) 78%);
  }

  .flavor-copy,
  .pistachio-copy {
    top: auto;
    right: 1rem;
    bottom: 5rem;
    left: 1rem;
    width: auto;
    padding: 1.25rem;
    border: 1px solid rgba(255, 250, 240, .14);
    border-radius: 1.35rem;
    transform: none;
    background: rgba(18, 9, 6, .72);
    box-shadow: 0 1.2rem 3.4rem rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
  }

  .slide--white-flavor .flavor-copy {
    border-color: rgba(23, 17, 13, .12);
    background: rgba(251, 244, 232, .9);
  }

  .flavor-copy h2,
  .slide--white-flavor .flavor-copy h2,
  .pistachio-copy h2 {
    font-size: clamp(3.7rem, 15vw, 5.7rem);
  }

  .flavor-promise,
  .pistachio-copy > p:not(.kicker) {
    max-width: none;
    margin-top: 1rem;
    font-size: .98rem;
  }

  .flavor-specs,
  .pistachio-specs {
    margin-top: 1rem;
    gap: .55rem;
  }

  .flavor-specs p,
  .pistachio-specs span {
    min-width: 0;
    flex: 1;
    padding: .65rem .75rem;
    border-radius: .75rem;
  }

  .reveal-button {
    width: 100%;
    min-width: 0;
    margin-top: 1rem;
  }

  .asset-disclosure {
    top: 1rem;
    right: 1rem;
    bottom: auto;
    max-width: 70vw;
    padding: .5rem .65rem;
    border-radius: .5rem;
    background: rgba(8, 8, 4, .64);
    color: rgba(255, 250, 240, .82);
  }

  .channel-ribbon {
    bottom: 4.35rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .7rem 1.1rem;
  }

  .channel-ribbon span {
    font-size: .9rem;
  }

  .commercial-copy {
    width: 100%;
    height: 56%;
    padding: 1.6rem 1.25rem;
    justify-content: center;
  }

  .commercial-copy h2 {
    font-size: clamp(3.4rem, 14vw, 5.3rem);
  }

  .commercial-numbers {
    margin-top: 1.35rem;
    gap: 1rem;
  }

  .commercial-numbers div {
    width: 46%;
  }

  .commercial-numbers strong {
    font-size: 2.5rem;
  }

  .display-stage {
    top: 50%;
    width: 100%;
    height: 50%;
  }

  .contact-copy {
    width: 100%;
    padding: 1.4rem 1.25rem 5rem;
  }

  .contact-copy h2 {
    font-size: clamp(3.2rem, 13vw, 5rem);
  }

  .contact-copy address {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .controls {
    width: calc(100% - 1.25rem);
    justify-content: center;
  }

  .progress {
    width: min(7rem, 25vw);
  }
}

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

@media print {
  @page {
    size: 16in 9in;
    margin: 0;
  }

  html,
  body {
    height: auto;
    overflow: visible;
    background: white;
  }

  .deck {
    position: static;
    display: block;
  }

  .slide,
  .slide.is-active {
    position: relative;
    display: block;
    width: 16in;
    height: 9in;
    break-after: page;
    box-shadow: none;
    animation: none;
  }

  .controls,
  .detail-sheet,
  .notes-panel,
  .swipe-cue {
    display: none !important;
  }
}
