/* ================================================================
   COMPONENTS.CSS — The Classic MU Online Season 21
   Componentes reutilizáveis: fog, runas, energy, seções, timeline
   ================================================================ */

/* ════════════════════════════════
   FOG SYSTEM
   ════════════════════════════════ */

.fog-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-fog);
  overflow: hidden;
}

.fog-layer {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  opacity: 0;
  mix-blend-mode: screen;
}

.fog-layer--1 {
  background: radial-gradient(
    ellipse 80% 60% at 20% 85%,
    rgba(10, 20, 80, 0.55) 0%,
    rgba(10, 20, 60, 0.20) 40%,
    transparent 70%
  );
  animation: fog-drift-1 35s ease-in-out infinite;
  opacity: 0.8;
}

.fog-layer--2 {
  background: radial-gradient(
    ellipse 70% 50% at 80% 15%,
    rgba(6, 10, 40, 0.45) 0%,
    rgba(4, 8, 30, 0.15) 40%,
    transparent 65%
  );
  animation: fog-drift-2 50s ease-in-out infinite;
  opacity: 0.6;
}

.fog-layer--3 {
  background: radial-gradient(
    ellipse 60% 40% at 50% 50%,
    rgba(8, 4, 20, 0.30) 0%,
    transparent 60%
  );
  animation: fog-drift-3 25s ease-in-out infinite;
  opacity: 0.5;
}

/* Nevoa de fundo específica por seção */
.section-fog {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-fog::before,
.section-fog::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

/* ════════════════════════════════
   DECORAÇÕES DE RUNA
   ════════════════════════════════ */

.rune-divider {
  display: flex;
  align-items: center;
  gap: var(--s3);
  justify-content: center;
  margin: var(--s4) 0;
}

.rune-divider__line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.rune-divider__symbol {
  font-family: var(--font-heading);
  color: var(--gold-mid);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  opacity: 0.8;
  animation: rune-flicker 7s ease-in-out infinite;
}

.rune-divider__symbol--stable {
  animation: none;
  opacity: 1;
  color: var(--gold-bright);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  letter-spacing: 0.45em;
  text-shadow: 0 0 20px rgba(200,152,40,0.35);
}

/* Círculo de runa ornamental */
.rune-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rune-circle__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.rune-circle__ring--outer {
  inset: -20px;
  border-color: rgba(200, 152, 40, 0.20);
  animation: rune-spin 40s linear infinite;
}

.rune-circle__ring--inner {
  inset: -8px;
  border-color: rgba(200, 152, 40, 0.35);
  animation: rune-spin-reverse 25s linear infinite;
}

.rune-circle__ring--outer::before,
.rune-circle__ring--inner::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold-bright);
}

/* Cantos ornamentais */
.corner-ornament {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: rgba(200, 152, 40, 0.4);
  border-style: solid;
  border-width: 0;
}

.corner-ornament--tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.corner-ornament--tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.corner-ornament--bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.corner-ornament--br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

/* ════════════════════════════════
   LINHAS DE ENERGIA
   ════════════════════════════════ */

.energy-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-mid) 30%,
    var(--gold-bright) 50%,
    var(--gold-mid) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: energy-flow 3s linear infinite, energy-pulse-line 2s ease-in-out infinite;
}

.energy-line--blue {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--blue-bright) 30%,
    var(--blue-energy) 50%,
    var(--blue-bright) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: energy-flow 4s linear infinite, energy-pulse-line 2.5s ease-in-out infinite;
}

.energy-line--blood {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--blood-bright) 30%,
    var(--blood-glow) 50%,
    var(--blood-bright) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: energy-flow 2.5s linear infinite, energy-pulse-line 2s ease-in-out infinite;
}

.energy-line--emerald {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--emerald-bright) 30%,
    var(--emerald-glow) 50%,
    var(--emerald-bright) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: energy-flow 3.5s linear infinite, energy-pulse-line 3s ease-in-out infinite;
}

.energy-line--inf {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--inf-bright) 20%,
    var(--inf-white) 50%,
    var(--inf-bright) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: energy-flow 2s linear infinite, energy-pulse-line 1.8s ease-in-out infinite;
}

/* ════════════════════════════════
   LABEL TIPO BADGE MEDIEVAL
   ════════════════════════════════ */

