/* ═══════════════════════════════════════════════════════════════
   PORTAL ORÁCULO — style.css
   Design: Dark Luxury Cinematic — Dois Universos
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── ROOT TOKENS ── */
:root {
  /* Oráculo Místico palette */
  --teal:        #00d4c8;
  --teal-dim:    rgba(0, 212, 200, 0.15);
  --teal-glow:   rgba(0, 212, 200, 0.35);
  --gold:        #c8a84b;
  --gold-dim:    rgba(200, 168, 75, 0.15);
  --violet:      #7b2fff;
  --violet-dim:  rgba(123, 47, 255, 0.18);
  --mystic-bg:   #020804;

  /* Decide Aí palette */
  --purple:      #6c63ff;
  --purple-dim:  rgba(108, 99, 255, 0.18);
  --purple-b:    #b45cf8;
  --decide-bg:   #080a0f;

  /* Shared */
  --text-light:  #e8f0ef;
  --text-mid:    rgba(220, 232, 228, 0.72);
  --text-dim:    rgba(200, 216, 212, 0.45);
  --border-teal: rgba(0, 212, 200, 0.14);
  --border-purple: rgba(108, 99, 255, 0.18);

  --font-mystic: 'Cinzel Decorative', serif;
  --font-serif:  'Cinzel', serif;
  --font-sans:   'DM Sans', sans-serif;
  --font-display:'Syne', sans-serif;

  --radius-card: 20px;
  --radius-btn:  10px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #020a08;
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

/* ══════════════════════════════════════════════════════════════
   BOOK INTRO — Animação de Abertura do Livro Místico
   ══════════════════════════════════════════════════════════════ */

.book-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 60%, #060d18 0%, #020408 55%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 1.4s ease, visibility 1.4s ease;
}

.book-intro.closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Partículas canvas */
#bookParticles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Raios de luz cósmicos */
.cosmic-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 0;
  transform-origin: top center;
  border-radius: 2px;
  opacity: 0;
  filter: blur(1px);
  animation: rayGrow 3s ease-in-out infinite alternate;
}

.ray-1 { transform: rotate(0deg)   translateX(-50%); background: linear-gradient(to bottom, rgba(0,212,200,0.8), transparent); animation-delay: 0s;    height: 45vh; }
.ray-2 { transform: rotate(72deg)  translateX(-50%); background: linear-gradient(to bottom, rgba(200,168,75,0.7), transparent); animation-delay: 0.4s;  height: 40vh; }
.ray-3 { transform: rotate(144deg) translateX(-50%); background: linear-gradient(to bottom, rgba(123,47,255,0.7), transparent); animation-delay: 0.8s;  height: 50vh; }
.ray-4 { transform: rotate(216deg) translateX(-50%); background: linear-gradient(to bottom, rgba(0,212,200,0.6), transparent); animation-delay: 1.2s;  height: 42vh; }
.ray-5 { transform: rotate(288deg) translateX(-50%); background: linear-gradient(to bottom, rgba(180,92,248,0.7), transparent); animation-delay: 1.6s;  height: 38vh; }

@keyframes rayGrow {
  0%   { opacity: 0;    height: 0; }
  30%  { opacity: 0.6; }
  100% { opacity: 0.15; height: 50vh; }
}

/* Orbs flutuantes */
.intro-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
  animation: introOrbFloat 6s ease-in-out infinite alternate;
}

.orb-teal   { width: 350px; height: 350px; background: radial-gradient(circle, rgba(0,212,200,0.18), transparent 70%); top: 10%; left: 5%; animation-delay: 0s; }
.orb-purple { width: 400px; height: 400px; background: radial-gradient(circle, rgba(108,99,255,0.15), transparent 70%); bottom: 10%; right: 5%; animation-delay: -3s; }
.orb-gold   { width: 200px; height: 200px; background: radial-gradient(circle, rgba(200,168,75,0.2), transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -1.5s; }

@keyframes introOrbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.1); }
}

/* CENA DO LIVRO */
.book-scene {
  position: relative;
  z-index: 10;
  perspective: 2600px;
  perspective-origin: 50% 45%;
  width: 600px;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .book-scene { transform: scale(0.95); }
}

/*
 * LIVRO DE CAPA DURA — caixa fechada + capa com dobradiça real.
 * Dimensões: 260 × 380 × 38px.
 *
 * As faces fixas (contracapa, lombada, folhas) ficam centradas no volume
 * e vão à posição com rotate…() translateZ(meia-dimensão) — arestas exatas.
 * A capa frontal (.bk-lid) é independente, presa à lombada por
 * transform-origin: left center, e ABRE de verdade ao entrar no portal.
 *
 * Importante: nenhuma face usa border-radius. Cantos arredondados em faces
 * 3D recortam o canto e deixam ver as faces de trás pela fresta — era a
 * causa dos triângulos claros nos cantos.
 */

.book {
  position: relative;
  width: 300px;
  height: 400px;
  transform-style: preserve-3d;
  cursor: pointer;
  animation: bookFloat 5s ease-in-out infinite alternate;
}

/* flutuação: de lado, com o lado das folhas visível à direita */
@keyframes bookFloat {
  0%   { transform: rotateX(8deg)  rotateY(-26deg) translateY(0); }
  100% { transform: rotateX(11deg) rotateY(-19deg) translateY(-14px); }
}

/* ao abrir: o livro vira de frente para o leitor enquanto a capa abre */
.book.opening {
  animation: bookOpenTurn 1.3s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}

@keyframes bookOpenTurn {
  0%   { transform: rotateX(9deg) rotateY(-23deg) scale(1); }
  100% { transform: rotateX(4deg) rotateY(-8deg) scale(1.07) translateY(-8px); }
}

/* ── Faces fixas da caixa ── */
.bk-face {
  position: absolute;
  backface-visibility: hidden;
}

