/* ═══════════════════════════════════════════════════
   COSMOS — ESTILOS PRINCIPAIS
   Paleta: Volcanic Glass + Acid Neon espacial
   Fontes: Syne (display) + Outfit (body) + Space Mono
═══════════════════════════════════════════════════ */

:root {
  --bg: #030308;
  --bg2: #07070f;
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --text: #e8e4f0;
  --text-muted: rgba(232,228,240,0.5);
  --accent: #7c5cfc;
  --accent2: #00d4ff;
  --accent3: #ff6b35;
  --gold: #ffd700;
  --red: #ff4466;
  --green: #39ff14;
  --radius: 20px;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  cursor: none;
}

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

/* ═══════════════════════════════════════════════════
   CURSOR PERSONALIZADO
═══════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, left 0.12s ease, top 0.12s ease;
}

/* ═══════════════════════════════════════════════════
   NAVEGAÇÃO
═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(3,3,8,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--accent2);
  text-shadow: 0 0 20px rgba(0,212,255,0.5);
}

.nav-sections {
  display: flex;
  gap: 8px;
}

.nav-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  cursor: none;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.nav-btn:hover, .nav-btn.active {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface2);
}
.nav-btn.active {
  color: var(--accent2);
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.08);
}

.nav-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.progress-bar {
  width: 60px; height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent2);
  border-radius: 2px;
  width: 25%;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px var(--accent2);
}

/* ═══════════════════════════════════════════════════
   SCROLL HINT
═══════════════════════════════════════════════════ */
.scroll-hint {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-family: 'Space Mono', monospace;
  animation: hintBounce 2s ease-in-out infinite;
  transition: opacity 0.5s;
}
.hint-arrows { color: var(--accent2); opacity: 0.7; }
@keyframes hintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   SLIDES WRAPPER
═══════════════════════════════════════════════════ */
.slides-wrapper {
  position: fixed;
  inset: 0;
  z-index: 10;
  transition: transform var(--transition);
  will-change: transform;
}

.slide-section {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 60px;
  overflow: hidden;
}

/* Posicionamento das seções */
#section-planets  { top: 0; }
#section-blackholes { top: 100vh; }
#section-stars    { top: 200vh; }
#section-movies   { top: 300vh; }

/* ═══════════════════════════════════════════════════
   CABEÇALHO DE SEÇÃO
═══════════════════════════════════════════════════ */
.section-header {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent2);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   CARDS TRACK (SCROLL HORIZONTAL)
═══════════════════════════════════════════════════ */
.cards-track-wrapper {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.cards-track-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.cards-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 4px 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.cards-track::-webkit-scrollbar { display: none; }
.cards-track.grabbing { cursor: grabbing; }

.track-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.track-fade.left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.track-fade.right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* ═══════════════════════════════════════════════════
   CARDS BASE
═══════════════════════════════════════════════════ */
.planet-card, .bh-card, .star-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.planet-card:hover, .bh-card:hover, .star-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(124,92,252,0.4);
  box-shadow: 0 20px 60px rgba(124,92,252,0.2), 0 0 0 1px rgba(124,92,252,0.1);
}

/* ═══════════════════════════════════════════════════
   CARD SCENE (ÁREA 3D)
═══════════════════════════════════════════════════ */
.card-scene, .bh-scene, .star-scene {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(124,92,252,0.08) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════════
   PLANETAS 3D
═══════════════════════════════════════════════════ */
.planet-3d {
  width: 100px; height: 100px;
  border-radius: 50%;
  position: relative;
  animation: planetRotate 8s linear infinite;
  transform-style: preserve-3d;
}

@keyframes planetRotate {
  from { transform: rotateY(0deg) rotateX(10deg); }
  to   { transform: rotateY(360deg) rotateX(10deg); }
}

.planet-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 10;
}