.badge-medieval {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 4px 16px;
  border: 1px solid var(--border-gold);
  background: rgba(200, 152, 40, 0.06);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold-bright);
  text-transform: uppercase;
  position: relative;
}

.badge-medieval::before,
.badge-medieval::after {
  content: '◆';
  font-size: 0.4rem;
  opacity: 0.6;
}

/* ════════════════════════════════
   SEÇÃO HERO — compartilhada
   ════════════════════════════════ */

.page-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--s16) var(--s4) var(--s12);
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent 0%, #04040a 100%);
  pointer-events: none;
  z-index: 4;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-behind);
}

.page-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%,
      rgba(26, 58, 110, 0.35) 0%,
      rgba(10, 16, 40, 0.60) 50%,
      rgba(4, 4, 10, 0.95) 100%),
    radial-gradient(ellipse 50% 40% at 80% 70%,
      rgba(10, 32, 24, 0.25) 0%,
      transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%,
      rgba(10, 6, 30, 0.30) 0%,
      transparent 55%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-abyss) 100%);
}

.page-hero__rune-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 20% 30%, rgba(200, 152, 40, 0.4) 0%, transparent 1px),
    radial-gradient(circle 1px at 80% 20%, rgba(74, 154, 255, 0.3) 0%, transparent 1px),
    radial-gradient(circle 1px at 60% 70%, rgba(200, 152, 40, 0.3) 0%, transparent 1px),
    radial-gradient(circle 1px at 40% 85%, rgba(74, 154, 255, 0.25) 0%, transparent 1px),
    radial-gradient(circle 1px at 15% 65%, rgba(200, 152, 40, 0.35) 0%, transparent 1px),
    radial-gradient(circle 1px at 90% 50%, rgba(74, 154, 255, 0.3) 0%, transparent 1px);
  animation: rune-flicker 8s ease-in-out infinite;
}

.page-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 120% at 50% 50%, transparent 40%, rgba(4, 4, 10, 0.7) 100%);
}

.page-hero__content {
  position: relative;
  z-index: var(--z-content);
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.page-hero__eyebrow-mark {
  color: var(--gold-bright);
  font-size: 0.9rem;
  animation: rune-flicker 6s ease-in-out infinite;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.0;
  color: var(--silver-white);
}

.page-hero__title--line1 {
  display: block;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.04em;
}

.page-hero__title--line2 {
  display: block;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-pale), var(--gold-bright), var(--gold-mid));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.page-hero__title--sub {
  display: block;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--silver-base);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.page-hero__desc {
  max-width: 680px;
  font-family: var(--font-lore);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.9;
  color: var(--silver-mid);
  font-style: italic;
}

.page-hero__scroll {
  position: absolute;
  bottom: var(--s6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  z-index: var(--z-content);
}

.page-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-mid), transparent);
  animation: energy-stream 2s ease-in-out infinite;
}

.page-hero__scroll-text {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gold-mid);
  text-transform: uppercase;
  animation: float-gentle 3s ease-in-out infinite;
}

/* Orbe central do hero */
.hero-orb {
  position: relative;
  width: 200px;
  height: 200px;
  margin: var(--s4) auto;
}

.hero-orb__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-pale), var(--gold-mid), var(--gold-deep));
  box-shadow:
    0 0 20px var(--gold-bright),
    0 0 50px rgba(200, 152, 40, 0.5),
    0 0 100px rgba(200, 152, 40, 0.2);
  animation: orb-breathe 4s ease-in-out infinite;
}

.hero-orb__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(200, 152, 40, 0.3);
  animation: rune-spin 15s linear infinite;
}

.hero-orb__ring::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold-bright), 0 0 20px rgba(200, 152, 40, 0.6);
}

.hero-orb__ring--2 {
  inset: 15px;
  animation-duration: 25s;
  animation-direction: reverse;
  border-color: rgba(74, 154, 255, 0.25);
}

.hero-orb__ring--2::before {
  background: var(--blue-energy);
  box-shadow: 0 0 10px var(--blue-energy);
}

.hero-orb__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(200, 152, 40, 0.2);
  animation: orb-ring-expand 3s ease-out infinite;
}

.hero-orb__pulse--2 {
  animation-delay: 1.5s;
}

/* ════════════════════════════════
   SEÇÕES DE VISÃO
   ════════════════════════════════ */

.vision-section {
  position: relative;
  padding: var(--s16) 0;
  overflow: hidden;
}

