/* ============================================
   FERIDAS — pré-venda landing
   A. Lunardi
============================================ */

@font-face {
  font-family: 'Aftersick';
  src: url('assets/fonts/aftersick-book.otf') format('opentype');
  font-weight: 400;
  font-display: block;
}
@font-face {
  font-family: 'Aftersick';
  src: url('assets/fonts/aftersick-regular.otf') format('opentype');
  font-weight: 500;
  font-display: block;
}
@font-face {
  font-family: 'Aftersick';
  src: url('assets/fonts/aftersick-semibold.otf') format('opentype');
  font-weight: 700;
  font-display: block;
}

:root {
  --blood: #8b1a1a;
  --blood-deep: #4a0a0a;
  --blood-dark: #2a0505;
  --blood-black: #140202;
  --cream: #e6d7b8;
  --cream-dim: #b5a582;
  --cream-dark: #8a7a5a;
  --paper: #d4c397;
  --bone: #f0e5c9;
  --ink: #0a0202;

  --f-display: 'Aftersick', 'Cormorant Garamond', serif;
  --f-headline: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --f-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  --vh: 1vh;
}

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

html { scroll-behavior: auto; }

body {
  font-family: var(--f-serif);
  background: var(--blood-black);
  color: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
  cursor: none;
}

@media (max-width: 900px) {
  body { cursor: auto; }
}

::selection {
  background: var(--blood);
  color: var(--bone);
  text-shadow: none;
}

/* ============ GRAIN + TEXTURES ============ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.3' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(5) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -4%); }
  60% { transform: translate(-1%, 3%); }
  80% { transform: translate(3%, 1%); }
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(ellipse at center,
    transparent 50%,
    rgba(0,0,0,0.12) 80%,
    rgba(0,0,0,0.38) 100%);
}

/* ============ CURSOR ============ */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--cream);
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cursor-dot {
  position: absolute;
  inset: 13px;
  background: var(--blood);
  border-radius: 50%;
  width: 4px; height: 4px;
}
.cursor.hover .cursor-ring {
  transform: scale(2.3);
  border-color: var(--blood);
}
@media (max-width: 900px) {
  .cursor { display: none; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  mix-blend-mode: difference;
  color: var(--bone);
}
.nav-mark {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--f-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media (max-width: 720px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(0, 0, 0, 0.7) 95%),
    var(--blood-black);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 1.2s ease 0.2s,
    filter 0.8s ease,
    visibility 0s linear 1.6s;
  overflow: hidden;
}
.loader::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, rgba(139, 26, 26, 0.4) 0%, transparent 50%);
  animation: loaderBreath 2.5s ease-in-out infinite;
  z-index: 1;
}
.loader::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.5) 2px,
    rgba(0, 0, 0, 0.5) 4px
  );
  z-index: 2;
  animation: scanDrift 10s linear infinite;
}
@keyframes scanDrift {
  from { background-position: 0 0; }
  to { background-position: 0 40px; }
}
@keyframes loaderBreath {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  filter: blur(16px);
}
.loader.done .loader-mark {
  transform: scale(1.4);
}
.loader-mark {
  font-family: var(--f-display);
  font-size: clamp(60px, 14vw, 200px);
  color: var(--cream);
  letter-spacing: 0.02em;
  overflow: hidden;
  padding: 0.2em;
  display: flex;
  position: relative;
  z-index: 5;
  animation: loaderGlitch 2.4s infinite;
  animation-delay: 0.6s;
  transition: transform 0.7s cubic-bezier(0.75, 0, 0.9, 0.25);
}
@keyframes loaderGlitch {
  0%, 100% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.55),
      0 0 120px rgba(139, 26, 26, 0.28),
      -0.02em 0 0 rgba(139, 26, 26, 0.6),
      0.02em 0 0 rgba(230, 215, 184, 0.22);
  }
  /* Burst 1 — ~0.85s no ciclo */
  35% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.55),
      0 0 120px rgba(139, 26, 26, 0.28),
      -0.02em 0 0 rgba(139, 26, 26, 0.6),
      0.02em 0 0 rgba(230, 215, 184, 0.22);
  }
  37% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.7),
      0 0 120px rgba(139, 26, 26, 0.35),
      -0.12em 0 0 rgba(139, 26, 26, 0.95),
      0.09em 0.02em 0 rgba(230, 215, 184, 0.75);
  }
  39% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.7),
      0 0 120px rgba(139, 26, 26, 0.35),
      0.1em 0 0 rgba(139, 26, 26, 0.9),
      -0.1em -0.02em 0 rgba(230, 215, 184, 0.7);
  }
  41% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.6),
      0 0 120px rgba(139, 26, 26, 0.3),
      -0.07em 0.03em 0 rgba(139, 26, 26, 0.85),
      0.06em -0.02em 0 rgba(230, 215, 184, 0.55);
  }
  43% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.55),
      0 0 120px rgba(139, 26, 26, 0.28),
      -0.02em 0 0 rgba(139, 26, 26, 0.6),
      0.02em 0 0 rgba(230, 215, 184, 0.22);
  }
  /* Burst 2 — ~1.8s no ciclo */
  73% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.55),
      0 0 120px rgba(139, 26, 26, 0.28),
      -0.02em 0 0 rgba(139, 26, 26, 0.6),
      0.02em 0 0 rgba(230, 215, 184, 0.22);
  }
  75% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.7),
      0 0 120px rgba(139, 26, 26, 0.35),
      0.13em 0 0 rgba(139, 26, 26, 0.95),
      -0.1em 0.02em 0 rgba(230, 215, 184, 0.75);
  }
  77% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.7),
      0 0 120px rgba(139, 26, 26, 0.35),
      -0.1em 0 0 rgba(139, 26, 26, 0.9),
      0.08em -0.02em 0 rgba(230, 215, 184, 0.7);
  }
  79% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.6),
      0 0 120px rgba(139, 26, 26, 0.3),
      0.05em 0.02em 0 rgba(139, 26, 26, 0.75),
      -0.04em 0 0 rgba(230, 215, 184, 0.5);
  }
  81% {
    text-shadow:
      0 0 40px rgba(139, 26, 26, 0.55),
      0 0 120px rgba(139, 26, 26, 0.28),
      -0.02em 0 0 rgba(139, 26, 26, 0.6),
      0.02em 0 0 rgba(230, 215, 184, 0.22);
  }
}
.loader-mark span {
  display: inline-block;
  transform: translateY(140%);
  animation: loadUp 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.loader-mark span:nth-child(1) { animation-delay: 0.1s; }
.loader-mark span:nth-child(2) { animation-delay: 0.18s; }
.loader-mark span:nth-child(3) { animation-delay: 0.26s; }
.loader-mark span:nth-child(4) { animation-delay: 0.34s; }
.loader-mark span:nth-child(5) { animation-delay: 0.42s; }
.loader-mark span:nth-child(6) { animation-delay: 0.50s; }
.loader-mark span:nth-child(7) { animation-delay: 0.58s; }
@keyframes loadUp {
  to { transform: translateY(0); }
}
.loader-bar {
  margin-top: 40px;
  width: min(280px, 50vw);
  height: 1px;
  background: rgba(230, 215, 184, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.loader-bar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--blood);
  animation: loadBar 2.2s ease-out forwards;
}
@keyframes loadBar {
  0% { width: 0; }
  100% { width: 100%; }
}
.loader-meta {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--cream-dark);
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background: radial-gradient(ellipse at 50% 60%, var(--blood-deep) 0%, var(--blood-black) 70%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
}
body.loaded .hero {
  opacity: 1;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    repeating-linear-gradient(
      77deg,
      transparent 0 60px,
      rgba(230, 215, 184, 0.08) 60px 61px
    );
  pointer-events: none;
}
.hero-bg-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -77deg,
      transparent 0 60px,
      rgba(230, 215, 184, 0.05) 60px 61px
    );
}