/* Planeta Rochoso */
.rocky-planet {
  background: radial-gradient(circle at 40% 35%, #c0392b 0%, #922b21 40%, #641e16 100%);
  box-shadow: inset -20px -10px 40px rgba(0,0,0,0.6), 0 0 30px rgba(192,57,43,0.3);
}
.rocky-planet .planet-surface {
  position: absolute; inset: 0; border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='40' cy='60' r='15' fill='rgba(0,0,0,0.2)'/%3E%3Ccircle cx='120' cy='90' r='10' fill='rgba(0,0,0,0.15)'/%3E%3Ccircle cx='80' cy='140' r='20' fill='rgba(0,0,0,0.18)'/%3E%3C/svg%3E") center/cover;
  opacity: 0.6;
}
.rocky-planet .planet-atmosphere {
  position: absolute; inset: -4px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, transparent 45%, rgba(192,57,43,0.15) 100%);
}
.crater {
  position: absolute; border-radius: 50%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.2);
}
.c1 { width: 18px; height: 14px; top: 25%; left: 20%; }
.c2 { width: 12px; height: 10px; top: 55%; left: 60%; }
.c3 { width: 22px; height: 18px; top: 65%; left: 25%; }

/* Gigante Gasoso */
.gas-planet {
  background: radial-gradient(circle at 40% 35%, #e8c97a 0%, #c9a227 30%, #8b6914 100%);
  box-shadow: inset -20px -10px 40px rgba(0,0,0,0.5), 0 0 40px rgba(232,201,122,0.3);
  overflow: hidden;
}
.gas-band {
  position: absolute; left: 0; right: 0;
  border-radius: 50px;
  animation: bandFlow 6s linear infinite;
}
.b1 { height: 14px; top: 20%; background: rgba(139,105,20,0.6); animation-duration: 7s; }
.b2 { height: 20px; top: 38%; background: rgba(180,120,30,0.5); animation-duration: 5s; animation-direction: reverse; }
.b3 { height: 12px; top: 58%; background: rgba(100,70,10,0.7); animation-duration: 8s; }
.b4 { height: 16px; top: 72%; background: rgba(160,110,25,0.4); animation-duration: 6s; animation-direction: reverse; }
@keyframes bandFlow {
  from { transform: translateX(-10px); }
  to   { transform: translateX(10px); }
}
.gas-storm {
  position: absolute; width: 22px; height: 16px;
  background: radial-gradient(ellipse, #c0392b 0%, #922b21 100%);
  border-radius: 50%;
  top: 42%; left: 55%;
  animation: stormPulse 3s ease-in-out infinite;
}
@keyframes stormPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Anéis de Saturno */
.saturn-rings {
  position: absolute;
  width: 160px; height: 40px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.r1 { width: 130px; height: 130px; border-width: 6px; border-color: rgba(210,180,100,0.5); }
.r2 { width: 150px; height: 150px; border-width: 4px; border-color: rgba(180,150,80,0.35); }
.r3 { width: 168px; height: 168px; border-width: 3px; border-color: rgba(150,120,60,0.2); }

/* Planeta de Gelo */
.ice-planet {
  background: radial-gradient(circle at 40% 35%, #7ec8e3 0%, #0077b6 40%, #023e8a 100%);
  box-shadow: inset -20px -10px 40px rgba(0,0,0,0.5), 0 0 40px rgba(0,119,182,0.4);
  overflow: hidden;
}
.ice-layer {
  position: absolute; left: 0; right: 0;
  border-radius: 50px;
}
.l1 { height: 30px; top: 25%; background: rgba(126,200,227,0.3); animation: iceFlow 10s linear infinite; }
.l2 { height: 20px; top: 55%; background: rgba(0,119,182,0.4); animation: iceFlow 14s linear infinite reverse; }
@keyframes iceFlow {
  from { transform: translateX(-15px) skewX(-5deg); }
  to   { transform: translateX(15px) skewX(5deg); }
}
.ice-swirl {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(126,200,227,0.4);
}
.s1 { width: 50px; height: 50px; top: 20%; left: 30%; animation: swirlSpin 12s linear infinite; }
.s2 { width: 30px; height: 30px; top: 55%; left: 55%; animation: swirlSpin 8s linear infinite reverse; }
@keyframes swirlSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Planeta Anão */
.dwarf-planet {
  width: 70px; height: 70px;
  background: radial-gradient(circle at 40% 35%, #b8a9c9 0%, #7d6b8a 40%, #4a3f5c 100%);
  box-shadow: inset -15px -8px 30px rgba(0,0,0,0.6), 0 0 20px rgba(184,169,201,0.2);
}
.dwarf-surface {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 60% 65%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.dwarf-heart {
  position: absolute;
  width: 28px; height: 22px;
  background: rgba(255,220,200,0.5);
  border-radius: 50%;
  bottom: 25%; left: 30%;
  filter: blur(3px);
}
.asteroid-belt {
  position: absolute; inset: 0;
}
.asteroid {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(200,180,160,0.6);
  border-radius: 50%;
  animation: asteroidOrbit linear infinite;
}
.a1 { top: 15%; left: 10%; animation-duration: 6s; }
.a2 { top: 75%; left: 80%; animation-duration: 8s; animation-delay: -2s; }
.a3 { top: 20%; left: 85%; animation-duration: 5s; animation-delay: -1s; }
.a4 { top: 80%; left: 15%; animation-duration: 7s; animation-delay: -3s; }
@keyframes asteroidOrbit {
  0%   { transform: translate(0,0) rotate(0deg); }
  25%  { transform: translate(5px,-5px) rotate(90deg); }
  50%  { transform: translate(0,-10px) rotate(180deg); }
  75%  { transform: translate(-5px,-5px) rotate(270deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

/* Exoplaneta */
.exo-planet {
  background: radial-gradient(circle at 40% 35%, #ff9a56 0%, #e05c00 40%, #7a2d00 100%);
  box-shadow: inset -20px -10px 40px rgba(0,0,0,0.5), 0 0 40px rgba(255,154,86,0.3);
  overflow: hidden;
}
.exo-cloud {
  position: absolute; border-radius: 50%;
  background: rgba(255,200,150,0.2);
  filter: blur(4px);
}
.ec1 { width: 60px; height: 30px; top: 20%; left: 10%; animation: cloudDrift 8s ease-in-out infinite; }
.ec2 { width: 40px; height: 20px; top: 55%; left: 50%; animation: cloudDrift 6s ease-in-out infinite reverse; }
@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
.exo-glow {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, transparent 45%, rgba(255,154,86,0.15) 100%);
}
.star-host {
  position: absolute; top: 15px; right: 20px;
}
.host-star {
  width: 20px; height: 20px;
  background: radial-gradient(circle, #fff8e1 0%, #ffd54f 50%, #ff8f00 100%);
  border-radius: 50%;
  animation: starPulse 2s ease-in-out infinite;
}
.host-glow {
  position: absolute; inset: -8px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,213,79,0.4) 0%, transparent 70%);
  animation: starPulse 2s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Super-Terra */
.superearth-planet {
  background: radial-gradient(circle at 40% 35%, #4fc3f7 0%, #0288d1 30%, #01579b 70%, #1a237e 100%);
  box-shadow: inset -20px -10px 40px rgba(0,0,0,0.5), 0 0 40px rgba(79,195,247,0.3);
  overflow: hidden;
}
.se-ocean {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, rgba(2,136,209,0.4) 0%, transparent 70%);
}
.se-continent {
  position: absolute; border-radius: 40%;
  background: rgba(76,175,80,0.6);
}
.se-continent.c1 { width: 35px; height: 25px; top: 25%; left: 20%; transform: rotate(-20deg); }
.se-continent.c2 { width: 25px; height: 30px; top: 50%; left: 55%; transform: rotate(15deg); }
.se-cloud {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  filter: blur(3px);
}
.sc1 { width: 50px; height: 15px; top: 15%; left: 15%; animation: cloudDrift 9s ease-in-out infinite; }
.sc2 { width: 35px; height: 12px; top: 65%; left: 40%; animation: cloudDrift 7s ease-in-out infinite reverse; }

/* Órbita */
.orbit-ring {
  position: absolute;
  width: 150px; height: 150px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
}
.orbit-ring.tilted {
  transform: translate(-50%, -50%) rotateX(60deg) rotateZ(30deg);
}
.orbit-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  animation: orbitDot 4s linear infinite;
  box-shadow: 0 0 8px var(--accent2);
}
@keyframes orbitDot {
  from { transform: rotate(0deg) translateX(75px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(75px) rotate(-360deg); }
}

/* ═══════════════════════════════════════════════════
   BURACOS NEGROS
═══════════════════════════════════════════════════ */
.bh-scene {
  background: radial-gradient(ellipse at center, rgba(20,0,40,0.8) 0%, transparent 70%);
}

/* Disco de acreção */
.bh-accretion {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
}
.acc-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: accretionSpin linear infinite;
}

/* Estelar */
.stellar-accretion { width: 120px; height: 120px; }
.stellar-accretion .ar1 { width: 80px; height: 80px; border: 8px solid transparent; border-top-color: #ff6b35; border-right-color: #ff8c55; animation-duration: 3s; filter: blur(1px); }
.stellar-accretion .ar2 { width: 100px; height: 100px; border: 5px solid transparent; border-top-color: rgba(255,107,53,0.6); animation-duration: 5s; animation-direction: reverse; filter: blur(2px); }
.stellar-accretion .ar3 { width: 120px; height: 120px; border: 3px solid transparent; border-top-color: rgba(255,107,53,0.3); animation-duration: 8s; filter: blur(3px); }

/* Supermassivo */
.super-accretion { width: 160px; height: 160px; }
.super-accretion .ar1 { width: 90px; height: 90px; border: 10px solid transparent; border-top-color: #ffd700; border-right-color: #ff8c00; animation-duration: 2s; filter: blur(1px); }
.super-accretion .ar2 { width: 115px; height: 115px; border: 7px solid transparent; border-top-color: rgba(255,140,0,0.7); animation-duration: 3.5s; animation-direction: reverse; filter: blur(2px); }
.super-accretion .ar3 { width: 138px; height: 138px; border: 5px solid transparent; border-top-color: rgba(255,107,53,0.5); animation-duration: 5s; filter: blur(3px); }
.super-accretion .ar4 { width: 160px; height: 160px; border: 3px solid transparent; border-top-color: rgba(255,69,0,0.3); animation-duration: 8s; animation-direction: reverse; filter: blur(4px); }

/* Intermediário */
.inter-accretion { width: 100px; height: 100px; }
.inter-accretion .ar1 { width: 70px; height: 70px; border: 6px solid transparent; border-top-color: #7c5cfc; border-right-color: #9b7dff; animation-duration: 4s; filter: blur(1px); }
.inter-accretion .ar2 { width: 95px; height: 95px; border: 4px solid transparent; border-top-color: rgba(124,92,252,0.5); animation-duration: 7s; animation-direction: reverse; filter: blur(2px); }

/* Primordial */
.prim-accretion { width: 70px; height: 70px; }
.prim-accretion .ar1 { width: 55px; height: 55px; border: 4px solid transparent; border-top-color: #39ff14; border-right-color: #00ff88; animation-duration: 2s; filter: blur(1px); }

@keyframes accretionSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Núcleo do buraco negro */
.bh-core {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.stellar-core { width: 30px; height: 30px; background: #000; box-shadow: 0 0 0 3px rgba(255,107,53,0.3), 0 0 20px rgba(255,107,53,0.2); }
.super-core { width: 45px; height: 45px; background: #000; box-shadow: 0 0 0 4px rgba(255,215,0,0.4), 0 0 30px rgba(255,140,0,0.3); }
.inter-core { width: 22px; height: 22px; background: #000; box-shadow: 0 0 0 3px rgba(124,92,252,0.4), 0 0 20px rgba(124,92,252,0.2); }
.prim-core { width: 12px; height: 12px; background: #000; box-shadow: 0 0 0 2px rgba(57,255,20,0.5), 0 0 15px rgba(57,255,20,0.3); }

/* Lensing gravitacional */
.bh-lensing {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.05);
  animation: lensingPulse 4s ease-in-out infinite;
}
.stellar-core + .bh-jet + .bh-jet + .bh-lensing,
.bh-lensing { width: 60px; height: 60px; }
.super-lensing { width: 80px; height: 80px; }
.inter-lensing { width: 50px; height: 50px; }
@keyframes lensingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 0 15px rgba(255,255,255,0.03); }
}

/* Jatos relativísticos */
.bh-jet {
  position: absolute;
  width: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(0,212,255,0.8), transparent);
  border-radius: 2px;
  animation: jetPulse 2s ease-in-out infinite;
  z-index: 3;
}
.jet-top { height: 60px; bottom: 55%; }
.jet-bottom { height: 60px; top: 55%; transform: translateX(-50%) rotate(180deg); }
@keyframes jetPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.5); }
}

/* Anel de fótons */
.photon-ring {
  position: absolute;
  width: 55px; height: 55px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.6);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(255,215,0,0.4), inset 0 0 10px rgba(255,215,0,0.2);
  animation: photonGlow 3s ease-in-out infinite;
  z-index: 4;
}
@keyframes photonGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.4), inset 0 0 10px rgba(255,215,0,0.2); }
  50% { box-shadow: 0 0 20px rgba(255,215,0,0.7), inset 0 0 15px rgba(255,215,0,0.4); }
}

/* Radiação Hawking */
.hawking-radiation { position: absolute; inset: 0; }
.hr-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--green);
  border-radius: 50%;
  animation: hawkingEscape linear infinite;
  box-shadow: 0 0 4px var(--green);
}
.p1 { top: 40%; left: 45%; animation-duration: 2s; animation-delay: 0s; }
.p2 { top: 35%; left: 55%; animation-duration: 2.5s; animation-delay: -0.5s; }
.p3 { top: 50%; left: 40%; animation-duration: 1.8s; animation-delay: -1s; }
.p4 { top: 55%; left: 58%; animation-duration: 2.2s; animation-delay: -1.5s; }
.p5 { top: 45%; left: 62%; animation-duration: 1.6s; animation-delay: -0.8s; }
.p6 { top: 60%; left: 48%; animation-duration: 2.8s; animation-delay: -0.3s; }
@keyframes hawkingEscape {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx, 30px), var(--dy, -30px)) scale(0); opacity: 0; }
}
.p1 { --dx: -25px; --dy: -30px; }
.p2 { --dx: 20px; --dy: -35px; }
.p3 { --dx: -30px; --dy: 10px; }
.p4 { --dx: 25px; --dy: 20px; }
.p5 { --dx: 35px; --dy: -15px; }
.p6 { --dx: -20px; --dy: 25px; }

/* Marcas de interrogação */
.question-marks {
  position: absolute;
  top: 15px; right: 15px;
  display: flex; gap: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  color: rgba(124,92,252,0.5);
  animation: questionFade 3s ease-in-out infinite;
}
@keyframes questionFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Wormhole */
.wormhole-container {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.wormhole-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: wormholeSpin linear infinite;
}
.wr1 { width: 60px; height: 60px; border-color: rgba(0,212,255,0.8); animation-duration: 3s; }
.wr2 { width: 85px; height: 85px; border-color: rgba(124,92,252,0.5); animation-duration: 5s; animation-direction: reverse; }
.wr3 { width: 110px; height: 110px; border-color: rgba(0,212,255,0.2); animation-duration: 8s; }
@keyframes wormholeSpin {
  from { transform: translate(-50%, -50%) rotateX(70deg) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotateX(70deg) rotate(360deg); }
}
.wormhole-tunnel {
  width: 30px; height: 30px;
  background: radial-gradient(circle, #000 0%, #0a0020 60%, transparent 100%);
  border-radius: 50%;
  z-index: 5;
}
.wormhole-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,212,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: wormholeGlow 2s ease-in-out infinite;
}
@keyframes wormholeGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   ESTRELAS & OBJETOS
═══════════════════════════════════════════════════ */

/* Nebulosa */
.nebula-obj {
  position: relative;
  width: 140px; height: 140px;
}
.neb-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  animation: nebulaPulse ease-in-out infinite;
}
.nc1 { width: 80px; height: 60px; top: 10%; left: 10%; background: rgba(255,107,53,0.4); animation-duration: 4s; }
.nc2 { width: 70px; height: 80px; top: 30%; left: 40%; background: rgba(124,92,252,0.5); animation-duration: 5s; animation-delay: -1s; }
.nc3 { width: 60px; height: 50px; top: 50%; left: 20%; background: rgba(0,212,255,0.3); animation-duration: 6s; animation-delay: -2s; }
@keyframes nebulaPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.neb-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: starTwinkle ease-in-out infinite;
}
.ns1 { width: 4px; height: 4px; top: 20%; left: 50%; animation-duration: 2s; box-shadow: 0 0 6px #fff; }
.ns2 { width: 3px; height: 3px; top: 60%; left: 30%; animation-duration: 3s; animation-delay: -1s; box-shadow: 0 0 4px #fff; }
.ns3 { width: 5px; height: 5px; top: 40%; left: 70%; animation-duration: 2.5s; animation-delay: -0.5s; box-shadow: 0 0 8px #fff; }
@keyframes starTwinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Anã Amarela */
.star-obj { position: relative; border-radius: 50%; }
.yellow-star {
  width: 90px; height: 90px;
  background: radial-gradient(circle at 40% 35%, #fff9c4 0%, #ffd54f 30%, #ff8f00 70%, #e65100 100%);
  box-shadow: 0 0 40px rgba(255,213,79,0.6), 0 0 80px rgba(255,143,0,0.3);
  animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,213,79,0.6), 0 0 80px rgba(255,143,0,0.3); }
  50% { box-shadow: 0 0 60px rgba(255,213,79,0.8), 0 0 120px rgba(255,143,0,0.5); }
}
.ys-surface {
  position: absolute; inset: 0; border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='60' cy='80' r='20' fill='rgba(255,100,0,0.3)'/%3E%3Ccircle cx='130' cy='60' r='15' fill='rgba(255,80,0,0.25)'/%3E%3Ccircle cx='90' cy='130' r='25' fill='rgba(255,120,0,0.2)'/%3E%3C/svg%3E") center/cover;
  animation: sunspotMove 10s linear infinite;
}
@keyframes sunspotMove {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.star-corona {
  position: absolute; inset: -15px; border-radius: 50%;
  background: radial-gradient(circle, transparent 50%, rgba(255,213,79,0.15) 70%, transparent 100%);
  animation: coronaPulse 3s ease-in-out infinite;
}
@keyframes coronaPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}
.solar-flare {
  position: absolute;
  width: 8px; height: 30px;
  background: linear-gradient(to top, rgba(255,140,0,0.8), transparent);
  border-radius: 50%;
  transform-origin: bottom center;
  animation: flareBurst 3s ease-in-out infinite;
}
.sf1 { bottom: 90%; left: 30%; animation-delay: 0s; }
.sf2 { bottom: 90%; left: 60%; animation-delay: -1.5s; }
@keyframes flareBurst {
  0%, 100% { transform: scaleY(0.3) rotate(-10deg); opacity: 0.3; }
  50% { transform: scaleY(1) rotate(10deg); opacity: 0.9; }
}
.ys-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,213,79,0.2) 0%, transparent 70%);
}