/* CONTRACAPA — fundo da caixa */
.bk-back {
  width: 300px;
  height: 400px;
  top: 0; left: 0;
  transform: rotateY(180deg) translateZ(17px);
  background: linear-gradient(145deg, #07130a 0%, #040d06 100%);
  box-shadow: inset 0 0 0 2px rgba(200,168,75,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-ornament {
  font-family: var(--font-serif);
  font-size: 28px;
  color: rgba(200,168,75,0.12);
}

/* LOMBADA — 34×400 centrada (left = (300-34)/2 = 133) — +1px fecha gaps */
.bk-spine {
  width: 34px;
  height: 402px;
  top: -1px; left: 133px;
  transform: rotateY(-90deg) translateZ(150px);
  background: linear-gradient(to right, #08160c 0%, #122619 35%, #0b1c11 70%, #071108 100%);
  box-shadow:
    inset 0 0 0 2px rgba(200,168,75,0.25),
    inset 4px 0 10px rgba(200,168,75,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-spine::before {
  content: '';
  position: absolute;
  top: 7%; bottom: 7%; left: 7px; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(200,168,75,0.45), rgba(0,212,200,0.25), transparent);
}

/* LOMBADA INTERNA — mesma posição da lombada, virada para dentro do livro.
   Sem ela, o vão entre a lombada e o bloco de páginas vaza o fundo
   (buraco visível quando a capa abre além de 90°). */
.bk-spine-inner {
  width: 34px;
  height: 402px;
  top: -1px; left: 133px;
  transform: rotateY(90deg) translateZ(-150px);
  background: linear-gradient(to right, #071108 0%, #0d2013 30%, #122619 50%, #0d2013 70%, #071108 100%);
  box-shadow:
    inset 0 0 0 1px rgba(200,168,75,0.12),
    inset 0 0 22px rgba(0,0,0,0.65);
}

.spine-text {
  font-family: var(--font-serif);
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,168,75,0.75);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-shadow: 0 0 8px rgba(200,168,75,0.5);
}

/* FOLHAS — lado direito (listras empilhadas ao longo da espessura) — +1px fecha gaps */
.bk-pages-right {
  width: 36px;
  height: 402px;
  top: -1px; left: 132px;
  transform: rotateY(90deg) translateZ(150px);
  background: repeating-linear-gradient(
    to right,
    #f2ecda 0px, #ddd2ae 1.5px,
    #ece6d2 3px, #d2c69e 4.5px,
    #e8e2cc 6px
  );
  box-shadow:
    inset 0 0 0 1px rgba(120,100,55,0.35),
    inset 0 0 14px rgba(0,0,0,0.18);
}

/* FOLHAS — topo e base (300×34 centradas: top = (400-34)/2 = 183) — +1px fecha gaps */
.bk-pages-top,
.bk-pages-bottom {
  width: 302px;
  height: 34px;
  top: 183px;
  margin-left: -1px;
  left: 0;
  background: repeating-linear-gradient(
    to bottom,
    #efe9d6 0px, #dad0a8 1.5px,
    #ebe5d0 3px, #d0c49c 4.5px,
    #e6e0ca 6px
  );
  box-shadow:
    inset 0 0 0 1px rgba(120,100,55,0.3),
    inset 0 0 12px rgba(0,0,0,0.15);
}

.bk-pages-top    { transform: rotateX(90deg)  translateZ(200px); }
.bk-pages-bottom { transform: rotateX(-90deg) translateZ(200px); filter: brightness(0.8); }

/* ── PÁGINA DUPLA revelada quando a capa abre ── */
.bk-spread {
  position: absolute;
  inset: 5px 5px 5px 1px; /* encostado na lombada à esquerda */
  transform: translateZ(16px);
  background: linear-gradient(160deg, #0b1e15 0%, #0a0d1d 100%);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

/* vinco central entre as duas páginas */
.bk-spread::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6), transparent);
  z-index: 2;
}

/* ── CAPA FRONTAL — dobradiça presa à lombada ── */
.bk-lid {
  position: absolute;
  width: 300px;
  height: 400px;
  top: 0; left: 0;
  transform-style: preserve-3d;
  transform-origin: left center;
  transform: translateZ(17px) rotateY(0deg);
  transition: transform 0.75s cubic-bezier(0.45, 0, 0.2, 1);
}

/* fase 1: abre até ~115° — interior bem visível durante a pausa */
.book.opening .bk-lid {
  transform: translateZ(17px) rotateY(-115deg);
}

/* fase 2: abre completamente para a magia */
.book.opening-full .bk-lid {
  transform: translateZ(17px) rotateY(-148deg);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── BLOCO DE FOLHAS 3D — mesmo tamanho do livro fechado ──
   Folhas empilhadas ocupando TODA a espessura do livro (38px de
   profundidade), exatamente como o bloco de páginas do livro fechado.
   Cada folha é uma camada 260×380 (menos margens da capa) em um
   translateZ diferente, formando a escadinha de páginas que se vê
   num livro de verdade quando a capa abre. */
.bk-pages-stack {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}

.bk-page-leaf {
  position: absolute;
  top: 4px;
  left: 1px; /* encostado na lombada */
  background: linear-gradient(160deg, #f2ecda 0%, #e8e0c8 45%, #d8cca4 100%);
  box-shadow:
    inset 0 0 0 1px rgba(120,100,55,0.28),
    3px 3px 5px rgba(0,0,0,0.2);
}

/* da folha de cima (logo abaixo da página aberta) até o fundo do livro —
   cada uma desce no eixo Z e avança um pouco na borda direita/inferior,
   criando a escadinha 3D do bloco de páginas */
.bk-page-leaf:nth-child(1) { transform: translateZ(15px);  right: 4.5px; bottom: 4.5px; }
.bk-page-leaf:nth-child(2) { transform: translateZ(11px);  right: 4px;   bottom: 4px;   filter: brightness(0.96); }
.bk-page-leaf:nth-child(3) { transform: translateZ(7px);   right: 3.5px; bottom: 3.5px; filter: brightness(0.92); }
.bk-page-leaf:nth-child(4) { transform: translateZ(3px);   right: 3px;   bottom: 3px;   filter: brightness(0.88); }
.bk-page-leaf:nth-child(5) { transform: translateZ(-1px);  right: 2.5px; bottom: 2.5px; filter: brightness(0.84); }
.bk-page-leaf:nth-child(6) { transform: translateZ(-5px);  right: 2px;   bottom: 2px;   filter: brightness(0.8); }
.bk-page-leaf:nth-child(7) { transform: translateZ(-9px);  right: 1.5px; bottom: 1.5px; filter: brightness(0.76); }
.bk-page-leaf:nth-child(8) { transform: translateZ(-13px); right: 1px;   bottom: 1px;   filter: brightness(0.72); }

/* face externa da capa (couro verde + moldura dourada) */
.bk-front {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background: linear-gradient(160deg,
    #0c2214 0%, #071509 35%, #0e2419 60%, #061208 85%, #040e06 100%);
  box-shadow:
    inset 0 0 0 2px rgba(200,168,75,0.5),
    inset 6px 0 16px rgba(200,168,75,0.1),
    inset 0 0 80px rgba(0,212,200,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* textura de couro */
.bk-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,  transparent 0px, rgba(0,0,0,0.06) 1px, transparent 2px, transparent 9px),
    repeating-linear-gradient(90deg, transparent 0px, rgba(0,0,0,0.04) 1px, transparent 2px, transparent 14px);
  pointer-events: none;
}

/* moldura interna dourada */
.bk-front::after {
  content: '';
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(200,168,75,0.25);
  box-shadow: inset 0 0 24px rgba(200,168,75,0.05);
  pointer-events: none;
}

/* face interna da capa (aparece quando a capa abre) */
.bk-lid-inside {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background: linear-gradient(200deg, #0d2016 0%, #08130a 100%);
  box-shadow:
    inset 0 0 0 2px rgba(200,168,75,0.15),
    inset 0 0 40px rgba(0,0,0,0.5);
}


/* Brilho da capa */
.cover-glow {
  position: absolute;
  top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,212,200,0.07) 0%, transparent 55%);
  pointer-events: none;
  animation: coverGlowPulse 3.5s ease-in-out infinite alternate;
}

@keyframes coverGlowPulse {
  0%   { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 1;   transform: scale(1.08); }
}

/* Runas decorativas */
.cover-runes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rune {
  position: absolute;
  font-family: var(--font-serif);
  color: rgba(200,168,75,0.25);
  animation: runePulse 5s ease-in-out infinite alternate;
}

.r1 { top: 8%;  left: 10%;  font-size: 13px; animation-delay: 0s; }
.r2 { top: 8%;  right: 10%; font-size: 11px; animation-delay: 0.7s; }
.r3 { top: 48%; left: 6%;   font-size: 9px;  animation-delay: 1.4s; }
.r4 { top: 48%; right: 6%;  font-size: 9px;  animation-delay: 2.1s; }
.r5 { bottom: 8%; left: 10%; font-size: 13px; animation-delay: 2.8s; }
.r6 { bottom: 8%; right: 10%;font-size: 11px; animation-delay: 3.5s; }

@keyframes runePulse {
  0%   { opacity: 0.15; transform: scale(1) rotate(-5deg); }
  100% { opacity: 0.6;  transform: scale(1.25) rotate(5deg); }
}

/* Círculo central */
.cover-circle {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 22px;
}

.cover-circle-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,212,200,0.5);
  box-shadow: 0 0 24px rgba(0,212,200,0.2), inset 0 0 24px rgba(0,212,200,0.05);
  animation: circleRotate 14s linear infinite;
}

.cover-circle-inner::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.4);
  animation: circleRotate 9s linear infinite reverse;
}

.cover-circle-inner::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(123,47,255,0.35);
  animation: circleRotate 5s linear infinite;
}

@keyframes circleRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cover-eye {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: var(--teal);
  text-shadow: 0 0 24px rgba(0,212,200,0.9), 0 0 48px rgba(0,212,200,0.4);
  animation: eyePulse 2.5s ease-in-out infinite alternate;
}

@keyframes eyePulse {
  0%   { text-shadow: 0 0 16px rgba(0,212,200,0.6); transform: translate(-50%,-50%) scale(1); }
  100% { text-shadow: 0 0 40px rgba(0,212,200,1), 0 0 70px rgba(0,212,200,0.5); transform: translate(-50%,-50%) scale(1.18); }
}

/* Título da capa */
.cover-title { text-align: center; z-index: 1; position: relative; }

.cover-eyebrow {
  font-family: var(--font-serif);
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 10px;
}

.cover-name {
  font-family: var(--font-mystic);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
  color: var(--text-light);
  text-shadow: 0 0 30px rgba(0,212,200,0.25);
  margin-bottom: 14px;
}

.cover-name em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cover-sub {
  font-family: var(--font-serif);
  font-size: 7px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200,216,212,0.35);
  line-height: 2;
  max-width: 180px;
  text-align: center;
}