.hero-countdown {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 200;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(to bottom, rgba(10,2,2,0.85) 0%, rgba(10,2,2,0.55) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.hero-countdown.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.countdown-timer {
  font-family: var(--f-headline);
}
.countdown-num {
  font-family: var(--f-headline);
  font-weight: 500;
}
.countdown-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.countdown-timer {
  display: flex;
  gap: clamp(10px, 2vw, 28px);
  justify-content: center;
  align-items: baseline;
  color: var(--cream);
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(48px, 7vw, 70px);
}
.countdown-num {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  position: relative;
}
.countdown-unit-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--cream-dark);
  text-transform: uppercase;
  margin-top: 6px;
}
.countdown-sep {
  font-size: clamp(20px, 3vw, 30px);
  color: var(--blood);
  opacity: 0.6;
  transform: translateY(-2px);
}

.hero-center {
  position: relative;
  text-align: center;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  transform: scale(0.88);
  transition: transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
}
body.loaded .hero-center {
  transform: scale(1);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(100px, 22vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  position: relative;
  text-shadow: 0 0 80px rgba(139, 26, 26, 0.5);
  mix-blend-mode: screen;
  white-space: nowrap;
}
.hero-title .char {
  display: inline-block;
  transform-origin: center bottom;
}

.hero-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(200px, 28vw, 420px);
  aspect-ratio: 2/3;
  transform: translate(-50%, -50%) rotate(-4deg);
  box-shadow:
    0 0 0 1px rgba(230,215,184,0.08),
    0 40px 100px rgba(0,0,0,0.8),
    0 0 180px rgba(139, 26, 26, 0.4);
  z-index: 4;
  animation: coverFloat 6s ease-in-out infinite;
}
.hero-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes coverFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg) translateY(0); }
  50% { transform: translate(-50%, -52%) rotate(-3deg) translateY(-12px); }
}

.hero-author {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.45em;
  color: var(--cream-dim);
  text-transform: uppercase;
  z-index: 6;
  text-align: center;
}
.hero-author::before,
.hero-author::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 12px;
}