.vision-section__number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 25vw, 22rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 152, 40, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

.vision-section__number--left  { left: -2%; }
.vision-section__number--right { right: -2%; }

.vision-section__inner {
  position: relative;
  z-index: var(--z-base);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

.vision-section__tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.vision-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-white);
  line-height: 1.05;
}

.vision-section__desc {
  font-family: var(--font-lore);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 2;
  color: var(--silver-mid);
  font-style: italic;
  max-width: 700px;
}

/* ════════════════════════════════
   TIMELINE — ROADMAP
   ════════════════════════════════ */

.roadmap-header {
  text-align: center;
  padding: var(--s16) var(--s4) var(--s8);
  position: relative;
}

.roadmap-header__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

.roadmap-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver-white);
  margin-bottom: var(--s3);
}

.roadmap-header__subtitle {
  font-family: var(--font-lore);
  font-size: 1.2rem;
  color: var(--silver-mid);
  font-style: italic;
}

/* Spine da timeline */
.timeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  z-index: var(--z-base);
  pointer-events: none;
}

.timeline-spine__track {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--border-subtle) 10%, var(--border-subtle) 90%, transparent);
}

.timeline-spine__energy {
  position: absolute;
  left: -1px;
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), transparent);
  border-radius: 2px;
  animation: energy-stream 4s ease-in-out infinite;
  filter: blur(1px);
}

/* Capítulo de temporada */
.season-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  gap: 0 var(--s4);
  padding: var(--s12) 0;
  overflow: hidden;
}

.season-chapter--reverse .season-content {
  grid-column: 3;
  grid-row: 1;
  text-align: right;
}

.season-chapter--reverse .season-visual {
  grid-column: 1;
  grid-row: 1;
}

.season-node {
  grid-column: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  position: relative;
  z-index: var(--z-content);
}

.season-node__outer {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.season-node__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid;
}

.season-node__core {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
}

/* Cores por temporada */
.season-chapter--s1 .season-node__ring {
  border-color: rgba(160, 144, 136, 0.40);
  animation: rune-spin 30s linear infinite;
  box-shadow: 0 0 20px rgba(106, 96, 88, 0.25);
}

.season-chapter--s1 .season-node__core {
  background: radial-gradient(circle, var(--stone-light), var(--stone-mid));
  color: var(--gold-pale);
  box-shadow: 0 0 15px rgba(106, 96, 88, 0.5);
}

.season-chapter--s2 .season-node__ring {
  border-color: rgba(40, 160, 96, 0.40);
  animation: rune-spin 25s linear infinite;
  box-shadow: 0 0 20px rgba(40, 160, 96, 0.25);
}

.season-chapter--s2 .season-node__core {
  background: radial-gradient(circle, var(--emerald-bright), var(--emerald-mid));
  color: var(--emerald-light);
  box-shadow: 0 0 15px rgba(40, 160, 96, 0.5);
}

.season-chapter--s3 .season-node__ring {
  border-color: rgba(200, 32, 48, 0.45);
  animation: rune-spin 20s linear infinite;
  box-shadow: 0 0 25px rgba(200, 32, 48, 0.30);
}

.season-chapter--s3 .season-node__core {
  background: radial-gradient(circle, var(--blood-bright), var(--blood-mid));
  color: #ff8080;
  box-shadow: 0 0 20px rgba(200, 32, 48, 0.6);
  animation: pulse-blood 2s ease-in-out infinite;
}

.season-chapter--s4 .season-node__ring {
  border-color: rgba(160, 96, 224, 0.50);
  animation: rune-spin 15s linear infinite;
  box-shadow: 0 0 30px rgba(160, 96, 224, 0.35);
}

.season-chapter--s4 .season-node__core {
  background: radial-gradient(circle, var(--inf-bright), var(--inf-mid));
  color: var(--inf-white);
  box-shadow: 0 0 25px rgba(160, 96, 224, 0.7);
  animation: pulse-inf 2.5s ease-in-out infinite;
}

/* Conteúdo do capítulo */
.season-content {
  padding: var(--s4);
  position: relative;
}

.season-content__designation {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: var(--s1);
}

.season-content__subtitle {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
  opacity: 0.7;
}

.season-content__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: var(--s4);
}

