/* ==========================================================================
   Elixir da Amazônia · Edição de Colecionador
   Direção A do sistema de design: Papel/Creme/Tinto/Cobre,
   Cormorant Garamond + Hanken Grotesk, rótulos em caixa alta 0.26em.
   ========================================================================== */

:root {
  --tinto: #5A1626;
  --borra: #3A0E18;
  --rubi: #7C2236;
  --cobre: #A9763F;
  --cobre-claro: #C49A63;
  --cobre-texto: #8A5A28; /* cobre mais escuro: contraste AA para texto pequeno em fundo claro */
  --creme: #F4EEE3;
  --papel: #FBF8F4;
  --tinta: #1C1416;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --hairline: 1px solid color-mix(in srgb, var(--cobre) 32%, transparent);
  --hairline-soft: 1px solid color-mix(in srgb, var(--cobre) 18%, transparent);

  --size-hero: clamp(2.7rem, 6.4vw, 5.6rem);
  --size-h2: clamp(2.1rem, 4.4vw, 3.6rem);
  --size-h3: clamp(1.3rem, 1.9vw, 1.7rem);
  --size-ghost: clamp(11rem, 26vw, 24rem);

  --space-chapter: clamp(6rem, 14vw, 11rem);
  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --rail: clamp(0rem, 6vw, 5.5rem);
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--tinta);
  background: var(--papel);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, .hero-end-line, .manifesto p {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--tinta);
}

h1 em, h2 em, h3 em, .hero-end-line em, .manifesto em {
  font-style: italic;
  color: var(--rubi);
}

h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-h2); margin-bottom: 1.4rem; }
h3 { font-size: var(--size-h3); }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cobre-texto);
}

.body-text {
  max-width: 34rem;
  margin-bottom: 1.2rem;
  color: color-mix(in srgb, var(--tinta) 82%, var(--papel));
}

.section-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: color-mix(in srgb, var(--tinta) 65%, var(--papel));
}

.dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 3.2em;
  line-height: 0.82;
  padding-right: 0.12em;
  color: var(--tinto);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.9em;
  border: 1px solid transparent;
  border-radius: 2em;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary { background: var(--tinto); color: var(--creme); }
.btn-primary:hover { background: var(--rubi); }

.btn-ghost {
  color: var(--tinto);
  border-color: color-mix(in srgb, var(--cobre) 55%, transparent);
}
.btn-ghost:hover { border-color: var(--cobre); color: var(--rubi); }

.btn-copper { background: var(--cobre-claro); color: var(--tinta); border: none; }
.btn-copper:hover { background: var(--creme); color: var(--tinta); }

.btn-small { padding: 0.7em 1.5em; }

:focus-visible { outline: 2px solid var(--cobre); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   Navegação
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: color-mix(in srgb, var(--papel) 92%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--cobre) 25%, transparent);
}

.nav-brand {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tinta);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: clamp(0.9rem, 2.2vw, 1.9rem); }

.nav-links a:not(.btn) {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--tinta) 75%, var(--papel));
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--rubi); }

/* --------------------------------------------------------------------------
   Hero · vídeo servido pelo scroll
   -------------------------------------------------------------------------- */
.hero-track { height: 400vh; position: relative; }

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  max-width: min(48rem, 94vw);
  pointer-events: none;
}

.hero-overlay .label { margin-bottom: 1.4rem; }

.hero-overlay-start { align-items: flex-start; text-align: left; }

.hero-sub {
  max-width: 29rem;
  margin-top: 1.5rem;
  color: color-mix(in srgb, var(--tinta) 78%, var(--papel));
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
  pointer-events: auto;
}

.hero-overlay-end {
  left: auto;
  right: 0;
  align-items: flex-end;
  text-align: right;
  max-width: 42rem;
  opacity: 0;
}

.hero-end-line { font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.08; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: opacity 0.4s ease;
}