.hero-corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
  text-transform: uppercase;
  z-index: 6;
  opacity: 0.7;
}
.hero-corner.tl { top: 18%; left: 6%; }
.hero-corner.tr { top: 18%; right: 6%; text-align: right; }
.hero-corner.bl { bottom: 22%; left: 6%; }
.hero-corner.br { bottom: 22%; right: 6%; text-align: right; }

/* Cross symbol */
.hero-cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 60vw, 900px);
  aspect-ratio: 1;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}
.hero-cross::before,
.hero-cross::after {
  content: '';
  position: absolute;
  background: var(--blood);
}
.hero-cross::before {
  left: 50%; top: 0;
  width: 2px; height: 100%;
  transform: translateX(-50%);
}
.hero-cross::after {
  top: 38%; left: 20%;
  width: 60%; height: 2px;
}

@media (max-width: 720px) {
  .hero-corner { font-size: 10px; }
  .hero-corner.tl { top: 14%; left: 4%; }
  .hero-corner.tr { top: 14%; right: 4%; }
  .hero-corner.bl { bottom: 18%; left: 4%; }
  .hero-corner.br { bottom: 18%; right: 4%; }
  .hero-author { bottom: 12%; }
  .hero-cover { width: 60vw; }
}

/* ============ SECTION FRAME ============ */
section {
  position: relative;
}
.section-marker {
  position: absolute;
  top: 30px;
  left: 40px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  z-index: 5;
  display: flex;
  gap: 14px;
  align-items: center;
}
.section-marker::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--blood);
}
@media (max-width: 720px) {
  .section-marker { left: 20px; font-size: 10px; }
}

/* ============ SYNOPSIS ============ */
.synopsis {
  padding: 180px 8vw 220px;
  background: var(--blood-black);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.synopsis-quote-bg {
  position: absolute;
  font-family: var(--f-headline);
  color: rgba(139, 26, 26, 0.08);
  font-size: clamp(280px, 40vw, 680px);
  top: -80px;
  left: -40px;
  line-height: 0.8;
  pointer-events: none;
  font-weight: 500;
  user-select: none;
  font-style: italic;
}
.synopsis-body {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  z-index: 2;
}
.synopsis-lead {
  font-family: var(--f-headline);
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.08;
  margin-bottom: 60px;
  letter-spacing: -0.005em;
}
.synopsis-lead .word {
  display: inline-block;
  margin-right: 0.25em;
}
.synopsis-lead em {
  font-style: italic;
  color: var(--blood);
}
.synopsis-p {
  font-family: var(--f-serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 26px;
  max-width: 680px;
}
.synopsis-p strong {
  color: var(--cream);
  font-weight: 500;
}
.synopsis-end {
  margin-top: 60px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}
.synopsis-end::before {
  content: '';
  width: 50px; height: 1px;
  background: var(--blood);
}

/* Blood drip */
.blood-drip {
  position: absolute;
  top: 0;
  left: 15%;
  width: 60px;
  height: 300px;
  pointer-events: none;
  opacity: 0.7;
}

/* Synopsis floating words */
.syn-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.syn-float {
  position: absolute;
  font-family: var(--f-headline);
  font-style: italic;
  font-size: clamp(48px, 7vw, 110px);
  color: rgba(139, 26, 26, 0.22);
  user-select: none;
  white-space: nowrap;
  mix-blend-mode: screen;
  animation: synFloat 14s ease-in-out infinite;
}
.syn-float-1 { top: 8%; right: 6%; font-size: clamp(80px, 12vw, 180px); animation-delay: -2s; }
.syn-float-2 { top: 18%; left: 55%; animation-delay: -4s; transform: rotate(-6deg); }
.syn-float-3 { top: 45%; right: 10%; animation-delay: -7s; transform: rotate(4deg); }
.syn-float-4 { top: 62%; left: 8%; animation-delay: -1s; transform: rotate(-3deg); }
.syn-float-5 { top: 78%; right: 20%; animation-delay: -9s; }
.syn-float-6 { top: 30%; left: 3%; font-size: clamp(40px, 5vw, 80px); animation-delay: -5s; transform: rotate(-8deg); }
@keyframes synFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: 0.22; }
  50% { transform: translateY(-20px) rotate(var(--r, 0deg)); opacity: 0.35; }
}

.synopsis-pull {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  color: var(--cream);
  margin: 60px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(230,215,184,0.2);
  border-bottom: 1px solid rgba(230,215,184,0.2);
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  text-wrap: balance;
}
.synopsis-pull em {
  font-style: italic;
  color: var(--blood);
}
.synopsis-pull::before {
  content: '—';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blood-black);
  padding: 0 20px;
  color: var(--blood);
  font-family: var(--f-mono);
}