/* Gigante Vermelha */
.red-giant-star {
  width: 120px; height: 120px;
  background: radial-gradient(circle at 40% 35%, #ff8a65 0%, #e64a19 30%, #bf360c 70%, #7f0000 100%);
  box-shadow: 0 0 50px rgba(230,74,25,0.5), 0 0 100px rgba(191,54,12,0.3);
  animation: giantPulse 5s ease-in-out infinite;
}
@keyframes giantPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.rg-surface {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 60% 65%, rgba(255,100,50,0.3) 0%, transparent 60%);
}
.rg-pulse {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 2px solid rgba(230,74,25,0.2);
  animation: rgPulseAnim 3s ease-in-out infinite;
}
@keyframes rgPulseAnim {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.1; }
}
.rg-glow {
  position: absolute; inset: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,74,25,0.15) 0%, transparent 70%);
}
.rg-flare {
  position: absolute;
  width: 12px; height: 40px;
  background: linear-gradient(to top, rgba(255,100,50,0.7), transparent);
  border-radius: 50%;
  transform-origin: bottom center;
  animation: flareBurst 4s ease-in-out infinite;
}
.rf1 { bottom: 90%; left: 20%; animation-delay: 0s; }
.rf2 { bottom: 90%; left: 65%; animation-delay: -2s; }

