/* =========================================================================
   BLOODHOUND — DIÁRIO DO SOBREVIVENTE
   styles.css — sistema visual (gótico-industrial: sangue + turquesa)
   ========================================================================= */

/* ------------------------------ 1. TOKENS ------------------------------ */
:root {
  /* Base — pedra molhada, névoa e breu */
  --ink-950: #050709;
  --ink-900: #080B0E;
  --ink-850: #0B0F14;
  --ink-800: #10161C;
  --ink-700: #161F27;
  --ink-600: #1E2A34;
  --ink-500: #2A3946;

  /* Sangue */
  --blood: #B01319;
  --blood-bright: #E5262C;
  --blood-deep: #6B0A10;
  --blood-ghost: rgba(176, 19, 25, 0.16);

  /* Turquesa */
  --teal: #2BD9C8;
  --teal-mid: #17A99C;
  --teal-deep: #0B3E3E;
  --teal-ghost: rgba(43, 217, 200, 0.14);

  /* Runa / Flagelo */
  --rune: #C13AA8;
  --rune-soft: rgba(193, 58, 168, 0.22);

  /* Latão — usado com parcimônia (selos, estrelas) */
  --brass: #C9A24C;

  /* Tinta sobre osso */
  --bone: #EFE9DC;
  --ash: #B6B0A3;
  --ash-dim: #9A9488;

  /* Tipografia */
  --f-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --f-meta: "Oswald", "Arial Narrow", sans-serif;
  --f-body: "Della Respira", Georgia, "Times New Roman", serif;

  /* Métrica */
  --wrap: 1140px;
  --read: 66ch;
  --r-sm: 3px;
  --r-md: 5px;
  --r-lg: 8px;

  --shadow-deep: 0 24px 60px -20px rgba(0, 0, 0, 0.9);
  --ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

/* ------------------------------ 2. RESET ------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  min-height: 100dvh;
  background: var(--ink-950);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--teal); text-decoration: none; }
ul { list-style: none; padding: 0; }

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

/* ------------------------- 3. ATMOSFERA GLOBAL ------------------------- */
/* Grão de filme + vinheta — camadas fixas acima do conteúdo, sem cliques */
.atmos {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
}
.atmos__grain {
  position: absolute;
  inset: -30%;
  will-change: transform;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 640ms steps(3) infinite;
}
/* Moldura apenas — precisa ficar limpa na área de leitura.
   O escurecimento atmosférico de cada tela é feito pelos véus locais
   (.cover__veil, .quiz__bgveil, .lphero__veil), não por esta camada. */
.atmos__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(135% 105% at 50% 0%, transparent 58%, rgba(5, 7, 9, 0.26) 100%),
    radial-gradient(125% 115% at 50% 100%, transparent 62%, rgba(5, 7, 9, 0.28) 100%);
}
.atmos__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0 4px,
    rgba(0, 0, 0, 0.07) 4px 5px
  );
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, -4%); }
  60%  { transform: translate(-2%, 4%); }
  80%  { transform: translate(4%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ---------------------------- 4. UTILITÁRIOS --------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 800px); margin-inline: auto; }
.c-dim { color: var(--ash); }
.c-teal { color: var(--teal); }
.c-blood { color: var(--blood-bright); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hidden { display: none !important; }

/* Rótulos condensados (HUD, chips, olhos-de-boi) */
.eyebrow {
  font-family: var(--f-meta);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Filete ornamental */
.rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--blood);
}
.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.5;
}
.rule__gem {
  width: 7px; height: 7px;
  transform: rotate(45deg);
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

/* Títulos */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.h-xl { font-size: clamp(2.1rem, 1.2rem + 4.4vw, 4.1rem); }
.h-lg { font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.7rem); }