.cover-bottom-ornament {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(200,168,75,0.35);
  white-space: nowrap;
  z-index: 1;
}

/* ── PÁGINAS INTERNAS (visíveis na face interna da contracapa ao abrir) ── */
.book-page {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.7s ease 1.0s;
}

.book.opening .book-page { opacity: 1; }

.page-left {
  left: 0;
  background: linear-gradient(160deg, #0b1e15 0%, #071209 100%);
  border-right: 1px solid rgba(0,212,200,0.08);
  border-radius: 2px 0 0 2px;
}

.page-left::before {
  content: '';
  position: absolute;
  inset: 14px;
  background: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 16px, rgba(0,212,200,0.05) 17px
  );
  pointer-events: none;
}

.page-right {
  right: 0;
  background: linear-gradient(160deg, #0b0d20 0%, #080812 100%);
  border-left: 1px solid rgba(108,99,255,0.08);
  border-radius: 0 5px 5px 0;
}

.page-right::before {
  content: '';
  position: absolute;
  inset: 14px;
  background: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 16px, rgba(108,99,255,0.05) 17px
  );
  pointer-events: none;
}

.page-content {
  text-align: center;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.page-ornament {
  font-family: var(--font-serif);
  font-size: 12px;
  opacity: 0.35;
  color: var(--gold);
}

.page-title-left {
  font-family: var(--font-mystic);
  font-size: 1.05rem;
  color: var(--teal);
  text-shadow: 0 0 20px rgba(0,212,200,0.5);
  line-height: 1.2;
}

.page-title-right {
  font-family: var(--font-mystic);
  font-size: 1.05rem;
  color: var(--purple-b);
  text-shadow: 0 0 20px rgba(180,92,248,0.5);
  line-height: 1.2;
}

.page-text-left, .page-text-right {
  font-family: var(--font-serif);
  font-size: 7.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.7;
}

.page-symbol { font-size: 2.2rem; }

/* MAGIC BURST — partículas ao abrir */
.magic-burst {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  pointer-events: none;
  z-index: 20;
}

.magic-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFly 1.2s ease-out forwards;
}

@keyframes particleFly {
  0%   { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* INTRO HINT — agora é um botão real: precisa do toque/clique verdadeiro
   do usuário pra abrir o livro, e é esse mesmo gesto que libera o som do
   vídeo (navegadores só permitem áudio automático a partir de um clique
   real, nunca de um clique simulado por código). */
.intro-hint {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,212,200,0.9);
  z-index: 20;
  white-space: nowrap;
  animation: hintPulse 2s ease-in-out infinite;
  background: rgba(0, 212, 200, 0.08);
  border: 1px solid rgba(0, 212, 200, 0.4);
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 0 24px rgba(0, 212, 200, 0.15);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.intro-hint:hover {
  background: rgba(0, 212, 200, 0.16);
  border-color: rgba(0, 212, 200, 0.7);
}
.intro-hint:active { transform: translateX(-50%) scale(0.96); }

.intro-start-icon {
  font-size: 10px;
  color: var(--gold);
}

.hint-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
  animation: dotBlink 1.5s ease-in-out infinite alternate;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(-4px); }
}

@keyframes dotBlink {
  0%   { opacity: 0.3; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.5); }
}

/* ── CURSOR MÁGICO ANIMADO ── */
.mystic-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 30;
  width: 28px;
  height: 28px;
  /* começa no canto inferior esquerdo da tela */
  left: 10%;
  bottom: 18%;
  animation: cursorPath 4s cubic-bezier(0.4,0,0.2,1) forwards;
  filter: drop-shadow(0 0 8px rgba(0,212,200,0.9));
}

/* SVG de seta mística desenhado inline via HTML */
.mystic-cursor svg {
  width: 100%;
  height: 100%;
  animation: cursorWiggle 0.35s ease-in-out infinite alternate;
}

/* Rastro de luz atrás do cursor */
.cursor-trail {
  position: absolute;
  pointer-events: none;
  z-index: 29;
  border-radius: 50%;
  animation: trailFade 4s linear forwards;
}

/* Caminho animado: da esquerda/baixo até o centro do livro */
@keyframes cursorPath {
  0%   { transform: translate(0vw, 0vh)       scale(1)    rotate(-20deg); opacity: 0; }
  8%   { opacity: 1; }
  30%  { transform: translate(18vw, -12vh)    scale(1.1)  rotate(10deg); }
  55%  { transform: translate(32vw, -22vh)    scale(1.15) rotate(-5deg); }
  75%  { transform: translate(38vw, -28vh)    scale(1.2)  rotate(0deg); }
  88%  { transform: translate(40vw, -30vh)    scale(1.4)  rotate(0deg); opacity: 1; }
  95%  { transform: translate(40vw, -30vh)    scale(0.8)  rotate(0deg); opacity: 0.3; }
  100% { transform: translate(40vw, -30vh)    scale(0)    rotate(0deg); opacity: 0; }
}

@keyframes cursorWiggle {
  0%   { transform: rotate(-8deg) scale(1); }
  100% { transform: rotate(8deg)  scale(1.08); }
}

/* Estrelinhas que saem do cursor */
.cursor-sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 31;
  font-size: 10px;
  color: var(--teal);
  animation: sparkleFloat 1.2s ease-out forwards;
  text-shadow: 0 0 8px rgba(0,212,200,0.9);
}

@keyframes sparkleFloat {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* Clique visual — círculo que expande no livro */
.cursor-click-ring {
  position: absolute;
  pointer-events: none;
  z-index: 32;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
  animation: clickRing 0.6s ease-out forwards;
  box-shadow: 0 0 12px rgba(0,212,200,0.6);
}

@keyframes clickRing {
  0%   { transform: translate(-50%,-50%) scale(0);   opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(6);   opacity: 0; }
}

/* FLASH DE LUZ ao fechar */
.light-flash {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: radial-gradient(ellipse at center, rgba(0,212,200,0.95) 0%, rgba(200,168,75,0.6) 30%, rgba(123,47,255,0.3) 60%, transparent 80%);
  pointer-events: none;
  opacity: 0;
  animation: flashBurst 1s ease-out forwards;
}

@keyframes flashBurst {
  0%   { opacity: 0;   transform: scale(0.2); }
  15%  { opacity: 1;   transform: scale(1.5); }
  40%  { opacity: 0.7; transform: scale(1.2); }
  100% { opacity: 0;   transform: scale(2); }
}

/* ── CANVAS STARFIELD ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── NEBULA LAYERS ── */
.nebula-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0,212,200,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(108,99,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 50% 10%, rgba(200,168,75,0.04) 0%, transparent 70%);
  animation: nebulaDrift 20s ease-in-out infinite alternate;
}