/* Supernova */
.supernova-obj {
  position: relative;
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.sn-core {
  width: 20px; height: 20px;
  background: radial-gradient(circle, #fff 0%, #00d4ff 50%, #7c5cfc 100%);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 20px #fff, 0 0 40px var(--accent2);
  animation: snCorePulse 0.5s ease-in-out infinite;
}
@keyframes snCorePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.sn-shockwave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: shockwaveExpand 3s ease-out infinite;
}
.sw1 { width: 40px; height: 40px; border-color: rgba(255,255,255,0.8); animation-delay: 0s; }
.sw2 { width: 40px; height: 40px; border-color: rgba(255,107,53,0.6); animation-delay: -1s; }
.sw3 { width: 40px; height: 40px; border-color: rgba(124,92,252,0.4); animation-delay: -2s; }
@keyframes shockwaveExpand {
  0%   { width: 20px; height: 20px; opacity: 1; }
  100% { width: 160px; height: 160px; opacity: 0; }
}
.sn-debris {
  position: absolute;
  width: 4px; height: 4px;
  background: #ff8c55;
  border-radius: 50%;
  animation: debrisShoot linear infinite;
}
.sd1 { animation-duration: 2s; animation-delay: 0s; --angle: 45deg; }
.sd2 { animation-duration: 2.5s; animation-delay: -0.5s; --angle: 135deg; }
.sd3 { animation-duration: 1.8s; animation-delay: -1s; --angle: 225deg; }
.sd4 { animation-duration: 2.2s; animation-delay: -1.5s; --angle: 315deg; }
@keyframes debrisShoot {
  0%   { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(80px); opacity: 0; }
}
.sn-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,107,53,0.05) 50%, transparent 70%);
  border-radius: 50%;
  animation: snGlowPulse 1s ease-in-out infinite;
}
@keyframes snGlowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Estrela de Nêutrons */
.neutron-obj {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.ns-surface {
  width: 30px; height: 30px;
  background: radial-gradient(circle, #e0f7fa 0%, #00bcd4 50%, #006064 100%);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 15px rgba(0,188,212,0.8);
  animation: nsRotate 0.5s linear infinite;
}
@keyframes nsRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ns-beam {
  position: absolute;
  width: 6px;
  background: linear-gradient(to top, rgba(0,212,255,0.9), transparent);
  border-radius: 3px;
  left: 50%;
  transform-origin: bottom center;
  animation: beamRotate 1s linear infinite;
}
.nb1 { height: 70px; bottom: 50%; transform: translateX(-50%) rotate(0deg); }
.nb2 { height: 70px; top: 50%; transform: translateX(-50%) rotate(180deg); }
@keyframes beamRotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
.ns-glow {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
}
.ns-field {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: fieldPulse 2s ease-in-out infinite;
}
.nf1 { width: 60px; height: 60px; animation-delay: 0s; }
.nf2 { width: 90px; height: 90px; animation-delay: -1s; }
@keyframes fieldPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* Anã Branca */
.white-dwarf-star {
  width: 55px; height: 55px;
  background: radial-gradient(circle at 40% 35%, #ffffff 0%, #e0e8ff 40%, #9fa8da 100%);
  box-shadow: 0 0 30px rgba(224,232,255,0.8), 0 0 60px rgba(159,168,218,0.4);
  animation: wdGlow 3s ease-in-out infinite;
}
@keyframes wdGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(224,232,255,0.8), 0 0 60px rgba(159,168,218,0.4); }
  50% { box-shadow: 0 0 50px rgba(224,232,255,1), 0 0 100px rgba(159,168,218,0.6); }
}
.wd-surface {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5) 0%, transparent 60%);
}
.wd-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,232,255,0.2) 0%, transparent 70%);
}
.planetary-nebula {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pnExpand 6s ease-out infinite;
}
.pn1 { width: 80px; height: 80px; border-color: rgba(124,92,252,0.4); animation-delay: 0s; }
.pn2 { width: 80px; height: 80px; border-color: rgba(0,212,255,0.3); animation-delay: -3s; }
@keyframes pnExpand {
  0%   { width: 60px; height: 60px; opacity: 0.8; }
  100% { width: 160px; height: 160px; opacity: 0; }
}