/* ------------------------------ 5. BOTÕES ------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 2.1rem;
  font-family: var(--f-meta);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--blood {
  color: #fff;
  background: linear-gradient(180deg, var(--blood-bright), var(--blood) 55%, var(--blood-deep));
  border: 1px solid rgba(229, 38, 44, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 14px 34px -14px rgba(176, 19, 25, 0.9);
}
.btn--blood:hover { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 18px 46px -12px rgba(229, 38, 44, 0.85); }

.btn--teal {
  color: var(--ink-950);
  background: linear-gradient(180deg, var(--teal), var(--teal-mid));
  border: 1px solid rgba(43, 217, 200, 0.6);
  box-shadow: 0 14px 34px -14px rgba(43, 217, 200, 0.75);
}
.btn--teal:hover { box-shadow: 0 18px 46px -12px rgba(43, 217, 200, 0.7); }

.btn--ghost {
  color: var(--bone);
  border: 1px solid rgba(234, 228, 215, 0.22);
  background: rgba(234, 228, 215, 0.03);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-ghost); }

.btn--wide { width: 100%; }
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.76rem; }

.btn[disabled] { opacity: 0.4; pointer-events: none; }

/* ----------------------------- 6. PALCO -------------------------------- */
#stage { position: relative; z-index: 1; }

.screen { display: none; }
.screen.is-active { display: block; animation: screenIn 0.6s var(--ease) both; }
@keyframes screenIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Revelação escalonada de blocos.
   `both` aplica o estado inicial só enquanto a animação existe — se o
   navegador não animar (aba em segundo plano, motor sem suporte), o bloco
   continua visível em vez de ficar preso em opacity: 0. */
.reveal { animation: revealUp 0.7s var(--ease) both; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.52s; }
.d5 { animation-delay: 0.66s; }
.d6 { animation-delay: 0.8s; }

/* ============================ 7. TELA 0 — CAPA ========================== */
.cover {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 4rem 0 3rem;
  isolation: isolate;
}
.cover__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero.jpg") center 26% / cover no-repeat;
  filter: saturate(0.85) contrast(1.12) brightness(1.05);
}
.cover__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(85% 65% at 50% 40%, rgba(11, 62, 62, 0.22), transparent 72%),
    linear-gradient(180deg, rgba(5, 7, 9, 0.7) 0%, rgba(5, 7, 9, 0.34) 34%, rgba(5, 7, 9, 0.9) 82%, var(--ink-950) 100%);
}

.cover__inner { text-align: center; }

.cover__logo {
  width: min(300px, 62vw);
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 0 26px rgba(43, 217, 200, 0.25));
}

.cover__ato {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.42rem 1.1rem;
  margin-bottom: 1.9rem;
  border: 1px solid var(--blood);
  border-radius: 999px;
  background: rgba(107, 10, 16, 0.28);
  font-family: var(--f-meta);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #F3CACB;
}
.cover__ato::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blood-bright);
  box-shadow: 0 0 10px var(--blood-bright);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.28; } }

.cover__lead {
  max-width: 56ch;
  margin: 0 auto 2.6rem;
  color: #DCD6C9;
  font-size: 1.06rem;
}

/* Formulário de entrada */
.enter {
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 1.9rem 1.6rem 1.6rem;
  background: linear-gradient(180deg, rgba(26, 35, 44, 0.94), rgba(11, 16, 21, 0.96));
  border: 1px solid rgba(234, 228, 215, 0.12);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(6px);
}
.enter__label {
  display: block;
  margin-bottom: 0.7rem;
  font-family: var(--f-meta);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}
.field {
  width: 100%;
  padding: 0.95rem 1.05rem;
  background: rgba(5, 7, 9, 0.75);
  border: 1px solid rgba(234, 228, 215, 0.16);
  border-radius: var(--r-sm);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 1.05rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field::placeholder { color: var(--ash-dim); }
.field:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-ghost);
}

.enter__hint {
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
  font-family: var(--f-meta);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(234, 228, 215, 0.18);
  border-radius: 999px;
  background: transparent;
  font-family: var(--f-meta);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--ash);
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: rgba(43, 217, 200, 0.5); color: var(--bone); }
.chip[aria-pressed="true"] {
  border-color: var(--teal);
  background: var(--teal-ghost);
  color: var(--teal);
}