.hint-line {
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(to bottom, var(--cobre), transparent);
  animation: hint-drop 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes hint-drop {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Manifesto · citação de abertura
   -------------------------------------------------------------------------- */
.manifesto {
  position: relative;
  background: var(--tinto);
  padding: clamp(6rem, 14vw, 10rem) var(--gutter);
  overflow: clip;
}

.manifesto-mark {
  position: absolute;
  top: -0.12em;
  left: clamp(0.5rem, 6vw, 6rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14rem, 30vw, 28rem);
  line-height: 1;
  color: color-mix(in srgb, var(--rubi) 55%, var(--tinto));
  pointer-events: none;
  user-select: none;
}

.manifesto blockquote {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.manifesto p {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  color: var(--creme);
  line-height: 1.3;
}

.manifesto em { color: var(--cobre-claro); }

.manifesto cite { display: block; margin-top: 2.4rem; font-style: normal; color: var(--cobre-claro); }

/* --------------------------------------------------------------------------
   Capítulos · estrutura editorial
   -------------------------------------------------------------------------- */
.chapter {
  position: relative;
  padding: var(--space-chapter) var(--gutter);
  scroll-margin-top: 4.5rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.chapter-body {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--rail);
}

/* trilho do capítulo: numeral + nome presos à esquerda */
.chapter-rail {
  position: absolute;
  top: var(--space-chapter);
  bottom: var(--space-chapter);
  left: var(--gutter);
  width: 1px;
  background: linear-gradient(to bottom,
    color-mix(in srgb, var(--cobre) 45%, transparent),
    color-mix(in srgb, var(--cobre) 8%, transparent));
  pointer-events: none;
}

.chapter-rail .chapter-num,
.chapter-rail .chapter-name {
  position: sticky;
  top: 7rem;
  display: block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: transparent;
  margin-left: -0.55em;
  padding: 0.8em 0;
  white-space: nowrap;
}

.chapter-rail .chapter-name {
  top: calc(7rem + 13em);
  color: color-mix(in srgb, var(--tinta) 65%, var(--papel));
}

/* numeral fantasma atrás do conteúdo */
.ghost-numeral {
  position: absolute;
  top: 0.02em;
  right: -0.04em;
  z-index: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--size-ghost);
  line-height: 1;
  color: color-mix(in srgb, var(--cobre) 13%, transparent);
  pointer-events: none;
  user-select: none;
}

.ghost-lower { top: auto; bottom: 0.05em; }

/* --------------------------------------------------------------------------
   Capítulo I · O Elixir
   -------------------------------------------------------------------------- */
.elixir { background: var(--papel); }

.elixir-grid {
  display: grid;
  grid-template-columns: minmax(240px, 5fr) 7fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.elixir-figure {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 2.5rem);
}

/* painel creme deslocado atrás da garrafa */
.elixir-panel {
  position: absolute;
  inset: 8% -6% -8% 14%;
  background: var(--creme);
  z-index: -1;
}

.elixir-figure img {
  width: min(100%, 24rem);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 34px 44px rgba(28, 20, 22, 0.22));
}

.elixir-copy { position: relative; z-index: 1; }

.not-wine {
  margin-top: 1.8rem;
  padding: 1.5rem 0 0.4rem 1.6rem;
  border-left: 2px solid var(--cobre);
}

.not-wine p {
  max-width: 30rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--tinta) 85%, var(--papel));
}

.not-wine strong { font-weight: 600; color: var(--tinto); }
.not-wine .dropcap { font-size: 2.6em; color: var(--cobre); }

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: var(--hairline);
}

.stat {
  padding: 1.6rem 1.4rem 0 0;
  border-right: var(--hairline-soft);
}
.stat:last-child { border-right: none; }

.stat dd {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--tinto);
  line-height: 1.05;
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   Capítulo II · Vinho, licor ou elixir?
   -------------------------------------------------------------------------- */
.taxonomia { background: var(--creme); }

.taxonomia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: var(--hairline);
}

.definicao {
  position: relative;
  padding: 2.2rem clamp(1.2rem, 2.5vw, 2.4rem) 0.5rem 0;
  border-right: var(--hairline-soft);
}
.definicao + .definicao { padding-left: clamp(1.2rem, 2.5vw, 2.4rem); }
.definicao:last-child { border-right: none; padding-right: 0; }

.definicao-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cobre);
}

.definicao h3 { margin: 0.6rem 0 0.9rem; }