@keyframes nebulaDrift {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.05) translate(1%,1.5%); }
}

.cosmic-veil {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(2,8,4,0.7) 100%);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  padding: 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(2, 8, 4, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-teal);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-light);
  transition: color var(--transition);
}

.nav-logo:hover { color: var(--teal); }

.logo-symbol {
  color: var(--teal);
  font-size: 20px;
  text-shadow: 0 0 12px var(--teal-glow);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { text-shadow: 0 0 12px var(--teal-glow); }
  50%       { text-shadow: 0 0 24px var(--teal), 0 0 40px rgba(0,212,200,0.3); }
}

.logo-text em {
  font-style: normal;
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--teal); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 32px 20px;
  gap: 4px;
  border-top: 1px solid var(--border-teal);
  background: rgba(2,8,4,0.95);
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,212,200,0.06);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--teal); }
.nav-mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-split {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}

.split-mystic {
  flex: 1;
  background: radial-gradient(ellipse 80% 80% at 20% 50%, rgba(0,212,200,0.08) 0%, transparent 70%);
}

.split-decide {
  flex: 1;
  background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(108,99,255,0.10) 0%, transparent 70%);
}

.split-center-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(200,168,75,0.3), transparent);
  box-shadow: 0 0 40px 20px rgba(200,168,75,0.06);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-left {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: 10%; left: -100px;
}

.hero-orb-right {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  bottom: 10%; right: -100px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(30px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.title-line-1 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.title-line-2 {
  font-family: var(--font-mystic);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 40%, var(--purple-b) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(0,212,200,0.3));
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid;
  transition: all var(--transition);
  min-width: 240px;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.cta-btn:hover::before { opacity: 1; }

.cta-mystic {
  background: rgba(0,212,200,0.06);
  border-color: var(--teal);
  box-shadow: 0 0 30px rgba(0,212,200,0.12);
}
.cta-mystic::before { background: rgba(0,212,200,0.08); }
.cta-mystic:hover {
  box-shadow: 0 0 50px rgba(0,212,200,0.25), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.cta-decide {
  background: rgba(108,99,255,0.06);
  border-color: var(--purple);
  box-shadow: 0 0 30px rgba(108,99,255,0.12);
}
.cta-decide::before { background: rgba(108,99,255,0.08); }
.cta-decide:hover {
  box-shadow: 0 0 50px rgba(108,99,255,0.25), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.cta-icon { font-size: 1.6rem; flex-shrink: 0; }

.cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cta-text strong { font-family: var(--font-serif); font-size: 13px; letter-spacing: 1px; }
.cta-text small { font-size: 11px; opacity: 0.65; margin-top: 2px; }

.cta-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.cta-btn:hover .cta-arrow { transform: translateX(4px); }

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-scroll-hint span {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── COSMIC DIVIDER ── */
.cosmic-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 24px auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}
.divider-symbol {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  opacity: 0.5;
  text-shadow: 0 0 12px rgba(200,168,75,0.4);
}

/* ── VIDEO METAMORPHOSIS ── */
.video-player {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(200, 168, 75, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(0, 212, 200, 0.12);
  isolation: isolate;
}

.video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Bolinha de play central */
.video-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  border: 1.5px solid rgba(200, 168, 75, 0.55);
  background: radial-gradient(circle at 35% 30%, rgba(0, 212, 200, 0.35), rgba(2, 8, 4, 0.75));
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 8px rgba(0, 212, 200, 0.08), 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4ead0;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.video-center-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 10px rgba(0, 212, 200, 0.14), 0 10px 46px rgba(0, 0, 0, 0.55);
}
.vcb-icon { width: 32px; height: 32px; }
.vcb-icon.vcb-play  { margin-left: 4px; }
.vcb-icon.vcb-pause { display: none; }

.video-player.is-playing .video-center-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}
.video-player:not(.is-playing) .video-center-btn .vcb-play  { display: block; }
.video-player:not(.is-playing) .video-center-btn .vcb-pause { display: none; }

/* Barra de controles */
.video-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
  z-index: 2;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.video-player.controls-hidden .video-controls {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.vc-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-light);
  opacity: 0.85;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.vc-btn:hover { opacity: 1; color: var(--teal); }
.vc-icon { width: 20px; height: 20px; }

.video-controls .vc-icon-pause,
.video-controls .vc-icon-mute { display: none; }
.video-player.is-playing .vc-play .vc-icon-play  { display: none; }
.video-player.is-playing .vc-play .vc-icon-pause { display: block; }
.video-player.is-muted .vc-mute .vc-icon-vol   { display: none; }
.video-player.is-muted .vc-mute .vc-icon-mute  { display: block; }

.vc-time, .vc-duration {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-mid);
  min-width: 34px;
  text-align: center;
  flex: 0 0 auto;
}

.vc-progress {
  position: relative;
  flex: 1 1 auto;
  height: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.vc-progress::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
}
.vc-progress-buffer,
.vc-progress-fill {
  position: absolute;
  left: 0;
  height: 3px;
  border-radius: 2px;
  pointer-events: none;
}
.vc-progress-buffer { background: rgba(255, 255, 255, 0.28); width: 0%; }
.vc-progress-fill   { background: linear-gradient(90deg, var(--teal), var(--gold)); width: 0%; }
.vc-progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200, 168, 75, 0.7);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.1s ease;
}
.vc-progress:hover .vc-progress-handle { transform: translate(-50%, -50%) scale(1.25); }

@media (max-width: 640px) {
  .video-player { border-radius: 14px; }
  .video-center-btn { width: 64px; height: 64px; }
  .vcb-icon { width: 24px; height: 24px; }
  .video-controls { gap: 8px; padding: 8px 10px 10px; }
  .vc-time, .vc-duration { display: none; }
}

/* ── PAINEL DE LETRA + TRADUÇÃO (integrado ao vídeo) ── */
.lyrics-panel {
  max-width: 960px;
  margin: 28px auto 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 20, 16, 0.6), rgba(4, 10, 7, 0.85));
  border: 1px solid rgba(200, 168, 75, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0, 212, 200, 0.03);
  padding: 28px 30px 32px;
  backdrop-filter: blur(4px);
}

.lyrics-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.lyrics-header h3 {
  font-family: var(--font-mystic);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--text-light);
  text-shadow: 0 0 24px rgba(0, 212, 200, 0.15);
}
.lyrics-header .lyrics-icon {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.7;
}

.lyrics-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .lyrics-columns { grid-template-columns: 1fr; gap: 24px; }
}

.lyrics-col {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}
.lyrics-col::-webkit-scrollbar { width: 5px; }
.lyrics-col::-webkit-scrollbar-thumb {
  background: rgba(200, 168, 75, 0.35);
  border-radius: 4px;
}
.lyrics-col::-webkit-scrollbar-track { background: transparent; }

.lyrics-col-en { border-right: 1px solid rgba(200, 168, 75, 0.14); }
@media (max-width: 760px) { .lyrics-col-en { border-right: none; border-bottom: 1px solid rgba(200, 168, 75, 0.14); padding-bottom: 20px; } }

.lyrics-col-title {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.85;
  margin-bottom: 14px;
}
.lyrics-col-pt .lyrics-col-title { color: var(--gold); }

.lyrics-text p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.lyrics-text .lyrics-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 4px;
}