.characters-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============ CHARACTERS ============ */
.characters {
  background: linear-gradient(180deg, var(--blood-black) 0%, var(--blood-deep) 50%, var(--blood-black) 100%);
  padding: 180px 6vw;
  position: relative;
  overflow: hidden;
}
.characters-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.characters-text h2 {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.characters-text h2 em {
  font-style: italic;
  color: var(--blood);
  font-size: 1.1em;
}
.characters-text p {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--cream-dim);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 20px;
}
.characters-meta {
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--cream-dark);
  text-transform: uppercase;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  max-width: 400px;
}
.characters-meta span:nth-child(even) {
  color: var(--cream);
}
.polaroid-holder {
  position: relative;
  perspective: 1600px;
}
.polaroid-frame {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  transform: rotate(3deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow:
    0 60px 120px rgba(0,0,0,0.8),
    0 0 100px rgba(139, 26, 26, 0.2);
}
.polaroid-frame:hover {
  transform: rotate(0deg) scale(1.02);
}
.polaroid-frame img {
  width: 100%;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.polaroid-tape {
  position: absolute;
  top: -18px;
  width: 90px;
  height: 30px;
  background: rgba(230, 215, 184, 0.35);
  border: 1px solid rgba(230, 215, 184, 0.1);
  backdrop-filter: blur(2px);
}
.polaroid-tape.left { left: 20%; transform: rotate(-8deg); }
.polaroid-tape.right { right: 20%; transform: rotate(6deg); }

@media (max-width: 900px) {
  .characters { padding: 120px 20px; }
  .characters-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ BRINDES ============ */
.brindes {
  background: var(--blood-black);
  padding: 160px 6vw 200px;
  position: relative;
  overflow: hidden;
}
.brindes-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}
.brindes-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.brindes-title {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(60px, 10vw, 180px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.brindes-title em {
  font-style: italic;
  color: var(--blood);
}
.brindes-sub {
  max-width: 560px;
  margin: 30px auto 0;
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--cream-dim);
  font-style: italic;
}

.brindes-stack {
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.brinde-card {
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(230, 215, 184, 0.15);
  position: relative;
  transition: background 0.4s ease;
}
.brinde-card:last-child { border-bottom: 1px solid rgba(230, 215, 184, 0.15); }
.brinde-card:hover { background: rgba(139, 26, 26, 0.08); }
.brinde-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--blood);
  line-height: 1;
}
.brinde-info h3 {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}
.brinde-info p {
  font-family: var(--f-serif);
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--cream-dim);
  line-height: 1.5;
  max-width: 420px;
}
.brinde-tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(139, 26, 26, 0.4);
}
.brinde-visual {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.brinde-visual > * {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brinde-card:hover .brinde-visual > * {
  transform: rotateY(-12deg) rotateX(6deg) scale(1.04);
}

.brinde-book {
  width: 160px;
  aspect-ratio: 2/3;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  transform: rotate(-4deg);
}
.brinde-book img { width: 100%; height: 100%; object-fit: cover; display: block; }

.brinde-bookmark {
  display: flex;
  gap: 12px;
  transform: rotate(3deg);
}
.brinde-bookmark img {
  width: 60px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.brinde-polaroid {
  width: 180px;
  transform: rotate(-5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}
.brinde-polaroid img {
  width: 100%;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}

.brinde-sticker {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.brinde-sticker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: stickerSpin 45s linear infinite;
}
@keyframes stickerSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .brindes { padding: 100px 20px 140px; }
  .brinde-card { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .brinde-num { font-size: 56px; }
  .brinde-visual { order: -1; height: 220px; }
}

/* ============ TIMELINE ============ */
.timeline-section {
  padding: 160px 6vw;
  background: linear-gradient(180deg, var(--blood-black) 0%, var(--blood-dark) 100%);
  position: relative;
  overflow: hidden;
}
.timeline-title {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 96px);
  color: var(--cream);
  text-align: center;
  line-height: 0.95;
  margin-bottom: 80px;
  letter-spacing: -0.01em;
}
.timeline-title em { font-style: italic; color: var(--blood); }

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(230,215,184,0.4) 10%,
    rgba(230,215,184,0.4) 90%,
    transparent);
  transform: translateX(-50%);
}
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}
.timeline-step:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}
.timeline-step:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}
.timeline-date {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(42px, 5vw, 72px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.timeline-date em { color: var(--blood); font-style: italic; }
.timeline-content h3 {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.timeline-content p {
  font-family: var(--f-serif);
  color: var(--cream-dim);
  font-size: 16px;
  max-width: 340px;
  display: inline-block;
}
.timeline-step:nth-child(even) .timeline-content p { text-align: left; }
.timeline-step:nth-child(odd) .timeline-content p { text-align: right; }

.timeline-node {
  width: 100px;
  display: flex;
  justify-content: center;
  position: relative;
}
.timeline-dot {
  width: 16px; height: 16px;
  background: var(--blood);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 6px var(--blood-black), 0 0 40px var(--blood);
}
.timeline-dot::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--blood);
  border-radius: 50%;
  animation: ripple 2.4s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 800px) {
  .timeline-section { padding: 100px 20px; }
  .timeline::before { left: 30px; }
  .timeline-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .timeline-step:nth-child(even) .timeline-content,
  .timeline-step:nth-child(odd) .timeline-content {
    grid-column: 2;
    text-align: left;
  }
  .timeline-step:nth-child(even) .timeline-content p,
  .timeline-step:nth-child(odd) .timeline-content p { text-align: left; }
  .timeline-node { width: 60px; }
  .timeline-date { font-size: 40px; }
}

/* ============ TIMELINE EYEBROW (1ª impressão) ============ */
.timeline-eyebrow {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blood);
  text-align: center;
  margin: -40px auto 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(139, 26, 26, 0.3);
  max-width: 360px;
}