.enter__go { margin-top: 1.6rem; }
.enter__meta {
  margin-top: 1rem;
  font-family: var(--f-meta);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-dim);
  text-align: center;
}

.cover__skip {
  margin-top: 1.9rem;
  font-family: var(--f-meta);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  border-bottom: 1px solid rgba(162, 156, 144, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cover__skip:hover { color: var(--teal); border-color: var(--teal); }

/* ============================ 8. TELA DE QUIZ =========================== */
.quiz { position: relative; min-height: 100dvh; padding-bottom: 5rem; }

.quiz__bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-color: var(--ink-950);
  background-position: center;
  background-size: cover;
  opacity: 0.26;
  filter: saturate(0.7) contrast(1.12) brightness(0.95);
  transition: opacity 0.9s var(--ease), background-image 0.4s;
}
.quiz__bgveil {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(11, 62, 62, 0.25), transparent 65%),
    linear-gradient(180deg, rgba(5, 7, 9, 0.92), rgba(5, 7, 9, 0.75) 45%, rgba(5, 7, 9, 0.97));
}
.quiz__silhueta {
  position: fixed;
  right: -4%;
  bottom: 0;
  z-index: -1;
  width: min(46vw, 620px);
  opacity: 0.07;
  filter: grayscale(1) contrast(1.4);
  pointer-events: none;
}

/* ---- HUD ---- */
.hud {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.75rem 0 0.7rem;
  background: linear-gradient(180deg, rgba(5, 7, 9, 0.97) 62%, rgba(5, 7, 9, 0));
  backdrop-filter: blur(3px);
}
.hud__row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hud__brand { display: flex; align-items: center; gap: 0.7rem; }
.hud__brand img { width: 26px; opacity: 0.9; }
.hud__ato {
  font-family: var(--f-meta);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
}
.hud__spacer { flex: 1; }

.hud__count {
  font-family: var(--f-meta);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--bone);
  white-space: nowrap;
}
.hud__count b { color: var(--teal); font-weight: 600; }

/* Sanidade */
.sanity { display: flex; align-items: center; gap: 0.6rem; min-width: 260px; }
.sanity__label {
  font-family: var(--f-meta);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}
.sanity__track {
  display: block;
  position: relative;
  flex: 1;
  height: 7px;
  border: 1px solid rgba(234, 228, 215, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.sanity__fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal));
  box-shadow: 0 0 12px rgba(43, 217, 200, 0.6);
  transition: width 0.9s var(--ease), background 0.9s var(--ease), box-shadow 0.9s var(--ease);
}
.sanity[data-level="mid"] .sanity__fill {
  background: linear-gradient(90deg, #8a7a2f, var(--brass));
  box-shadow: 0 0 12px rgba(201, 162, 76, 0.55);
}
.sanity[data-level="low"] .sanity__fill {
  background: linear-gradient(90deg, var(--blood-deep), var(--blood-bright));
  box-shadow: 0 0 14px rgba(229, 38, 44, 0.7);
}
.sanity__num {
  font-family: var(--f-meta);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ash);
  min-width: 3ch;
  text-align: right;
}
.sanity.is-hit { animation: shake 0.5s var(--ease); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
}