.season-content__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.season-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--s2) var(--s3);
  border: 1px solid;
  position: relative;
  background: rgba(14, 16, 32, 0.6);
}

.season-stat__label {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.6;
}

.season-stat__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.season-content__detail {
  margin-bottom: var(--s3);
}

.season-content__detail-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.5;
}

.season-content__detail-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.season-content__lore {
  font-family: var(--font-lore);
  font-size: 1.05rem;
  line-height: 1.9;
  font-style: italic;
  opacity: 0.8;
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: 1px solid;
}

/* Power bar de temporada */
.season-power {
  margin-top: var(--s3);
}

.season-power__label {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 6px;
}

.season-power__track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.season-power__fill {
  height: 100%;
  border-radius: 2px;
  position: relative;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
}

.season-power__fill.is-powered {
  width: var(--power-width, 50%);
}

/* Visual side (decorativo) */
.season-visual {
  padding: var(--s4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* Cores por temporada para o conteúdo */
.season-chapter--s1 .season-content__designation { color: var(--stone-pale); }
.season-chapter--s1 .season-content__subtitle    { color: var(--stone-light); }
.season-chapter--s1 .season-content__name        { color: var(--stone-pale); }
.season-chapter--s1 .season-stat                 { border-color: rgba(106, 96, 88, 0.25); }
.season-chapter--s1 .season-stat__label          { color: var(--stone-light); }
.season-chapter--s1 .season-stat__value          { color: var(--gold-pale); }
.season-chapter--s1 .season-content__detail-label { color: var(--stone-light); }
.season-chapter--s1 .season-content__detail-value { color: var(--stone-pale); }
.season-chapter--s1 .season-content__lore        { color: var(--stone-light); border-color: rgba(106, 96, 88, 0.2); }
.season-chapter--s1 .season-power__fill          { background: linear-gradient(90deg, var(--stone-mid), var(--stone-pale)); box-shadow: 0 0 6px rgba(106, 96, 88, 0.5); }

.season-chapter--s2 .season-content__designation { color: var(--emerald-light); }
.season-chapter--s2 .season-content__subtitle    { color: var(--emerald-glow); }
.season-chapter--s2 .season-content__name        { color: var(--emerald-light); }
.season-chapter--s2 .season-stat                 { border-color: rgba(40, 160, 96, 0.25); }
.season-chapter--s2 .season-stat__label          { color: var(--emerald-glow); }
.season-chapter--s2 .season-stat__value          { color: var(--emerald-light); }
.season-chapter--s2 .season-content__detail-label { color: var(--emerald-glow); }
.season-chapter--s2 .season-content__detail-value { color: var(--emerald-light); }
.season-chapter--s2 .season-content__lore        { color: rgba(80, 208, 136, 0.7); border-color: rgba(40, 160, 96, 0.2); }
.season-chapter--s2 .season-power__fill          { background: linear-gradient(90deg, var(--emerald-bright), var(--emerald-glow), var(--emerald-light)); box-shadow: 0 0 8px rgba(40, 160, 96, 0.6); }

.season-chapter--s3 .season-content__designation { color: #ff8080; }
.season-chapter--s3 .season-content__subtitle    { color: var(--blood-glow); }
.season-chapter--s3 .season-content__name        { color: #ff8080; }
.season-chapter--s3 .season-stat                 { border-color: rgba(200, 32, 48, 0.25); }
.season-chapter--s3 .season-stat__label          { color: var(--blood-glow); }
.season-chapter--s3 .season-stat__value          { color: #ff8080; }
.season-chapter--s3 .season-content__detail-label { color: var(--blood-glow); }
.season-chapter--s3 .season-content__detail-value { color: #ff8080; }
.season-chapter--s3 .season-content__lore        { color: rgba(255, 128, 128, 0.7); border-color: rgba(200, 32, 48, 0.2); }
.season-chapter--s3 .season-power__fill          { background: linear-gradient(90deg, var(--blood-mid), var(--blood-bright), var(--blood-glow)); box-shadow: 0 0 10px rgba(200, 32, 48, 0.7); }

.season-chapter--s4 .season-content__designation { color: var(--inf-white); }
.season-chapter--s4 .season-content__subtitle    { color: var(--inf-glow); }
.season-chapter--s4 .season-content__name        { color: var(--inf-white); }
.season-chapter--s4 .season-stat                 { border-color: rgba(160, 96, 224, 0.30); }
.season-chapter--s4 .season-stat__label          { color: var(--inf-glow); }
.season-chapter--s4 .season-stat__value          { color: var(--inf-white); }
.season-chapter--s4 .season-content__detail-label { color: var(--inf-glow); }
.season-chapter--s4 .season-content__detail-value { color: var(--inf-white); }
.season-chapter--s4 .season-content__lore        { color: rgba(208, 160, 255, 0.7); border-color: rgba(160, 96, 224, 0.25); }
.season-chapter--s4 .season-power__fill          { background: linear-gradient(90deg, var(--inf-mid), var(--inf-bright), var(--inf-glow), var(--inf-white)); box-shadow: 0 0 14px rgba(160, 96, 224, 0.8); }

/* ════════════════════════════════
   SEÇÃO PÓS-CICLO
   ════════════════════════════════ */

.postcycle {
  position: relative;
  padding: var(--s12) 0 var(--s16);
  margin-top: -2px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg,
    #04040a 0%,
    rgba(8, 7, 12, 0.35) 35%,
    rgba(6, 8, 14, 0.40) 55%,
    #04040a 100%);
}

.postcycle__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%,
      rgba(200, 152, 40, 0.06) 0%,
      transparent 60%);
  pointer-events: none;
}

.postcycle > :not(.postcycle__bg) {
  position: relative;
  z-index: 1;
}

.postcycle__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-pale), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--s4);
}

.postcycle__desc {
  font-family: var(--font-lore);
  font-size: 1.2rem;
  line-height: 2;
  color: var(--silver-mid);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto var(--s8);
}

.postcycle__cta {
  text-align: center;
  margin-top: var(--s8);
  position: relative;
  z-index: 1;
}

.postcycle__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  max-width: 1100px;
  margin: 0 auto;
}