/* ============ 2ª IMPRESSÃO (janela estendida) ============ */
.second-print {
  max-width: 880px;
  margin: 100px auto 0;
  padding: 48px 40px;
  border: 1px solid rgba(230, 215, 184, 0.18);
  background: rgba(20, 2, 2, 0.45);
  position: relative;
}
.second-print::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(139, 26, 26, 0.6) 50%,
    transparent);
}
.second-print-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-bottom: 14px;
  text-align: center;
}
.second-print-title {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--cream);
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.second-print-title em {
  font-style: italic;
  color: var(--blood);
}
.second-print-lead {
  font-family: var(--f-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-dim);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 36px;
}
.second-print-lead strong {
  color: var(--cream);
  font-weight: 600;
}
.second-print-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(230, 215, 184, 0.12);
  border: 1px solid rgba(230, 215, 184, 0.12);
  margin-bottom: 28px;
}
.sp-cell {
  background: var(--blood-black);
  padding: 24px 16px;
  text-align: center;
}
.sp-date {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.sp-date em {
  font-style: italic;
  color: var(--blood);
}
.sp-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dark);
}
.second-print-note {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dark);
  text-align: center;
  margin: 0;
}

@media (max-width: 700px) {
  .second-print {
    padding: 36px 24px;
    margin-top: 60px;
  }
  .second-print-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-cell { padding: 20px 12px; }
}

/* ============ WARNING ============ */
.warning {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(139, 26, 26, 0.28) 0%, transparent 55%),
    var(--blood-deep);
  padding: 80px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(230, 215, 184, 0.12);
  border-bottom: 1px solid rgba(230, 215, 184, 0.12);
}
.warning-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.warning-icon {
  font-family: var(--f-display);
  font-size: 60px;
  color: var(--bone);
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(139, 26, 26, 0.75);
  animation: warningPulse 6s ease-in-out infinite;
}
@keyframes warningPulse {
  0%, 100% { text-shadow: 0 0 36px rgba(139, 26, 26, 0.6); }
  50% { text-shadow: 0 0 56px rgba(139, 26, 26, 0.95); }
}
.warning-text {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 42px);
  color: var(--cream);
  line-height: 1.3;
  text-wrap: balance;
}
.warning-text em {
  color: var(--bone);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--blood);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* ============ BUY FORM ============ */
.buy {
  padding: 160px 6vw;
  background: var(--blood-black);
  position: relative;
  overflow: hidden;
}
.buy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.buy-info h2 {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.buy-info h2 em { font-style: italic; color: var(--blood); }
.buy-price-box {
  background: rgba(10, 2, 2, 0.55);
  padding: 36px 30px;
  border: 1px solid rgba(230, 215, 184, 0.15);
  margin-bottom: 30px;
}
.buy-price-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--cream-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.buy-price {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.buy-price small {
  font-size: 0.5em;
  color: var(--blood);
  margin-right: 8px;
}
.buy-freight {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.buy-freight::before {
  content: '✓';
  color: var(--blood);
  margin-right: 8px;
}
.buy-includes {
  margin-top: 30px;
}
.buy-includes-title {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.buy-includes ul {
  list-style: none;
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--cream);
}
.buy-includes li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(230,215,184,0.1);
  display: flex;
  justify-content: space-between;
}
.buy-includes li::after {
  content: attr(data-n);
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--cream-dark);
  letter-spacing: 0.3em;
}

.form-wrap {
  background: rgba(10, 2, 2, 0.5);
  border: 1px solid rgba(230,215,184,0.12);
  padding: 50px;
  position: relative;
}
.form-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 2px solid var(--blood);
  border-left: 2px solid var(--blood);
}
.form-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--blood);
  border-right: 2px solid var(--blood);
}
.form-title {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--cream);
  margin-bottom: 8px;
}
.form-sub {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 30px;
  border: 1px solid rgba(230,215,184,0.15);
}
.form-tab {
  padding: 14px 20px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}