.definicao p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--tinta) 78%, var(--creme));
}

.definicao-elixir h3 { color: var(--tinto); }
.definicao-elixir h3::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--cobre);
}

/* --------------------------------------------------------------------------
   Capítulo III · A Origem
   -------------------------------------------------------------------------- */
.origem { background: var(--papel); padding-top: 0; }

.origem-hero {
  margin: 0 calc(-1 * var(--gutter)) var(--space-chapter);
  overflow: clip;
  max-height: 72vh;
}

.origem-hero img {
  width: 100%;
  height: auto;
  scale: 1.12;
  filter: sepia(0.18) saturate(0.92) contrast(1.02);
}

.origem-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.origem-figure {
  position: relative;
  margin-top: clamp(-6rem, -8vw, -3rem);
}

.origem-figure img {
  width: 100%;
  height: auto;
  filter: sepia(0.12) saturate(0.95);
  box-shadow: 0 30px 60px rgba(28, 20, 22, 0.22);
}

.origem-figure figcaption { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Capítulo IV · O Método
   -------------------------------------------------------------------------- */
.metodo { background: var(--creme); }

.metodo-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.steps { list-style: none; margin-top: clamp(2rem, 4vw, 3rem); }

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 1.8rem 0;
  border-top: var(--hairline-soft);
}
.step:first-child { border-top: var(--hairline); }

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1;
  color: var(--cobre);
  min-width: 2.2em;
}

.step h3 { margin-bottom: 0.5rem; }

.step p {
  max-width: 28rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--tinta) 78%, var(--creme));
}

.metodo-figure {
  position: sticky;
  top: 7rem;
}

.metodo-figure img {
  width: 100%;
  height: auto;
  filter: saturate(0.95) contrast(1.02);
  box-shadow: 0 30px 60px rgba(28, 20, 22, 0.25);
}

.metodo-figure figcaption { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Capítulo V · Notas de Prova + Harmonização
   -------------------------------------------------------------------------- */
.notas { background: var(--papel); }

.notas-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.notas-figure { position: relative; }

.notas-figure img {
  width: min(100%, 26rem);
  height: auto;
  filter: saturate(0.98);
  box-shadow: 0 30px 60px rgba(28, 20, 22, 0.28);
}

.notas-figure figcaption { margin-top: 0.9rem; }

.provas { list-style: none; }

.prova {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 1.9rem 0;
  border-top: var(--hairline-soft);
}
.prova:first-child { border-top: var(--hairline); }
.prova:last-child { border-bottom: var(--hairline); }

.prova-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 0.9;
  color: color-mix(in srgb, var(--cobre) 55%, var(--papel));
  min-width: 1.8em;
}

.prova h3 { margin-bottom: 0.5rem; }

.prova p {
  max-width: 30rem;
  font-size: 0.97rem;
  color: color-mix(in srgb, var(--tinta) 78%, var(--papel));
}

.harmonizacao { margin-top: clamp(3.5rem, 8vw, 6rem); }

.harmonizacao-title { display: block; margin-bottom: 1.4rem; }

.harmonizacao-list { list-style: none; }

.harmonizacao-list li {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) 2fr;
  gap: 1rem 2rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-top: var(--hairline-soft);
}
.harmonizacao-list li:last-child { border-bottom: var(--hairline-soft); }

.harmonizacao-list strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.harmonizacao-list span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--tinta) 62%, var(--papel));
}

/* --------------------------------------------------------------------------
   Perguntas frequentes
   -------------------------------------------------------------------------- */
.faq { background: var(--creme); }

.faq-body { max-width: 52rem; }

.faq-list { margin-top: clamp(2rem, 4vw, 3rem); border-top: var(--hairline); }

.faq-list details { border-bottom: var(--hairline-soft); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4em;
  line-height: 1;
  color: var(--cobre);
  transition: rotate 0.25s ease;
}

.faq-list details[open] summary::after { rotate: 45deg; }

.faq-list details p {
  max-width: 44rem;
  padding: 0 0 1.6rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--tinta) 78%, var(--creme));
}

/* --------------------------------------------------------------------------
   Adquirir
   -------------------------------------------------------------------------- */