/* ── SECTIONS COMMON ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-mystic);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-light);
  text-shadow: 0 0 40px rgba(0,212,200,0.15);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ── UNIVERSOS GRID ── */
.universos-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(5,12,8,0.4), transparent);
}

.universos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.universo-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid;
  transition: all var(--transition);
}

.card-mystic {
  border-color: var(--border-teal);
  background: linear-gradient(145deg, rgba(0,30,28,0.7) 0%, rgba(2,8,4,0.85) 100%);
}

.card-decide {
  border-color: var(--border-purple);
  background: linear-gradient(145deg, rgba(8,10,30,0.7) 0%, rgba(4,4,15,0.85) 100%);
}

.universo-card:hover { transform: translateY(-6px); }
.card-mystic:hover   { box-shadow: 0 20px 60px rgba(0,212,200,0.12), 0 0 0 1px rgba(0,212,200,0.2); }
.card-decide:hover   { box-shadow: 0 20px 60px rgba(108,99,255,0.15), 0 0 0 1px rgba(108,99,255,0.25); }

.card-bg-aura {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
}
.card-bg-mystic { background: radial-gradient(circle, var(--teal) 0%, transparent 60%); }
.card-bg-decide { background: radial-gradient(circle, var(--purple) 0%, transparent 60%); }

.card-inner {
  position: relative;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
}
.badge-mystic {
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.25);
  color: var(--teal);
}
.badge-decide {
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.25);
  color: var(--purple-b);
}

.card-icon-wrap {
  position: relative;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid;
  animation: ringRotate 10s linear infinite;
}
.icon-mystic .card-icon-ring { border-color: rgba(0,212,200,0.3); }
.ring-decide               { border-color: rgba(108,99,255,0.3); }

@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.card-icon { font-size: 2.2rem; position: relative; z-index: 1; }

.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
}
.title-mystic { color: var(--teal); }
.title-decide { color: var(--purple-b); }

.card-tagline {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.8;
  line-height: 1.5;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.feat-icon { flex-shrink: 0; font-size: 0.75rem; }
.feat-teal   { color: var(--teal); }
.feat-purple { color: var(--purple-b); }

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill {
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.tag-teal   { background: rgba(0,212,200,0.07); border: 1px solid rgba(0,212,200,0.2); color: var(--teal); }
.tag-purple { background: rgba(108,99,255,0.07); border: 1px solid rgba(108,99,255,0.2); color: var(--purple-b); }

.card-cta {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 8px;
  transition: all var(--transition);
}

.cta-mystic-btn {
  background: rgba(0,212,200,0.08);
  border: 1px solid var(--teal);
  color: var(--teal);
}
.cta-mystic-btn:hover {
  background: rgba(0,212,200,0.15);
  box-shadow: 0 0 30px rgba(0,212,200,0.2);
}

.cta-decide-btn {
  background: rgba(108,99,255,0.08);
  border: 1px solid var(--purple);
  color: var(--purple-b);
}
.cta-decide-btn:hover {
  background: rgba(108,99,255,0.15);
  box-shadow: 0 0 30px rgba(108,99,255,0.2);
}

/* ── COMO FUNCIONA ── */
.como-funciona {
  position: relative;
  z-index: 1;
}

.funciona-block { margin-bottom: 0; }

.funciona-label {
  text-align: center;
  margin-bottom: 40px;
}

.funciona-badge {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
}

.funciona-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: flex-start;
}

.step-item {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  border: 1px solid;
  background: rgba(2,8,4,0.5);
  transition: transform var(--transition);
}
.step-item:hover { transform: translateY(-4px); }

.step-mystic { border-color: rgba(0,212,200,0.12); }
.step-decide { border-color: rgba(108,99,255,0.12); }

.step-num {
  font-family: var(--font-mystic);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.35;
  margin-bottom: 12px;
}
.step-num-decide { color: var(--purple-b); }

.step-body h4 {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.step-body p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }

.step-connector {
  width: 40px;
  height: 2px;
  flex-shrink: 0;
  margin-top: 50px;
  align-self: flex-start;
}
.connector-mystic { background: linear-gradient(90deg, var(--teal), transparent); opacity: 0.3; }
.connector-decide { background: linear-gradient(90deg, var(--purple), transparent); opacity: 0.3; }

.funciona-cta-wrap { text-align: center; margin-top: 36px; }

.funciona-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.funciona-div { margin: 48px auto; }

/* ── FEATURES GRID ── */
.features-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(4,6,12,0.3), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feat-card {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid;
  background: rgba(2,8,4,0.5);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.3;
}

.feat-card:hover { transform: translateY(-4px); }

.feat-card-teal   { border-color: rgba(0,212,200,0.12); }
.feat-card-teal:hover { box-shadow: 0 12px 40px rgba(0,212,200,0.08); }

.feat-card-purple { border-color: rgba(108,99,255,0.12); }
.feat-card-purple:hover { box-shadow: 0 12px 40px rgba(108,99,255,0.1); }

.feat-card-gold   { border-color: rgba(200,168,75,0.12); }
.feat-card-gold:hover { box-shadow: 0 12px 40px rgba(200,168,75,0.08); }

.feat-emoji { font-size: 1.8rem; }

.feat-card h4 {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.feat-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.feat-source {
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  width: fit-content;
  margin-top: 4px;
}
.source-mystic { background: rgba(0,212,200,0.07); border: 1px solid rgba(0,212,200,0.2); color: var(--teal); }
.source-decide { background: rgba(108,99,255,0.07); border: 1px solid rgba(108,99,255,0.2); color: var(--purple-b); }
.source-both   { background: rgba(200,168,75,0.07); border: 1px solid rgba(200,168,75,0.2); color: var(--gold); }

/* ── SOBRE ── */
.sobre-section {
  position: relative;
  z-index: 1;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sobre-texto {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-texto .section-eyebrow { text-align: left; }
.sobre-texto .section-title   { text-align: left; }

.sobre-texto p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.sobre-texto strong { color: var(--text-light); font-weight: 600; }
.sobre-texto em     { color: var(--teal); font-style: normal; }

.sobre-em-breve {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold) !important;
  opacity: 0.75;
  text-align: center;
  padding: 16px;
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 10px;
  background: rgba(200,168,75,0.04);
}

.sobre-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sobre-stat-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
  min-width: 0;
  overflow: hidden;
}
.sobre-stat-card:hover { transform: translateX(6px); }

.stat-mystic {
  border-color: rgba(0,212,200,0.15);
  background: linear-gradient(135deg, rgba(0,30,28,0.5), rgba(2,8,4,0.8));
}
.stat-decide {
  border-color: rgba(108,99,255,0.15);
  background: linear-gradient(135deg, rgba(8,10,30,0.5), rgba(4,4,15,0.8));
}
.stat-future {
  border-color: rgba(200,168,75,0.15);
  background: linear-gradient(135deg, rgba(20,15,5,0.5), rgba(2,8,4,0.8));
}

.stat-icon { font-size: 2rem; flex-shrink: 0; }

.stat-title {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.stat-link {
  margin-left: auto;
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
  transition: color var(--transition);
  flex-shrink: 0;
}
.stat-link:hover         { color: var(--text-light); }
.stat-link-decide        { color: var(--purple-b); }
.stat-link-decide:hover  { color: var(--text-light); }

.stat-badge {
  margin-left: auto;
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.2);
  color: var(--gold);
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(200,168,75,0.2); }
  50%       { box-shadow: 0 0 16px rgba(200,168,75,0.2); }
}

/* ── AVISO ── */
.aviso-section {
  position: relative;
  z-index: 1;
}

.aviso-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  border-radius: 14px;
  border: 1px solid rgba(200,168,75,0.2);
  background: rgba(20,15,5,0.6);
  backdrop-filter: blur(10px);
}