/* Progresso em degraus */
.steps { display: flex; gap: 5px; margin-top: 0.7rem; }
.steps__i {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(234, 228, 215, 0.13);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.steps__i.is-done { background: var(--blood); }
.steps__i.is-now {
  background: var(--teal);
  box-shadow: 0 0 12px rgba(43, 217, 200, 0.8);
}

/* ---- Cena ---- */
.scene { padding-top: 2.6rem; }

.scene__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.1rem; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(234, 228, 215, 0.16);
  border-radius: var(--r-sm);
  background: rgba(8, 11, 14, 0.7);
  font-family: var(--f-meta);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.tag b { color: var(--bone); font-weight: 400; }
.tag--contato { border-color: rgba(193, 58, 168, 0.5); color: #E8A8DC; }
.tag--contato b { color: #F4CDEC; }
.tag--contato::before {
  content: "";
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--rune);
  box-shadow: 0 0 8px var(--rune);
}

.scene__reg {
  font-family: var(--f-meta);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-bottom: 0.5rem;
}
.scene__title {
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3rem);
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.prose { max-width: var(--read); }
.prose p + p { margin-top: 1.1rem; }
.prose--dim { color: #DCD6C9; }

/* Capitular na narração de abertura */
.narracao { position: relative; }
.narracao::first-letter {
  float: left;
  font-family: var(--f-display);
  font-size: 3.6em;
  line-height: 0.78;
  padding: 0.09em 0.14em 0 0;
  color: var(--blood-bright);
  text-shadow: 0 0 26px rgba(229, 38, 44, 0.4);
}

/* Bloco de diálogo */
.speech {
  position: relative;
  max-width: var(--read);
  margin-top: 1.9rem;
  padding: 1.15rem 1.4rem 1.15rem 1.6rem;
  background: linear-gradient(90deg, rgba(43, 217, 200, 0.07), rgba(8, 11, 14, 0.4) 60%);
  border-left: 2px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.speech__who {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--f-meta);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
}
.speech__line { font-style: italic; color: #E4DED1; }

.speech--blood {
  background: linear-gradient(90deg, rgba(176, 19, 25, 0.1), rgba(8, 11, 14, 0.4) 60%);
  border-left-color: var(--blood-bright);
}
.speech--blood .speech__who { color: #F19497; }

/* Pergunta */
.question {
  max-width: var(--read);
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(234, 228, 215, 0.1);
}
.question__label {
  font-family: var(--f-meta);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.6rem;
}
.question__text {
  font-family: var(--f-body);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.42rem);
  line-height: 1.5;
  color: #F2EDE2;
  text-shadow: 0 0 26px rgba(43, 217, 200, 0.16);
}

/* ---- Alternativas ---- */
.choices {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.7rem;
  max-width: 900px;
}
.choice {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  width: 100%;
  padding: 1.15rem 1.3rem 1.15rem 1.15rem;
  text-align: left;
  background: linear-gradient(180deg, rgba(30, 41, 51, 0.9), rgba(14, 20, 26, 0.92));
  border: 1px solid rgba(234, 228, 215, 0.11);
  border-radius: var(--r-md);
  color: #E0DACD;
  font-size: 1rem;
  line-height: 1.62;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.choice::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--blood);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.choice__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--blood-bright);
  padding-top: 0.18rem;
  min-width: 2.1ch;
  transition: color 0.25s var(--ease);
}
.choice:hover {
  border-color: rgba(43, 217, 200, 0.45);
  transform: translateX(5px);
  box-shadow: -6px 0 30px -12px rgba(43, 217, 200, 0.5);
  color: var(--bone);
}
.choice:hover::before { background: var(--teal); box-shadow: 0 0 16px var(--teal); }
.choice:hover .choice__num { color: var(--teal); }

.choice.is-picked {
  border-color: var(--teal);
  background: linear-gradient(180deg, rgba(11, 62, 62, 0.55), rgba(8, 11, 14, 0.85));
}
.choices.is-locked .choice:not(.is-picked) { opacity: 0.28; pointer-events: none; }
.choices.is-locked .choice { pointer-events: none; }

/* ---- Interseção narrativa ---- */
.aftermath { padding-top: 2.4rem; }

.beat {
  max-width: var(--read);
  margin-bottom: 1.6rem;
  padding-left: 1.15rem;
  border-left: 1px solid rgba(234, 228, 215, 0.14);
}
.beat__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--f-meta);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.beat--voce { border-left-color: var(--blood); }
.beat--voce .beat__label { color: var(--blood-bright); }
.beat--grupo { border-left-color: var(--teal-mid); }
.beat--grupo .beat__label { color: var(--teal); }

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
  padding: 0.7rem 1.25rem;
  border: 1px dashed rgba(193, 58, 168, 0.5);
  border-radius: var(--r-sm);
  background: rgba(193, 58, 168, 0.07);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.98rem;
  color: #EFBFE6;
}
.stamp::before {
  content: "";
  width: 8px; height: 8px;
  transform: rotate(45deg);
  background: var(--rune);
  box-shadow: 0 0 12px var(--rune);
}