.adquirir {
  background: var(--tinto);
  padding: clamp(6rem, 12vw, 9rem) var(--gutter);
  text-align: center;
}

.adquirir h2, .adquirir p { color: var(--creme); }
.adquirir h2 em { color: var(--cobre-claro); }

.adquirir-inner { max-width: 40rem; margin: 0 auto; }

.signup {
  display: flex;
  gap: 0.7rem;
  max-width: 26rem;
  margin: 2.2rem auto 0;
}

.signup input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--creme);
  background: color-mix(in srgb, var(--borra) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--cobre-claro) 45%, transparent);
  border-radius: 2em;
  padding: 0.9em 1.4em;
}

.signup input::placeholder { color: color-mix(in srgb, var(--creme) 72%, transparent); }
.signup input:focus { outline: 2px solid var(--cobre-claro); outline-offset: 2px; }

.signup-done { margin-top: 1.6rem; color: var(--cobre-claro); }

.selos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.selos li {
  color: var(--cobre-claro);
  border: 1px solid color-mix(in srgb, var(--cobre-claro) 45%, transparent);
  border-radius: 2em;
  padding: 0.55em 1.2em;
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */
.footer {
  background: var(--borra);
  padding: 3.8rem var(--gutter) 3rem;
  text-align: center;
}

.footer-brand {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--creme);
  margin-bottom: 1.4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
  margin-bottom: 1.6rem;
}

.footer-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--creme) 60%, transparent);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--cobre-claro); }

.footer .label { color: color-mix(in srgb, var(--cobre-claro) 80%, transparent); }

.footer-fine {
  max-width: 36rem;
  margin: 1.6rem auto 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--creme) 55%, transparent);
}

/* --------------------------------------------------------------------------
   Revelação ao rolar
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: calc(var(--stagger, 0) * 90ms);
}

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

/* --------------------------------------------------------------------------
   Movimento reduzido / responsivo
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-track { height: 100vh; }
  .hero-overlay-end, .hero-scroll-hint { display: none; }
  .hint-line { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-parallax] { transform: none !important; }
}

@media (max-width: 960px) {
  .elixir-grid,
  .origem-grid,
  .metodo-grid,
  .notas-grid { grid-template-columns: 1fr; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { padding-top: 1.2rem; }

  .taxonomia-grid { grid-template-columns: 1fr; border-top: none; }
  .definicao {
    border-right: none;
    border-top: var(--hairline);
    padding: 2rem 0 0.6rem;
  }
  .definicao + .definicao { padding-left: 0; }

  .origem-figure { margin-top: 0; max-width: 26rem; }
  .metodo-figure { position: static; max-width: 26rem; }
  .notas-figure { order: 2; max-width: 22rem; }

  .harmonizacao-list li { grid-template-columns: 1fr; gap: 0.2rem; }

  .ghost-numeral { font-size: clamp(9rem, 34vw, 14rem); }
  .chapter-rail { display: none; }
  .chapter-body { padding-left: 0; }
}

@media (max-width: 860px) {
  .nav-links a:not(.btn) { display: none; }

  .hero-track { height: 300vh; }

  /* No retrato, o corte do vídeo deixa a garrafa escura atrás do texto.
     Um véu de papel sobe do rodapé do quadro para garantir a leitura,
     sem esconder o vídeo. */
  .hero-overlay-start {
    justify-content: flex-end;
    padding-bottom: 7rem;
    max-width: none;
    right: 0;
  }

  .hero-overlay-start::before,
  .hero-overlay-end::before {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 72%;
    z-index: -1;
    background: linear-gradient(to top,
      var(--papel) 34%,
      color-mix(in srgb, var(--papel) 85%, transparent) 62%,
      color-mix(in srgb, var(--papel) 40%, transparent) 82%,
      transparent);
  }

  .hero-overlay-end {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 7rem;
    left: 0;
    max-width: none;
  }

  .hero-overlay .label {
    text-shadow: 0 0 14px var(--papel), 0 0 5px var(--papel), 0 0 3px var(--papel);
  }

  .signup { flex-direction: column; }
  .signup .btn { width: 100%; }
}