.form-tab.active {
  background: var(--blood);
  color: var(--bone);
}
.form-tab:not(.active):hover { color: var(--cream); background: rgba(139,26,26,0.2); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 20px;
  position: relative;
}
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.field input, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(230,215,184,0.25);
  padding: 10px 0;
  color: var(--cream);
  font-family: var(--f-serif);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.field input:focus, .field select:focus {
  border-bottom-color: var(--blood);
}
.field input::placeholder { color: rgba(230,215,184,0.45); }
.field.full { grid-column: 1 / -1; }
.field-error {
  display: none;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--blood);
  margin-top: 8px;
  font-style: italic;
}
.field.has-error input {
  border-bottom-color: var(--blood);
  border-bottom-width: 2px;
}
.field.has-error .field-error {
  display: block;
}
.field label .field-opt {
  color: var(--cream-dark);
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 0.9em;
  margin-left: 4px;
}

.form-address-header {
  grid-column: 1 / -1;
  padding: 28px 0 4px;
  margin-top: 10px;
  border-top: 1px dashed rgba(230, 215, 184, 0.22);
}
.form-address-title {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-address-sub {
  font-family: var(--f-serif);
  font-size: 14px;
  color: var(--cream-dim);
  font-style: italic;
  line-height: 1.5;
}

/* Checkbox de ciência da retirada — só aparece em modo retirada */
.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  padding: 16px;
  border: 1px solid rgba(230, 215, 184, 0.15);
  background: rgba(0, 0, 0, 0.2);
  margin: 12px 0;
  font-family: var(--f-serif);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  color: var(--cream-dim);
  transition: border-color 0.3s, background 0.3s;
  text-transform: none;
  letter-spacing: 0;
}
.form-checkbox:hover {
  border-color: var(--blood);
  background: rgba(139, 26, 26, 0.05);
}
.form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--blood);
  cursor: pointer;
}
.form-checkbox span {
  flex: 1;
}
.form-checkbox input[type="checkbox"]:checked + span {
  color: var(--cream);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  padding: 22px;
  background: var(--blood);
  color: var(--bone);
  border: none;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.3s;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blood-deep);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
.form-submit:hover::before { transform: translateY(0); }
.form-submit:hover { letter-spacing: 0.55em; }
.form-submit span { position: relative; z-index: 2; }

.form-external {
  margin-top: 20px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.form-external a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: var(--blood);
}

@media (max-width: 900px) {
  .buy { padding: 100px 20px; }
  .buy-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-wrap { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ KINDLE ============ */
.kindle {
  background: var(--cream);
  color: var(--blood-deep);
  padding: 140px 6vw;
  position: relative;
  overflow: hidden;
}
.kindle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.kindle-text .kindle-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kindle-text h2 {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(50px, 7vw, 112px);
  color: var(--blood-deep);
  line-height: 0.9;
  margin-bottom: 30px;
}
.kindle-text h2 em { color: var(--blood); font-style: italic; }
.kindle-text p {
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--blood-dark);
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 36px;
}
.kindle-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 22px 40px;
  background: var(--blood);
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--blood);
}
.kindle-btn:hover {
  background: var(--blood-deep);
  letter-spacing: 0.5em;
}
.kindle-btn span.arrow {
  transition: transform 0.4s;
}
.kindle-btn:hover span.arrow { transform: translateX(6px); }