.aviso-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.aviso-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.aviso-text p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── EM BREVE ── */
.em-breve-section {
  position: relative;
  z-index: 1;
}

.em-breve-inner {
  text-align: center;
  padding: 60px 24px;
  border-radius: 24px;
  border: 1px solid rgba(200,168,75,0.12);
  background: linear-gradient(135deg, rgba(10,8,2,0.7), rgba(2,8,4,0.9));
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.em-breve-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.4), transparent);
}

.em-breve-title {
  font-family: var(--font-mystic);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(200,168,75,0.2);
}

.em-breve-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 36px;
}

.em-breve-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.em-breve-pill {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  color: var(--gold);
  transition: all var(--transition);
}
.em-breve-pill:hover {
  background: rgba(200,168,75,0.12);
  transform: translateY(-2px);
}

.em-breve-hint {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.5;
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-teal);
  background: rgba(2,5,3,0.9);
  backdrop-filter: blur(20px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

.footer-links-group {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-mid);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(0,212,200,0.07);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-disclaimer {
  font-size: 11px !important;
  opacity: 0.6;
}

.footer-bottom a {
  color: rgba(0,212,200,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--teal); }

/* ── BADGE +18 ── */
.badge-18 {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 8px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.35);
  color: #ff6060;
  vertical-align: middle;
  margin-left: 5px;
  line-height: 1.4;
}

/* ── PIX SECTION ── */
.pix-section {
  position: relative;
  z-index: 1;
}

.pix-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 48px 52px;
  border-radius: 24px;
  border: 1px solid rgba(200, 168, 75, 0.22);
  background: linear-gradient(135deg, rgba(20,14,3,0.85) 0%, rgba(8,10,5,0.9) 100%);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.pix-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pix-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pix-texto {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pix-texto .section-eyebrow { text-align: left; }

.pix-title {
  font-family: var(--font-mystic);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  text-shadow: 0 0 30px rgba(200,168,75,0.25);
}

.pix-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 520px;
}

.pix-subtitle {
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 520px;
  margin: -8px 0 0;
}