/* Magnetar */
.magnetar-obj {
  position: relative;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.mag-surface {
  width: 28px; height: 28px;
  background: radial-gradient(circle, #ff4081 0%, #c2185b 50%, #880e4f 100%);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 20px rgba(255,64,129,0.8);
  animation: magRotate 0.3s linear infinite;
}
@keyframes magRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.mag-field {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,64,129,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: magFieldPulse 1.5s ease-in-out infinite;
}
.mf1 { width: 50px; height: 50px; animation-delay: 0s; }
.mf2 { width: 75px; height: 75px; animation-delay: -0.5s; }
.mf3 { width: 100px; height: 100px; animation-delay: -1s; }
@keyframes magFieldPulse {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}
.mag-burst {
  position: absolute;
  width: 3px; height: 3px;
  background: #ff4081;
  border-radius: 50%;
  box-shadow: 0 0 6px #ff4081;
  animation: magBurstAnim 1s ease-out infinite;
}
.mb1 { top: 20%; left: 20%; animation-delay: 0s; }
.mb2 { top: 70%; left: 70%; animation-delay: -0.5s; }
@keyframes magBurstAnim {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(8); opacity: 0; }
}

/* ═══════════════════════════════════════════════════
   CARD INFO
═══════════════════════════════════════════════════ */
.card-info {
  padding: 20px;
}
.card-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.bh-tag {
  color: var(--accent3);
  background: rgba(255,107,53,0.1);
  border-color: rgba(255,107,53,0.2);
}
.star-tag {
  color: var(--gold);
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.2);
}
.card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.card-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.card-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.stat-val {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

/* ═══════════════════════════════════════════════════
   SEÇÃO DE FILMES
═══════════════════════════════════════════════════ */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 220px);
  padding: 4px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,92,252,0.3) transparent;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.movies-grid.visible {
  opacity: 1;
  transform: translateY(0);
}
.movies-grid::-webkit-scrollbar { width: 4px; }
.movies-grid::-webkit-scrollbar-track { background: transparent; }
.movies-grid::-webkit-scrollbar-thumb { background: rgba(124,92,252,0.3); border-radius: 2px; }