.kindle-device {
  position: relative;
  perspective: 1200px;
}
.kindle-mock {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 40px 24px 60px;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.4),
    0 0 0 2px #0a0a0a;
  transform: rotateY(-8deg) rotateX(4deg);
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.kindle-mock:hover { transform: rotateY(-2deg) rotateX(1deg); }
.kindle-mock::after {
  content: 'kindle';
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6a6a6a;
}
.kindle-screen {
  background: #f5eed8;
  padding: 40px 30px;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.kindle-screen::before,
.kindle-screen::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 36px;
  z-index: 2;
  pointer-events: none;
}
.kindle-screen::before {
  top: 0;
  background: linear-gradient(to bottom, #f5eed8 0%, rgba(245, 238, 216, 0) 100%);
}
.kindle-screen::after {
  bottom: 0;
  background: linear-gradient(to top, #f5eed8 0%, rgba(245, 238, 216, 0) 100%);
}
.kindle-content {
  animation: kindleScroll 75s linear infinite;
}
.kindle-mock:hover .kindle-content {
  animation-play-state: paused;
}
@keyframes kindleScroll {
  0% { transform: translateY(0); opacity: 0; }
  4% { opacity: 1; }
  92% { transform: translateY(calc(-100% + 360px)); opacity: 1; }
  98%, 100% { transform: translateY(calc(-100% + 360px)); opacity: 0; }
}
.kindle-screen h4 {
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: 30px;
  color: var(--blood-deep);
  line-height: 1.05;
  margin-bottom: 18px;
}
.kindle-screen p {
  font-family: var(--f-serif);
  font-size: 13px;
  color: var(--blood-dark);
  line-height: 1.6;
  margin: 0 0 12px 0;
}
.kindle-screen .chapter {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kindle-content > .chapter:last-child {
  margin-top: 28px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .kindle { padding: 100px 20px; }
  .kindle-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ FAQ ============ */
.faq {
  background: var(--blood-black);
  padding: 160px 6vw;
  position: relative;
}
.faq-title {
  text-align: center;
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(50px, 7vw, 96px);
  color: var(--cream);
  margin-bottom: 80px;
  line-height: 0.9;
}
.faq-title em { color: var(--blood); font-style: italic; }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid rgba(230,215,184,0.15);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid rgba(230,215,184,0.15); }
.faq-q {
  width: 100%;
  padding: 32px 0;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--f-headline);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 34px);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s;
  font-style: italic;
}
.faq-q:hover { color: var(--blood); }
.faq-q-plus {
  font-family: var(--f-mono);
  font-size: 24px;
  color: var(--blood);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-q-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-a-inner {
  padding: 0 0 32px;
  font-family: var(--f-serif);
  font-size: 17px;
  color: var(--cream-dim);
  line-height: 1.6;
  max-width: 700px;
}
.faq-a-inner strong { color: var(--cream); font-weight: 500; }
.faq-item.open .faq-a { max-height: 500px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--blood-black);
  padding: 100px 6vw 40px;
  border-top: 1px solid rgba(230,215,184,0.15);
  position: relative;
  overflow: hidden;
}
.footer-big {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(80px, 18vw, 300px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(230,215,184,0.15);
  line-height: 0.85;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(230,215,184,0.1);
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  font-family: var(--f-serif);
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--cream-dark);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-right: 0.22em;
}
.reveal-words.in .reveal-word {
  opacity: 1;
  transform: translateY(0);
}

/* Glitch — respiração contínua + micro-glitch no meio + burst dramático a cada 6s */
.glitch {
  text-shadow:
    -0.02em 0 0 rgba(139, 26, 26, 0.6),
    0.02em 0 0 rgba(230, 215, 184, 0.2);
  animation: glitchBurst 6s infinite;
  animation-delay: 1.5s;
}
@keyframes glitchBurst {
  /* Respiração sutil do calm (0-40%) */
  0% {
    text-shadow:
      -0.02em 0 0 rgba(139, 26, 26, 0.55),
      0.02em 0 0 rgba(230, 215, 184, 0.18);
  }
  15% {
    text-shadow:
      -0.028em 0 0 rgba(139, 26, 26, 0.78),
      0.024em 0.005em 0 rgba(230, 215, 184, 0.28);
  }
  30% {
    text-shadow:
      -0.018em 0 0 rgba(139, 26, 26, 0.5),
      0.018em 0 0 rgba(230, 215, 184, 0.14);
  }
  /* Micro-glitch (~180ms) */
  42% {
    text-shadow:
      -0.022em 0 0 rgba(139, 26, 26, 0.6),
      0.022em 0 0 rgba(230, 215, 184, 0.2);
  }
  43% {
    text-shadow:
      -0.055em 0.015em 0 rgba(139, 26, 26, 0.9),
      0.04em -0.01em 0 rgba(230, 215, 184, 0.55);
  }
  44% {
    text-shadow:
      0.04em 0 0 rgba(139, 26, 26, 0.82),
      -0.035em -0.01em 0 rgba(230, 215, 184, 0.5);
  }
  45% {
    text-shadow:
      -0.022em 0 0 rgba(139, 26, 26, 0.6),
      0.022em 0 0 rgba(230, 215, 184, 0.2);
  }
  /* Segunda metade da respiração (45-86%) */
  60% {
    text-shadow:
      -0.025em 0 0 rgba(139, 26, 26, 0.72),
      0.023em 0 0 rgba(230, 215, 184, 0.26);
  }
  75% {
    text-shadow:
      -0.016em 0 0 rgba(139, 26, 26, 0.48),
      0.016em 0 0 rgba(230, 215, 184, 0.13);
  }
  86% {
    text-shadow:
      -0.02em 0 0 rgba(139, 26, 26, 0.6),
      0.02em 0 0 rgba(230, 215, 184, 0.2);
  }
  /* Burst grande (86-94%, ~480ms) */
  86.5% {
    text-shadow:
      -0.1em 0 0 rgba(139, 26, 26, 0.95),
      0.07em 0.02em 0 rgba(230, 215, 184, 0.7);
  }
  88% {
    text-shadow:
      0.1em 0 0 rgba(139, 26, 26, 0.9),
      -0.08em -0.02em 0 rgba(230, 215, 184, 0.7);
  }
  89.5% {
    text-shadow:
      -0.06em 0.03em 0 rgba(139, 26, 26, 0.85),
      0.05em -0.02em 0 rgba(230, 215, 184, 0.55);
  }
  91% {
    text-shadow:
      0.04em 0 0 rgba(139, 26, 26, 0.75),
      -0.03em 0 0 rgba(230, 215, 184, 0.4);
  }
  92.5% {
    text-shadow:
      -0.03em 0 0 rgba(139, 26, 26, 0.65),
      0.03em 0 0 rgba(230, 215, 184, 0.3);
  }
  94%, 100% {
    text-shadow:
      -0.02em 0 0 rgba(139, 26, 26, 0.55),
      0.02em 0 0 rgba(230, 215, 184, 0.18);
  }
}
@media (prefers-reduced-motion: reduce) {
  .glitch { animation: none; }
  .cursor.frozen .cursor-ring {
    transition: none;
    transform: none;
  }
}

/* hero corner · variações */
.hero-corner.bl a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.6s ease, color 0.6s ease;
}
.hero-corner.bl a:hover {
  border-color: var(--blood);
  color: var(--cream);
}