.pix-chave-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pix-chave-label {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.pix-chave-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(200,168,75,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  width: fit-content;
  max-width: 100%;
}

.pix-chave-box span {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

.pix-copy-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 7px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.pix-copy-btn:hover {
  background: rgba(200,168,75,0.18);
  box-shadow: 0 0 16px rgba(200,168,75,0.15);
}

.pix-copy-icon { font-size: 12px; }

.pix-copy-feedback {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00c864;
  min-height: 16px;
  transition: opacity var(--transition);
}

.pix-obs {
  font-size: 0.83rem !important;
  color: rgba(200,168,75,0.65) !important;
  line-height: 1.7 !important;
}

.pix-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.pix-qr-frame {
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 3px solid rgba(200,168,75,0.3);
  box-shadow: 0 0 40px rgba(200,168,75,0.12);
}

.pix-qr-img {
  width: 160px;
  height: 160px;
  display: block;
}

.pix-qr-label {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  text-align: center;
}

/* Footer PIX link */
.footer-pix-link {
  color: var(--gold) !important;
  opacity: 0.8;
  transition: opacity var(--transition) !important;
}
.footer-pix-link:hover { opacity: 1 !important; color: var(--gold) !important; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  max-width: 640px;
  width: calc(100% - 48px);
  background: rgba(4, 16, 14, 0.95);
  border: 1px solid var(--border-teal);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,200,0.05);
  animation: cookieSlideUp 0.5s ease;
}

.cookie-banner.hidden { display: none; }

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.cookie-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

.cookie-inner p {
  flex: 1;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btn {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 8px;
  background: rgba(0,212,200,0.1);
  border: 1px solid rgba(0,212,200,0.3);
  color: var(--teal);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.cookie-btn:hover {
  background: rgba(0,212,200,0.18);
  box-shadow: 0 0 20px rgba(0,212,200,0.15);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .universos-grid { grid-template-columns: 1fr; }
  .sobre-grid     { grid-template-columns: 1fr; }
  .pix-card       { grid-template-columns: 1fr; }
  .pix-qr-wrap    { order: -1; }
  .nav-links      { display: none; }
  .nav-toggle     { display: flex; }
  .funciona-steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 30px; margin: 0; align-self: center; }
  .connector-mystic { background: linear-gradient(to bottom, var(--teal), transparent); }
  .connector-decide { background: linear-gradient(to bottom, var(--purple), transparent); }
  .step-item { max-width: 100%; width: 100%; }

  /* Corrige overflow mobile */
  .hero-orb-left  { left: -180px; }
  .hero-orb-right { right: -180px; }
  .card-bg-aura   { display: none; }

  /* Sobre cards mobile */
  .sobre-stat-card { flex-wrap: wrap; gap: 12px; }
  .stat-link, .stat-badge { margin-left: 0; }

  /* Seção sobre texto */
  .sobre-texto p { font-size: 0.88rem; }
}

@media (max-width: 600px) {
  .nav-inner    { padding: 16px 20px; }
  .section-container { padding: 60px 20px; }
  .card-inner   { padding: 28px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .cta-btn      { min-width: unset; width: 100%; }
  .footer-links-group { gap: 32px; }
  .aviso-card   { flex-direction: column; padding: 20px; }
  .em-breve-pills { gap: 8px; }
  .pix-card     { padding: 28px 20px; }
  .pix-qr-img   { width: 130px; height: 130px; }
  .pix-chave-box { flex-wrap: wrap; }

  /* Textos que cortam no mobile */
  .title-line-2 { font-size: clamp(2.4rem, 14vw, 4rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .em-breve-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .pix-title    { font-size: clamp(1.2rem, 6vw, 1.6rem); }

  /* Nav mobile visível */
  .nav-mobile { padding: 12px 20px 20px; }

  /* Sobre stat card mobile */
  .stat-icon { font-size: 1.5rem; }
  .stat-title { font-size: 11px; }
  .stat-desc  { font-size: 0.78rem; }
}

/* ══════════════════════════════════════════════════════════════
   LIVROS MÁGICOS EM LOOP — Acessar Sites
   Livros 3D (220 × 290 × 26) com cursor místico em loop 9s.
   ══════════════════════════════════════════════════════════════ */

.livros-section {
  position: relative;
  z-index: 2;
}

.livros-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(48px, 10vw, 130px);
  margin-top: 30px;
}

.loop-book-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transition: transform var(--transition);
}

.loop-book-link:hover { transform: translateY(-10px) scale(1.03); }

/* Cena com perspectiva */
.loop-scene {
  position: relative;
  width: 490px;
  height: 510px;
  perspective: 1400px;
  perspective-origin: 50% 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── LIVRO 3D (300 × 400 × 34) ── */
.loop-book {
  position: relative;
  width: 300px;
  height: 400px;
  transform-style: preserve-3d;
  animation: loopBookFloat 9s ease-in-out infinite;
}

@keyframes loopBookFloat {
  0%, 100% { transform: rotateX(8deg)  rotateY(-24deg) translateY(0); }
  50%      { transform: rotateX(11deg) rotateY(-14deg) translateY(-12px); }
}

.lb-face {
  position: absolute;
  backface-visibility: hidden;
}

/* Contracapa  — (300-34)/2=133 spine, 34/2=17 Z */
.lb-back {
  width: 300px; height: 400px;
  top: 0; left: 0;
  transform: rotateY(180deg) translateZ(17px);
}
.loop-book-mystic .lb-back {
  background: linear-gradient(145deg, #07130a 0%, #040d06 100%);
  box-shadow: inset 0 0 0 2px rgba(200,168,75,0.18);
}
.loop-book-decide .lb-back {
  background: linear-gradient(145deg, #100a1d 0%, #090612 100%);
  box-shadow: inset 0 0 0 2px rgba(180,92,248,0.2);
}

/* Lombada — 34×400, left=(300-34)/2=133, Z=300/2=150 — +1px cada extremo fecha gaps */
.lb-spine {
  width: 34px; height: 402px;
  top: -1px; left: 133px;
  transform: rotateY(-90deg) translateZ(150px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loop-book-mystic .lb-spine {
  background: linear-gradient(to right, #08160c 0%, #122619 35%, #0b1c11 70%, #071108 100%);
  box-shadow: inset 0 0 0 1px rgba(200,168,75,0.25);
}
.loop-book-decide .lb-spine {
  background: linear-gradient(to right, #0d0918 0%, #1d1235 35%, #140c26 70%, #0a0714 100%);
  box-shadow: inset 0 0 0 1px rgba(180,92,248,0.3);
}

.lb-spine-text {
  font-family: var(--font-serif);
  font-size: 7px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200,168,75,0.75);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* Forro interno da lombada */
.lb-spine-inner {
  width: 34px; height: 402px;
  top: -1px; left: 133px;
  transform: rotateY(90deg) translateZ(-150px);
  background: linear-gradient(to right, #071108 0%, #0d2013 50%, #071108 100%);
  box-shadow: inset 0 0 14px rgba(0,0,0,0.65);
}
.loop-book-decide .lb-spine-inner {
  background: linear-gradient(to right, #0a0714 0%, #170e2b 50%, #0a0714 100%);
}

/* Folhas — lado direito — +1px em cada borda fecha a fresta com a capa */
.lb-pages-right {
  width: 36px; height: 402px;
  top: -1px; left: 132px;
  transform: rotateY(90deg) translateZ(150px);
  background: repeating-linear-gradient(
    to right,
    #f2ecda 0px, #ddd2ae 1.5px,
    #ece6d2 3px, #d2c69e 4.5px,
    #e8e2cc 6px
  );
  box-shadow: inset 0 0 0 1px rgba(120,100,55,0.35);
}

/* Folhas topo/base — 300×34, top=(400-34)/2=183, Z=400/2=200 — +1px fecha gaps */
.lb-pages-top,
.lb-pages-bottom {
  width: 302px; height: 34px;
  top: 183px; left: -1px;
  background: repeating-linear-gradient(
    to bottom,
    #efe9d6 0px, #dad0a8 1.5px,
    #ebe5d0 3px, #d0c49c 4.5px,
    #e6e0ca 6px
  );
  box-shadow: inset 0 0 0 1px rgba(120,100,55,0.3);
}

.lb-pages-top    { transform: rotateX(90deg)  translateZ(200px); }
.lb-pages-bottom { transform: rotateX(-90deg) translateZ(200px); filter: brightness(0.8); }

/* Página interna revelada quando a capa abre */
.lb-spread {
  position: absolute;
  inset: 4px 4px 4px 1px;
  transform: translateZ(15px);
  background: linear-gradient(160deg, #0b1e15 0%, #071209 100%);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(0,212,200,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-spread-decide {
  background: linear-gradient(160deg, #0e0b22 0%, #080612 100%);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(180,92,248,0.1);
}

.lb-inside-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 18px;
  opacity: 0;
  animation: loopInsideFade 9s ease-in-out infinite;
}

@keyframes loopInsideFade {
  0%, 36%   { opacity: 0; }
  48%, 76%  { opacity: 1; }
  88%, 100% { opacity: 0; }
}

.lb-inside-ornament {
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(200,168,75,0.5);
}

.lb-orn-decide { color: rgba(180,92,248,0.55); }

.lb-inside-symbol { font-size: 3rem; }

.lb-inside-title {
  font-family: var(--font-mystic);
  font-size: 1.4rem;
  line-height: 1.25;
}

.lb-title-mystic { color: var(--teal);     text-shadow: 0 0 18px rgba(0,212,200,0.5); }
.lb-title-decide { color: var(--purple-b); text-shadow: 0 0 18px rgba(180,92,248,0.5); }

.lb-inside-btn {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 7px;
  white-space: nowrap;
}

.lb-btn-mystic {
  color: var(--teal);
  border: 1px solid rgba(0,212,200,0.45);
  box-shadow: 0 0 14px rgba(0,212,200,0.2), inset 0 0 10px rgba(0,212,200,0.06);
}

.lb-btn-decide {
  color: var(--purple-b);
  border: 1px solid rgba(180,92,248,0.5);
  box-shadow: 0 0 14px rgba(180,92,248,0.22), inset 0 0 10px rgba(180,92,248,0.07);
}

/* ── CAPA com dobradiça — abre e fecha em loop ── */
.lb-lid {
  position: absolute;
  width: 300px; height: 400px;
  top: 0; left: 0;
  transform-style: preserve-3d;
  transform-origin: left center;
  transform: translateZ(17px) rotateY(0deg);
  animation: loopLidOpen 9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes loopLidOpen {
  0%, 32%   { transform: translateZ(17px) rotateY(0deg); }
  46%       { transform: translateZ(17px) rotateY(-128deg); }
  78%       { transform: translateZ(17px) rotateY(-128deg); }
  94%, 100% { transform: translateZ(17px) rotateY(0deg); }
}

/* Face externa da capa */
.lb-front {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  text-align: center;
  padding: 30px 22px;
}

.lb-front::after {
  content: '';
  position: absolute;
  inset: 14px;
  pointer-events: none;
}

.lb-front-mystic {
  background: linear-gradient(160deg, #0c2214 0%, #071509 35%, #0e2419 60%, #061208 85%, #040e06 100%);
  box-shadow:
    inset 0 0 0 2px rgba(200,168,75,0.5),
    inset 0 0 60px rgba(0,212,200,0.05);
}
.lb-front-mystic::after { border: 1px solid rgba(200,168,75,0.25); }

.lb-front-decide {
  background: linear-gradient(160deg, #170e2e 0%, #0c0719 35%, #1b1136 60%, #0a0614 85%, #070410 100%);
  box-shadow:
    inset 0 0 0 2px rgba(180,92,248,0.45),
    inset 0 0 60px rgba(108,99,255,0.07);
}
.lb-front-decide::after { border: 1px solid rgba(180,92,248,0.25); }

.lb-cover-eye {
  font-size: 3.2rem;
  animation: eyePulse 2.5s ease-in-out infinite alternate;
}

.lb-eye-mystic { filter: drop-shadow(0 0 16px rgba(0,212,200,0.7)); }
.lb-eye-decide { filter: drop-shadow(0 0 16px rgba(180,92,248,0.7)); }

.lb-cover-name {
  font-family: var(--font-mystic);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--text-light);
}

.lb-em-mystic {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lb-em-decide {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-b) 0%, var(--gold) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lb-cover-sub {
  font-family: var(--font-serif);
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200,216,212,0.4);
}

.lb-cover-ornament {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(200,168,75,0.4);
  margin-top: 8px;
}

/* Face interna da capa */
.lb-lid-inside {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background: linear-gradient(200deg, #0d2016 0%, #08130a 100%);
  box-shadow: inset 0 0 0 2px rgba(200,168,75,0.15), inset 0 0 30px rgba(0,0,0,0.5);
}

.lb-lid-inside-decide {
  background: linear-gradient(200deg, #140d28 0%, #0a0714 100%);
  box-shadow: inset 0 0 0 2px rgba(180,92,248,0.15), inset 0 0 30px rgba(0,0,0,0.5);
}

/* ── CURSOR MÍSTICO em loop (ajustado para livro maior) ── */
.loop-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 6;
  width: 28px;
  height: 28px;
  left: -4px;
  bottom: 12px;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(0,212,200,0.9));
  animation: loopCursorPath 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cursor-decide { filter: drop-shadow(0 0 8px rgba(180,92,248,0.9)); }

.loop-cursor svg {
  width: 100%;
  height: 100%;
  animation: cursorWiggle 0.35s ease-in-out infinite alternate;
}

@keyframes loopCursorPath {
  0%        { transform: translate(0, 0)           scale(1)    rotate(-18deg); opacity: 0; }
  6%        { opacity: 1; }
  14%       { transform: translate(110px, -110px)  scale(1.08) rotate(9deg);   opacity: 1; }
  24%       { transform: translate(218px, -212px)  scale(1.15) rotate(-4deg);  opacity: 1; }
  29%       { transform: translate(236px, -232px)  scale(1.2)  rotate(0deg);   opacity: 1; }
  31%       { transform: translate(236px, -232px)  scale(0.75) rotate(0deg);   opacity: 1; }
  34%       { transform: translate(236px, -232px)  scale(1.15) rotate(0deg);   opacity: 1; }
  40%       { transform: translate(236px, -232px)  scale(0)    rotate(0deg);   opacity: 0; }
  100%      { transform: translate(236px, -232px)  scale(0)    rotate(0deg);   opacity: 0; }
}

/* ── ANEL DE CLIQUE em loop ── */
.loop-click-ring {
  position: absolute;
  pointer-events: none;
  z-index: 7;
  width: 24px; height: 24px;
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: loopClickRing 9s ease-out infinite;
}

.ring-mystic {
  border: 2px solid var(--teal);
  box-shadow: 0 0 12px rgba(0,212,200,0.6);
}

.ring-decide {
  border: 2px solid var(--purple-b);
  box-shadow: 0 0 12px rgba(180,92,248,0.6);
}

@keyframes loopClickRing {
  0%, 30%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  31%       { transform: translate(-50%, -50%) scale(0.4); opacity: 1; }
  40%       { transform: translate(-50%, -50%) scale(6); opacity: 0; }
  100%      { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* ── RÓTULO "ACESSAR SITE" ── */
.loop-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  animation: loopLabelPulse 2s ease-in-out infinite;
}

.label-mystic { color: rgba(0,212,200,0.8); }
.label-decide { color: rgba(180,92,248,0.85); }

.dot-decide { background: var(--purple-b); }

@keyframes loopLabelPulse {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50%      { opacity: 1;    transform: translateY(-4px); }
}

.loop-book-link:hover .loop-label { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   CURSOR MÁGICO NOS BOTÕES CTA — loop de hover+clique
   Cursor aparece abaixo do botão, sobe, clica, desaparece, repete.
   ══════════════════════════════════════════════════════════════ */

/* Botões que recebem o cursor precisam de overflow:visible */
.cta-btn, .card-cta, .funciona-cta, .stat-link {
  overflow: visible !important;
}

.btn-magic-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  width: 22px;
  height: 22px;
  left: 55%;
  bottom: -4px;
  opacity: 0;
  animation: btnCursorLoop 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn-magic-cursor svg {
  width: 100%; height: 100%;
  animation: cursorWiggle 0.35s ease-in-out infinite alternate;
}

.btn-cursor-mystic { filter: drop-shadow(0 0 6px rgba(0,212,200,0.9)); }
.btn-cursor-decide { filter: drop-shadow(0 0 6px rgba(180,92,248,0.9)); }

@keyframes btnCursorLoop {
  /* começa 28px abaixo do botão, invisível */
  0%, 8%   { transform: translate(-50%, 28px) rotate(-14deg) scale(0.9); opacity: 0; }
  /* sobe e entra no botão (Y negativo = cima) */
  18%      { transform: translate(-50%, -4px)  rotate(-4deg)  scale(1);   opacity: 1; }
  38%      { transform: translate(-50%, -14px) rotate(0deg)   scale(1.05); opacity: 1; }
  /* clique — encurta e expande */
  46%      { transform: translate(-50%, -14px) rotate(0deg)   scale(0.72); opacity: 1; }
  53%      { transform: translate(-50%, -14px) rotate(0deg)   scale(1.08); opacity: 1; }
  /* desaparece */
  65%      { transform: translate(-50%, -14px) rotate(0deg)   scale(0);    opacity: 0; }
  100%     { transform: translate(-50%, 28px)  rotate(-14deg) scale(0);    opacity: 0; }
}

.btn-magic-ring {
  position: absolute;
  pointer-events: none;
  z-index: 9;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: 55%;
  bottom: 14px;
  transform: translate(-50%, 0) scale(0);
  opacity: 0;
  animation: btnRingLoop 5s ease-out infinite;
}

.btn-ring-mystic {
  border: 2px solid var(--teal);
  box-shadow: 0 0 8px rgba(0,212,200,0.6);
}

.btn-ring-decide {
  border: 2px solid var(--purple-b);
  box-shadow: 0 0 8px rgba(180,92,248,0.6);
}

@keyframes btnRingLoop {
  0%, 43%  { transform: translate(-50%, 0) scale(0); opacity: 0; }
  47%      { transform: translate(-50%, 0) scale(0.6); opacity: 1; }
  60%      { transform: translate(-50%, 0) scale(4.5); opacity: 0; }
  100%     { transform: translate(-50%, 0) scale(0); opacity: 0; }
}

/* Mobile — empilha em coluna, centraliza os livros na tela */
@media (max-width: 1100px) {
  .livros-grid { flex-direction: column; align-items: center; gap: 60px; }
  .loop-book-link { width: 100vw; }
}

/* ═══════════════════════════════ JORNADA (carrossel na home) ══ */
.jornada-section { position: relative; }

.jornada-carousel-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.jornada-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.jornada-track::-webkit-scrollbar { display: none; }

.jornada-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 200, 0.15);
  background: linear-gradient(160deg, rgba(0,212,200,0.04), rgba(6,10,8,0.6));
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.jornada-card:hover {
  border-color: rgba(0, 212, 200, 0.55);
  background: linear-gradient(160deg, rgba(0,212,200,0.09), rgba(6,10,8,0.7));
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 212, 200, 0.12);
}

.jornada-card-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 11px;
  border-radius: 20px;
  font-family: var(--font-serif);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0, 212, 200, 0.1);
  border: 1px solid rgba(0, 212, 200, 0.3);
}
.jornada-card-tag.tag-reflexao { color: var(--violet); background: rgba(123,47,255,0.1); border-color: rgba(123,47,255,0.3); }
.jornada-card-tag.tag-entret   { color: var(--gold);   background: rgba(200,168,75,0.1); border-color: rgba(200,168,75,0.3); }

.jornada-card-title {
  font-family: var(--font-mystic);
  font-size: 16.5px;
  line-height: 1.4;
  color: var(--text-light);
}

.jornada-card-excerpt {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-mid);
  flex: 1;
}

.jornada-card-meta {
  font-size: 10.5px;
  color: rgba(200,216,212,0.4);
  padding-top: 4px;
  border-top: 1px solid rgba(0,212,200,0.08);
}

.jornada-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 200, 0.35);
  background: rgba(2, 8, 4, 0.85);
  color: var(--teal);
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.jornada-arrow:hover { background: rgba(0,212,200,0.12); border-color: rgba(0,212,200,0.7); transform: translateY(-50%) scale(1.08); }
.jornada-arrow:active { transform: translateY(-50%) scale(0.96); }
.jornada-arrow-prev { left: -4px; }
.jornada-arrow-next { right: -4px; }

.jornada-cta-row { text-align: center; margin-top: 36px; }

@media (max-width: 900px) {
  .jornada-arrow { display: none; }
  .jornada-carousel-wrap { padding: 0 20px; }
}
@media (max-width: 600px) {
  .jornada-card { width: 240px; }
}