.movie-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
}
.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,92,252,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.mc-featured {
  grid-column: span 2;
}

.movie-poster {
  height: 140px;
  position: relative;
  overflow: hidden;
}
.mc-featured .movie-poster { height: 180px; }

.movie-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,15,0.8) 0%, transparent 60%);
}
.movie-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--text);
  backdrop-filter: blur(4px);
}

/* Elementos decorativos dos posters */
.movie-planet {
  position: absolute;
  border-radius: 50%;
  animation: posterFloat ease-in-out infinite;
}
.mp1 { width: 60px; height: 60px; background: radial-gradient(circle, #7c5cfc, #3d1e7c); top: 20%; left: 15%; animation-duration: 4s; box-shadow: 0 0 30px rgba(124,92,252,0.5); }
.mp2 { width: 30px; height: 30px; background: radial-gradient(circle, #ffd700, #ff8c00); top: 50%; left: 60%; animation-duration: 6s; animation-delay: -2s; box-shadow: 0 0 20px rgba(255,215,0,0.5); }
@keyframes posterFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.movie-wormhole {
  position: absolute;
  width: 80px; height: 80px;
  border: 3px solid rgba(0,212,255,0.4);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  animation: wormholeSpin 4s linear infinite;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.movie-mars {
  position: absolute;
  width: 70px; height: 70px;
  background: radial-gradient(circle at 40% 35%, #c0392b 0%, #7f0000 100%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(192,57,43,0.4);
  animation: posterFloat 5s ease-in-out infinite;
}
.movie-gravity-debris {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0,102,204,0.3) 0%, transparent 60%);
}
.movie-stars-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(233,69,96,0.3) 0%, transparent 60%);
}
.movie-cosmos-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 50%, rgba(123,45,139,0.4) 0%, transparent 60%);
}
.movie-sun-bg {
  position: absolute;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,140,0,0.6) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: sunPulse 3s ease-in-out infinite;
}
.movie-arrival-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(0,204,68,0.3) 0%, transparent 60%);
}
.movie-moon-bg {
  position: absolute;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 40% 35%, #e0e0e0 0%, #9e9e9e 50%, #424242 100%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(200,200,200,0.2);
}

.movie-info { padding: 16px; }
.movie-year {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.movie-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.movie-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.movie-tags span {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 100px;
  color: var(--text-muted);
}
.movie-rating {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════
   INDICADORES & NAVEGAÇÃO
═══════════════════════════════════════════════════ */
.section-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: none;
  transition: all 0.3s;
}
.dot.active {
  background: var(--accent2);
  box-shadow: 0 0 8px var(--accent2);
  transform: scale(1.5);
}

.nav-arrow {
  position: fixed;
  right: 40px;
  z-index: 100;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: all 0.3s;
}
.nav-arrow:hover {
  background: var(--surface);
  border-color: rgba(0,212,255,0.3);
  color: var(--accent2);
}
.nav-up { bottom: 100px; }
.nav-down { bottom: 50px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVIDADE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-sections { display: none; }
  .slide-section { padding: 80px 20px 40px; }
  .section-title { font-size: 2rem; }
  .planet-card, .bh-card, .star-card { flex: 0 0 280px; }
  .mc-featured { grid-column: span 1; }
  .movies-grid { grid-template-columns: 1fr; }
  .nav-arrow { right: 16px; }
  .section-dots { right: 12px; }
}