.aftermath__go { margin-top: 2.3rem; }

/* ---- Interstício entre registros ---- */
.interlude {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background: var(--ink-950);
  text-align: center;
  animation: interludeIn 0.35s ease both;
}
.interlude.is-out { animation: interludeOut 0.5s ease both; }
@keyframes interludeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes interludeOut { from { opacity: 1; } to { opacity: 0; } }
.interlude__reg {
  font-family: var(--f-meta);
  font-size: 0.74rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-bottom: 0.8rem;
}
.interlude__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.6rem);
  letter-spacing: 0.06em;
  color: var(--bone);
}
.interlude__bar {
  width: 0;
  height: 1px;
  margin: 1.4rem auto 0;
  background: var(--teal);
  box-shadow: 0 0 14px var(--teal);
  animation: barGrow 1.1s var(--ease) forwards;
}
@keyframes barGrow { to { width: 190px; } }

/* ======================= 9. ENCERRAMENTO DO ATO ======================== */
.outro {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}
.outro__eyebrow { margin-bottom: 1.4rem; }
.outro__text {
  max-width: 62ch;
  margin: 0 auto 2.6rem;
  font-size: 1.1rem;
  color: #E2DCCF;
}
.outro__cta {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.5rem);
  color: var(--bone);
  margin-bottom: 1.8rem;
}

/* ========================= 10. FICHA DE RESULTADO ====================== */
.result { padding: 3.5rem 0 1rem; }

.result__top { text-align: center; margin-bottom: 2.4rem; }
.result__pre {
  font-family: var(--f-meta);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1rem;
}

.ficha {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border: 1px solid rgba(234, 228, 215, 0.13);
  border-radius: var(--r-lg);
  background:
    radial-gradient(80% 100% at 12% 50%, rgba(11, 62, 62, 0.4), transparent 62%),
    linear-gradient(180deg, rgba(30, 41, 51, 0.92), rgba(13, 18, 24, 0.96));
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.ficha::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(43, 217, 200, 0.06), transparent 30%);
}

.ficha__artwrap { position: relative; display: grid; place-items: center; }
.ficha__glow {
  position: absolute;
  width: 118%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 62, 62, 0.9) 0%, rgba(43, 217, 200, 0.16) 38%, transparent 66%);
  filter: blur(18px);
}
.ficha__emblema {
  position: absolute;
  width: 82%;
  opacity: 0.055;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}