.postcycle__pillar {
  padding: var(--s4) var(--s3);
  border: 1px solid var(--border-gold);
  background: rgba(200, 152, 40, 0.03);
  position: relative;
  text-align: center;
  transition: border-color var(--t-mid), background var(--t-mid);
}

.postcycle__pillar::before,
.postcycle__pillar::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-bright);
  border-style: solid;
}

.postcycle__pillar::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.postcycle__pillar::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.postcycle__pillar:hover {
  border-color: rgba(200, 152, 40, 0.5);
  background: rgba(200, 152, 40, 0.06);
}

.postcycle__pillar-icon {
  font-size: 2rem;
  margin-bottom: var(--s2);
  display: block;
}

.postcycle__pillar-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: var(--s2);
}

.postcycle__pillar-desc {
  font-size: 0.9rem;
  color: var(--silver-mid);
  line-height: 1.7;
}

/* ════════════════════════════════
   FEATURE WORLDS (features.html)
   ════════════════════════════════ */

.world-section {
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}

/* WORLD 1 — OS CICLOS */
.world--cycles {
  background: linear-gradient(180deg,
    #04040a 0%,
    rgba(6, 14, 12, 0.55) 50%,
    #04040a 100%);
}

.world--cycles::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(40, 160, 96, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(74, 154, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* WORLD 2 — AS SOMBRAS */
.world--shadows {
  background: linear-gradient(180deg,
    #04040a 0%,
    rgba(10, 5, 8, 0.55) 50%,
    #04040a 100%);
}

.world--shadows::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(132, 24, 32, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* WORLD 3 — OS FESTIVAIS */
.world--festival {
  background: linear-gradient(180deg,
    #04040a 0%,
    rgba(12, 10, 6, 0.50) 50%,
    #04040a 100%);
}

.world--festival::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 60%, rgba(200, 152, 40, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* WORLD 4 — A GLÓRIA */
.world--glory {
  background: linear-gradient(180deg,
    #04040a 0%,
    rgba(18, 12, 6, 0.50) 50%,
    #04040a 100%);
}

.world--glory::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(200, 152, 40, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* WORLD 5 — O DESCONHECIDO */
.world--unknown {
  background: linear-gradient(180deg,
    #04040a 0%,
    rgba(6, 5, 14, 0.55) 50%,
    #04040a 100%);
}

.world--unknown::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(48, 24, 88, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Painel de feature grande */
.feat-panel {
  position: relative;
  padding: var(--s12) 0;
}

.feat-panel__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.feat-panel__split--rev { direction: rtl; }
.feat-panel__split--rev > * { direction: ltr; }

.feat-panel__media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.feat-panel__media-bg {
  position: absolute;
  inset: 0;
}

.feat-panel__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s8) var(--s8);
  position: relative;
}

.feat-panel__world-tag {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

.feat-panel__world-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: var(--s4);
}

.feat-panel__desc {
  font-family: var(--font-lore);
  font-size: 1.1rem;
  line-height: 2;
  color: var(--silver-mid);
  font-style: italic;
  max-width: 520px;
}

/* Grid de features menores dentro de um mundo */
.feat-grid {
  display: grid;
  gap: 1px;
  background: var(--border-dim);
}

.feat-grid--2 { grid-template-columns: 1fr 1fr; }
.feat-grid--3 { grid-template-columns: 1fr 1fr 1fr; }

.feat-cell {
  background: var(--bg-void);
  padding: var(--s6) var(--s6);
  position: relative;
  overflow: hidden;
  transition: background var(--t-mid);
}

.feat-cell:hover {
  background: var(--bg-deep);
}

.feat-cell__number {
  position: absolute;
  top: var(--s3);
  right: var(--s4);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 152, 40, 0.08);
  line-height: 1;
  user-select: none;
}

.feat-cell__tag {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}

.feat-cell__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: var(--s3);
}

.feat-cell__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--silver-mid);
}

.feat-cell__accent-line {
  height: 2px;
  margin-bottom: var(--s4);
  width: 40px;
}

/* Feature hero (destaque único) */
.feat-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--s12) var(--s4);
}

.feat-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.feat-hero__subtitle {
  font-family: var(--font-lore);
  font-size: 1.4rem;
  font-style: italic;
  margin-top: var(--s3);
  color: var(--silver-mid);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════
   DECORAÇÃO DE FUNDO POR TEMPORADA
   ════════════════════════════════ */

.season-chapter--s1 {
  background: linear-gradient(180deg,
    var(--bg-void) 0%,
    rgba(14, 12, 10, 0.98) 50%,
    var(--bg-void) 100%);
}

.season-chapter--s2 {
  background: linear-gradient(180deg,
    var(--bg-void) 0%,
    rgba(5, 15, 10, 0.98) 50%,
    var(--bg-void) 100%);
}

.season-chapter--s3 {
  background: linear-gradient(180deg,
    var(--bg-void) 0%,
    rgba(24, 4, 8, 0.98) 50%,
    var(--bg-void) 100%);
}

.season-chapter--s4 {
  background: linear-gradient(180deg,
    var(--bg-void) 0%,
    rgba(8, 5, 16, 0.98) 50%,
    var(--bg-void) 100%);
}

/* ════════════════════════════════
   SEPARADOR ORNAMENTAL
   ════════════════════════════════ */

.ornament-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  padding: var(--s4) var(--s4);
}

.ornament-sep__line {
  flex: 1;
  max-width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}

.ornament-sep__icon {
  display: flex;
  align-items: center;
  gap: var(--s2);
  color: var(--gold-mid);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ════════════════════════════════
   RESPONSIVO
   ════════════════════════════════ */

@media (max-width: 1024px) {
  .season-chapter {
    grid-template-columns: 40px 1fr;
    padding: var(--s8) 0;
  }

  .season-chapter--reverse .season-content,
  .season-chapter--reverse .season-visual {
    grid-column: 2;
    grid-row: auto;
    text-align: left;
  }

  .season-node { grid-column: 1; }
  .season-content { grid-column: 2; }
  .season-visual { display: none; }

  .feat-panel__split { grid-template-columns: 1fr; }
  .feat-panel__split--rev { direction: ltr; }
  .feat-panel__media { min-height: 250px; }
  .feat-panel__body { padding: var(--s6) var(--s4); }

  .postcycle__pillars { grid-template-columns: repeat(2, 1fr); }

  .feat-grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .timeline-spine { left: 20px; }

  .season-chapter {
    grid-template-columns: 50px 1fr;
    padding: var(--s6) 0;
  }

  .season-content__stats { flex-direction: column; }
  .season-stat { max-width: 180px; }

  .feat-grid--2,
  .feat-grid--3 { grid-template-columns: 1fr; }

  .postcycle__pillars { grid-template-columns: 1fr; }

  .vision-section__number { display: none; }
}