/* aviso CVV no rodapé */
.footer-cvv {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--cream-dark);
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 12px;
}
.footer-cvv a {
  color: var(--cream-dim);
  text-decoration: none;
  border-bottom: 1px dotted var(--cream-dark);
  padding-bottom: 1px;
}
.footer-cvv a:hover {
  color: var(--blood);
  border-color: var(--blood);
}

/* trailer placeholder */
.trailer-broken {
  position: relative;
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--blood-black) 0%, var(--blood-dark) 100%);
}
.trailer-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 32px;
  opacity: 0.7;
}
.trailer-frame {
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid rgba(139, 26, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.trailer-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.trailer-error {
  font-family: var(--f-mono);
  color: var(--cream-dark);
  text-align: center;
  z-index: 1;
}
.trailer-error-code {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--blood);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.trailer-error-url {
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: 0.15em;
  color: var(--cream-dim);
  margin-bottom: 24px;
  word-break: break-all;
  font-feature-settings: "tnum";
}
.trailer-error-msg {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--cream-dark);
  text-transform: lowercase;
  opacity: 0.6;
}
@media (max-width: 720px) {
  .trailer-broken { padding: 60px 20px; }
}

/* cursor weight on idle */
.cursor.frozen .cursor-ring {
  transform: scale(0.95);
  border-color: var(--blood);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

/* === Vendas: stepper, cupom, pagamento, modal PIX === */
.qty-stepper { display: flex; align-items: stretch; border: 1px solid rgba(230,215,184,0.2); width: max-content; }
.qty-stepper .qty-btn { width: 38px; background: transparent; border: 0; color: var(--cream); font-family: var(--f-mono); font-size: 16px; cursor: pointer; }
.qty-stepper .qty-btn:hover { color: var(--blood); }
.qty-stepper input[type="number"] { width: 60px; text-align: center; background: transparent; border: 0; border-left: 1px solid rgba(230,215,184,0.2); border-right: 1px solid rgba(230,215,184,0.2); color: var(--cream); font-family: var(--f-mono); font-size: 14px; }
.qty-stepper input[type="number"]::-webkit-inner-spin-button { display: none; }
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; }
.coupon-apply { padding: 0 16px; background: transparent; border: 1px solid rgba(230,215,184,0.2); color: var(--cream-dim); font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; }
.coupon-apply:hover { border-color: var(--blood); color: var(--blood); }
.coupon-feedback { margin-top: 6px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.coupon-feedback.ok { color: var(--blood); }
.coupon-feedback.err { color: #d94a4a; }
.price-summary { border-top: 1px solid rgba(230,215,184,0.15); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.price-line { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); }
.price-line.price-total { color: var(--cream); font-size: 14px; font-weight: 500; padding-top: 8px; border-top: 1px solid rgba(230,215,184,0.15); }
.price-line.price-discount span:last-child { color: var(--blood); }
.pay-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.pay-buttons .form-submit { margin-top: 0; }
@media (max-width: 480px) { .pay-buttons { grid-template-columns: 1fr; } }
.form-error { margin-top: 12px; padding: 12px; background: rgba(217,74,74,0.08); border-left: 2px solid #d94a4a; color: #d94a4a; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }

.pix-modal { position: fixed; inset: 0; background: rgba(10,2,2,0.92); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 9999; }
.pix-modal.open { display: flex; }
.pix-modal-card { background: var(--blood-black); border: 1px solid rgba(230,215,184,0.2); padding: 32px; max-width: 420px; width: 90vw; text-align: center; }
.pix-modal h2 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.5em; color: var(--blood); text-transform: uppercase; margin: 0 0 18px; }
.pix-modal-amount { font-family: var(--f-headline); font-size: 36px; color: var(--cream); margin-bottom: 8px; }
.pix-modal-code { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--cream-dim); margin-bottom: 24px; }
.pix-qr { background: var(--bone); padding: 12px; margin: 0 auto 18px; width: max-content; }
.pix-qr img { display: block; width: 220px; height: 220px; }
.pix-copy { width: 100%; background: transparent; border: 1px solid rgba(230,215,184,0.2); color: var(--cream); padding: 12px 14px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; margin-bottom: 14px; }
.pix-copy:hover { border-color: var(--blood); color: var(--blood); }
.pix-countdown { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-dim); }
.pix-status { margin-top: 14px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
.pix-status.paid { color: var(--blood); }
.pix-modal-close { background: transparent; border: 0; color: var(--cream-dim); font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; margin-top: 18px; }
.pix-modal-close:hover { color: var(--blood); }