.ficha__art {
  position: relative;
  width: 100%;
  filter:
    drop-shadow(0 0 26px rgba(43, 217, 200, 0.32))
    drop-shadow(0 22px 36px rgba(0, 0, 0, 0.9));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ficha__selo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  padding: 0.4rem 1.05rem;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal-ghost);
  font-family: var(--f-meta);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
}
.ficha__nome {
  font-size: clamp(2.2rem, 1.3rem + 4vw, 3.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  background: linear-gradient(180deg, #fff, #9FBDBC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ficha__frase {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.08rem;
  color: #EFC9CA;
  padding-left: 0.9rem;
  border-left: 2px solid var(--blood);
  margin-bottom: 1.5rem;
}
.ficha__bloco + .ficha__bloco { margin-top: 1.35rem; }
.ficha__h {
  font-family: var(--f-meta);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.45rem;
}
.ficha__p { color: #DCD6C9; font-size: 0.99rem; }

.traits { display: grid; gap: 0.55rem; margin-top: 0.3rem; }
.trait {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  font-size: 0.97rem;
  color: #DCD6C9;
}
.trait__k {
  font-family: var(--f-meta);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  padding-top: 0.28rem;
  white-space: nowrap;
}

/* Painéis abaixo da ficha */
.result__panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
  margin-top: 1.1rem;
}
.panel {
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(234, 228, 215, 0.1);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(30, 41, 51, 0.92), rgba(15, 21, 27, 0.95));
}
.panel__h {
  font-family: var(--f-meta);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.9rem;
}

/* Afinidades */
.affin { display: grid; gap: 0.65rem; }
.affin__row { display: grid; grid-template-columns: 8.5ch 1fr 2.4ch; gap: 0.7rem; align-items: center; }
.affin__k {
  font-family: var(--f-meta);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}
.affin__bar { display: block; height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.affin__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(176, 19, 25, 0.7), var(--blood-bright));
  transition: width 1.1s var(--ease);
}
.affin__row.is-top .affin__fill {
  background: linear-gradient(90deg, var(--teal-mid), var(--teal));
  box-shadow: 0 0 12px rgba(43, 217, 200, 0.6);
}
.affin__row.is-top .affin__k { color: var(--teal); }
.affin__v { font-family: var(--f-meta); font-size: 0.72rem; color: var(--bone); text-align: right; }

/* Sabor de sanidade */
.sanflavor {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.02rem;
  color: #EFBFE6;
  line-height: 1.6;
}
.sanflavor__meta {
  margin-top: 0.9rem;
  font-family: var(--f-meta);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
}

.result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2.2rem;
}

/* Ponte para a oferta */
.bridge {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(176, 19, 25, 0.35);
  border-bottom: 1px solid rgba(176, 19, 25, 0.35);
  background: linear-gradient(180deg, transparent, rgba(107, 10, 16, 0.14), transparent);
}
.bridge__text {
  max-width: 58ch;
  margin: 0 auto;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.4rem);
  color: var(--bone);
}

/* ============================== 11. MINI-LP ============================ */
.lp { padding-bottom: 4rem; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section__head { text-align: center; max-width: 62ch; margin: 0 auto 2.8rem; }
.section__head .eyebrow { display: block; margin-bottom: 0.9rem; }
.section__head p { color: var(--ash); margin-top: 0.9rem; }

/* Herói da LP */
.lphero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.lphero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/bg-cave.jpg") center / cover no-repeat;
  opacity: 0.55;
  filter: saturate(0.8) brightness(0.85) contrast(1.1);
}
.lphero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--ink-950) 0%, rgba(5, 7, 9, 0.38) 45%, var(--ink-950) 100%);
}
.lphero h2 { margin-bottom: 1.2rem; }
.lphero p { max-width: 60ch; margin: 0 auto; color: #E2DCCF; font-size: 1.08rem; }
.lphero__logo { width: min(230px, 55vw); margin: 0 auto 1.8rem; opacity: 0.95; }

/* O que é */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.8rem, 4vw, 3.6rem); align-items: center; }
.about__media {
  position: relative;
  border: 1px solid rgba(234, 228, 215, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.about__media img { width: 100%; filter: saturate(0.85) contrast(1.05); }
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 9, 0.6));
}
.about__line {
  margin-top: 1.5rem;
  padding: 0.9rem 1.2rem;
  border-left: 2px solid var(--teal);
  background: rgba(11, 62, 62, 0.25);
  font-family: var(--f-display);
  font-style: italic;
  color: #CFEDE9;
}

/* Grade de classes */
.classes { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1rem; }
.classcard {
  position: relative;
  padding: 1.5rem 1.3rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(234, 228, 215, 0.11);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(30, 41, 51, 0.92), rgba(15, 21, 27, 0.95));
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  overflow: hidden;
}
.classcard:hover { border-color: rgba(43, 217, 200, 0.4); transform: translateY(-4px); }
.classcard__em { width: 46px; margin: 0 auto 0.9rem; opacity: 0.55; }
.classcard__n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.classcard__d { font-size: 0.93rem; color: var(--ash); line-height: 1.6; }
.classcard.is-you {
  border-color: var(--teal);
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(43, 217, 200, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(11, 62, 62, 0.5), rgba(8, 11, 14, 0.9));
  box-shadow: 0 0 44px -14px rgba(43, 217, 200, 0.6);
}
.classcard.is-you .classcard__em { opacity: 1; }
.classcard__you {
  position: absolute;
  top: 0; right: 0;
  padding: 0.25rem 0.7rem;
  border-bottom-left-radius: var(--r-md);
  background: var(--teal);
  color: var(--ink-950);
  font-family: var(--f-meta);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---- Pacotes ---- */
.packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1.3rem;
  align-items: start;
}
.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid rgba(234, 228, 215, 0.12);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(30, 41, 51, 0.92), rgba(14, 20, 26, 0.95));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pack:hover { transform: translateY(-5px); border-color: rgba(234, 228, 215, 0.24); }

.pack--hot {
  border-color: var(--blood);
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(107, 10, 16, 0.5), transparent 70%),
    linear-gradient(180deg, rgba(26, 20, 22, 0.9), rgba(8, 11, 14, 0.95));
  box-shadow: 0 0 60px -22px rgba(229, 38, 44, 0.75);
}
.pack--hot:hover { border-color: var(--blood-bright); }

.pack__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.32rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blood-bright), var(--blood));
  color: #fff;
  font-family: var(--f-meta);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 22px -8px rgba(229, 38, 44, 0.9);
}

.pack__img {
  width: 100%;
  max-width: 235px;
  margin: 0.4rem auto 1.2rem;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.8));
}
.pack__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  text-align: center;
}
.pack__sub {
  text-align: center;
  font-family: var(--f-meta);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 0.3rem;
}
.pack__tag {
  text-align: center;
  font-style: italic;
  color: var(--ash);
  font-size: 0.93rem;
  margin-top: 0.7rem;
}

.pack__was {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.3rem 0 0.15rem;
  font-family: var(--f-meta);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash-dim);
}
.pack__price { text-align: center; }
.pack__from { text-decoration: line-through; }
.pack__now {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.15rem;
  color: var(--bone);
  text-shadow: 0 0 30px rgba(43, 217, 200, 0.18);
}
.pack__off {
  padding: 0.12rem 0.5rem;
  border-radius: var(--r-sm);
  background: var(--blood);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.pack__list { display: grid; gap: 0.55rem; margin: 1.3rem 0 1.4rem; flex: 1; }
.pack__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #DCD6C9;
}
.pack__list li::before {
  content: "✦";
  color: var(--teal);
  font-size: 0.85rem;
  line-height: 1.7;
}
.pack__note {
  font-size: 0.79rem;
  color: var(--ash-dim);
  text-align: center;
  margin-top: 0.9rem;
}

/* Selo da ONG — vive dentro do card Abissal, pois vale só para ele */
.pack__ong {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(43, 217, 200, 0.28);
}
.pack__ong img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pack__ong p { font-size: 0.85rem; line-height: 1.5; color: #E2DCCF; }
.pack__ong b { color: var(--teal); font-weight: 400; }

/* Garantia */
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
  font-family: var(--f-meta);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.guarantee svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.6; }

/* ---- Depoimentos ---- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
.quote {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.3rem;
  border: 1px solid rgba(234, 228, 215, 0.1);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(30, 41, 51, 0.92), rgba(15, 21, 27, 0.95));
}
.quote__stars { color: var(--brass); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: 0.9rem; }
.quote__txt { font-style: italic; color: #E2DCCF; font-size: 0.97rem; flex: 1; }
.quote__by { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(234, 228, 215, 0.1); }
.quote__logo {
  width: 42px; height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  flex-shrink: 0;
}
.quote__who { font-family: var(--f-meta); font-size: 0.86rem; letter-spacing: 0.06em; color: var(--bone); }
.quote__ch { font-family: var(--f-meta); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }

/* Faixa de parceiros */
.logostrip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 2.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(234, 228, 215, 0.09);
}
.logostrip img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
  transition: opacity 0.25s;
}
.logostrip img:hover { opacity: 0.9; }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 0.6rem; }
.faq__item {
  border: 1px solid rgba(234, 228, 215, 0.1);
  border-radius: var(--r-md);
  background: rgba(24, 33, 41, 0.85);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq__item.is-open { border-color: rgba(43, 217, 200, 0.4); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--bone);
  transition: color 0.2s;
}
.faq__q:hover { color: var(--teal); }
.faq__ico {
  flex-shrink: 0;
  width: 14px; height: 14px;
  position: relative;
}
.faq__ico::before,
.faq__ico::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--teal);
  transition: transform 0.3s var(--ease);
}
.faq__ico::after { transform: rotate(90deg); }
.faq__item.is-open .faq__ico::after { transform: rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 1.3rem 1.25rem;
  color: var(--ash);
  font-size: 0.97rem;
}

/* ---- Fechamento ---- */
.closing {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.closing__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/hero.jpg") center 30% / cover no-repeat;
  opacity: 0.22;
  filter: saturate(0.6) brightness(0.7);
}
.closing__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--ink-950), rgba(5, 7, 9, 0.6) 45%, var(--ink-950));
}
.closing h2 { max-width: 20ch; margin: 0 auto 1.2rem; }
.closing p { max-width: 52ch; margin: 0 auto 2.2rem; color: #E2DCCF; font-style: italic; font-family: var(--f-display); font-size: 1.1rem; }

/* Rodapé */
.foot {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(234, 228, 215, 0.08);
  text-align: center;
}
.foot__logo { width: 130px; margin: 0 auto 1.2rem; opacity: 0.5; }
.foot__txt {
  font-family: var(--f-meta);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-dim);
  line-height: 2;
}

/* Barra fixa de conversão (mobile) */
.stickybuy {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(8, 11, 14, 0.92), var(--ink-950));
  border-top: 1px solid rgba(176, 19, 25, 0.5);
  backdrop-filter: blur(8px);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.stickybuy.is-on { transform: none; }
.stickybuy__t { flex: 1; min-width: 0; }
.stickybuy__k { font-family: var(--f-meta); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); }
.stickybuy__v { font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; }

/* ============================ 12. RESPONSIVO =========================== */
@media (max-width: 900px) {
  .ficha { grid-template-columns: 1fr; text-align: center; }
  .ficha__frase { border-left: 0; border-top: 2px solid var(--blood); padding: 0.9rem 0 0; }
  .ficha__artwrap { max-width: 300px; margin: 0 auto; }
  .trait { grid-template-columns: 1fr; gap: 0.15rem; text-align: left; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; line-height: 1.72; }
  .wrap, .wrap--narrow { width: min(100% - 1.75rem, var(--wrap)); }
  .hud__row { gap: 0.7rem; }
  .hud__ato, .hud__brand img { display: none; }
  .sanity { min-width: 0; flex: 1; }
  .sanity__label { display: none; }
  .choice { padding: 1rem; gap: 0.75rem; font-size: 0.97rem; }
  .scene { padding-top: 1.8rem; }
  .narracao::first-letter { font-size: 3em; }
  .stickybuy { display: flex; }
  .lp { padding-bottom: 5.5rem; }
  .quiz__silhueta { width: 78vw; opacity: 0.05; }
  .result__actions .btn { width: 100%; }
}

/* Coluna única de pacotes. O valor precisa bater com `mqColunaUnica`
   em app.js, que reordena os cards para Abissal → Flagelado → Caído. */
@media (max-width: 564px) {
  .packs { grid-template-columns: 1fr; }
}

/* ==================== 13. MOVIMENTO REDUZIDO / IMPRESSÃO ================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { animation: none; }
  .atmos__grain { display: none; }
}
