/* ================================================================= */
/* Vega Vem Vindo — página dedicada (deep space)                     */
/* ================================================================= */

:root {
  --vega-bg: #0a0a2e;
  --vega-bg-2: #1a1a4e;
  --vega-purple: #6B21A8;
  --vega-purple-light: #a855f7;
  --vega-accent: #c084fc;
  --vega-gold: #ffd479;
  --vega-text: #e8e8ff;
  --vega-text-muted: #a9a9d4;

  --font-title: 'Bangers', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-handwritten: 'Caveat', cursive;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--vega-text);
  background: var(--vega-bg);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: var(--vega-accent); text-decoration: none; transition: all 0.3s ease; }
a:hover { opacity: 0.9; }
a:focus-visible { outline: 2px solid var(--vega-accent); outline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.page-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 46, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
}
.header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.back-link { color: var(--vega-accent); font-weight: 700; font-size: 16px; transition: transform 0.3s ease; }
.back-link:hover { transform: translateX(-5px); opacity: 1; }
.logo-link { text-decoration: none; }
.logo-text { font-family: var(--font-title); font-size: 32px; color: var(--vega-text); letter-spacing: 2px; transition: color 0.3s ease; }
.logo-text:hover { color: var(--vega-accent); }
.language-switcher { display: flex; gap: 0.4rem; padding: 0.2rem; background: rgba(168, 85, 247, 0.18); border-radius: 20px; }
.lang-btn { background: transparent; border: none; padding: 0.35rem 0.7rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; color: var(--vega-text-muted); cursor: pointer; border-radius: 16px; transition: all 0.3s ease; }
.lang-btn:hover { color: var(--vega-text); background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--vega-purple-light); color: #fff; box-shadow: 0 2px 8px rgba(168,85,247,0.4); }

/* Starfield + glow (shared) */
.vega-stars, .vega-stars--2, .vega-stars--3 { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.vega-stars::after, .vega-stars--2::after, .vega-stars--3::after {
  content: ""; position: absolute; top: 0; left: 0; width: 2px; height: 2px; border-radius: 50%; background: transparent;
  box-shadow:
    12vw 8vh 0 0 rgba(255,255,255,0.9), 27vw 62vh 0 0 rgba(255,255,255,0.7),
    45vw 20vh 0 0 rgba(255,255,255,0.8), 68vw 40vh 0 0 rgba(255,255,255,0.6),
    83vw 15vh 0 0 rgba(255,255,255,0.9), 90vw 70vh 0 0 rgba(255,255,255,0.7),
    5vw 80vh 0 0 rgba(255,255,255,0.6), 34vw 88vh 0 0 rgba(255,255,255,0.8),
    58vw 78vh 0 0 rgba(255,255,255,0.5), 75vw 90vh 0 0 rgba(255,255,255,0.7),
    15vw 45vh 0 0 rgba(255,255,255,0.5), 50vw 55vh 0 0 rgba(255,255,255,0.6),
    95vw 45vh 0 0 rgba(255,255,255,0.6), 40vw 35vh 0 0 rgba(255,255,255,0.4);
  animation: twinkle 4s ease-in-out infinite alternate;
}
.vega-stars--2::after { animation-duration: 6s; animation-delay: 1s; transform: translate(3vw, 5vh) scale(0.7); opacity: 0.7; }
.vega-stars--3::after { animation-duration: 7s; opacity: 0.5; }
@keyframes twinkle { 0% { opacity: 0.35; } 100% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .vega-stars::after, .vega-stars--2::after, .vega-stars--3::after { animation: none; }
}

.vega-glow {
  position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,121,0.35), rgba(168,85,247,0.12) 45%, transparent 70%);
  filter: blur(20px); z-index: 0; animation: pulse-glow 6s ease-in-out infinite alternate;
}
@keyframes pulse-glow { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.15); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .vega-glow { animation: none; } }

/* Hero */
.vega-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(107,33,168,0.35), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(30,30,90,0.55), transparent 60%),
    linear-gradient(160deg, var(--vega-bg) 0%, var(--vega-bg-2) 55%, #2a1a5e 100%);
  color: var(--vega-text); padding: 90px 20px 70px;
}
.vega-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 60px; align-items: center; }
.vega-hero-cover { display: flex; justify-content: center; }
.vega-cover-img {
  width: 100%; max-width: 360px; border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(168,85,247,0.4), 0 25px 60px rgba(0,0,0,0.6), 0 0 80px rgba(168,85,247,0.35);
  transform: perspective(1000px) rotateY(-6deg); transition: transform 0.5s ease;
}
.vega-cover-img:hover { transform: perspective(1000px) rotateY(0deg) scale(1.02); }
.vega-badge {
  display: inline-block; background: linear-gradient(135deg, var(--vega-gold), #ff9d5c); color: #2a1500;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 2px; padding: 6px 16px; border-radius: 30px;
  text-transform: uppercase; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(255,212,121,0.4);
}
.vega-title { font-family: var(--font-body); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.02; letter-spacing: 1px; color: #fff; margin-bottom: 14px; text-shadow: 0 4px 30px rgba(168,85,247,0.6); }
.vega-subtitle { font-family: var(--font-handwritten); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--vega-gold); margin-bottom: 22px; }
.vega-subtitle i { font-size: 0.8em; margin-right: 6px; }
.vega-tagline { font-size: 1.15rem; line-height: 1.7; color: var(--vega-text-muted); max-width: 620px; margin-bottom: 32px; }
.vega-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--vega-purple-light), var(--vega-purple)); color: #fff;
  padding: 16px 42px; border-radius: 40px; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.3px;
  box-shadow: 0 10px 30px rgba(107,33,168,0.5); transition: all 0.3s ease;
}
.vega-cta::before { content: "\f270"; font-family: "Font Awesome 6 Brands"; font-weight: 400; }
.vega-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(168,85,247,0.6); color: #fff; opacity: 1; }
.vega-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(168,85,247,0.25); }
.vega-meta li { display: flex; align-items: center; gap: 9px; font-size: 0.95rem; color: var(--vega-text-muted); }
.vega-meta i { color: var(--vega-accent); width: 18px; text-align: center; }
.vega-scroll { position: relative; z-index: 1; display: block; width: fit-content; margin: 40px auto 0; color: var(--vega-text-muted); font-size: 1.4rem; animation: bounce 2s infinite; }
.vega-scroll:hover { color: var(--vega-accent); opacity: 1; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) { .vega-scroll { animation: none; } }

/* Sinopse */
.vega-synopsis { position: relative; overflow: hidden; background: linear-gradient(180deg, #2a1a5e 0%, #1a1a4e 40%, var(--vega-bg) 100%); color: var(--vega-text); padding: 80px 20px 90px; }
.vega-synopsis-title { font-family: var(--font-body); font-weight: 800; text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 36px; letter-spacing: 0.5px; }
.vega-synopsis-title::after { content: ""; display: block; width: 70px; height: 3px; margin: 16px auto 0; background: linear-gradient(90deg, var(--vega-accent), var(--vega-gold)); border-radius: 3px; }
.vega-synopsis-text { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; font-size: 1.2rem; line-height: 1.9; color: var(--vega-text); text-align: center; font-weight: 300; }
.vega-synopsis-text strong { display: block; margin-top: 22px; font-size: 1.35rem; font-weight: 700; color: var(--vega-gold); font-style: italic; }

/* Personagens */
.vchar-section { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--vega-bg), #12123a); padding: 80px 20px; }
.vchar-title { position: relative; z-index: 1; font-family: var(--font-body); font-weight: 800; text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 44px; }
.vchar-title::after { content: ""; display: block; width: 70px; height: 3px; margin: 16px auto 0; background: linear-gradient(90deg, var(--vega-accent), var(--vega-gold)); border-radius: 3px; }
.vchar-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.vchar-card {
  background: rgba(26, 26, 78, 0.6); border: 1px solid rgba(168,85,247,0.3); border-radius: 16px; padding: 26px 22px; text-align: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vchar-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(107,33,168,0.4); border-color: var(--vega-purple-light); }
.vchar-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 3px solid rgba(168,85,247,0.5); box-shadow: 0 0 30px rgba(168,85,247,0.35); }
.vchar-card--duo .vchar-duo-imgs { display: flex; justify-content: center; gap: -20px; margin-bottom: 18px; }
.vchar-card--duo .vchar-img { width: 120px; height: 120px; margin: 0; }
.vchar-card--duo .vchar-img:first-child { margin-right: -18px; }
.vchar-card--duo .vchar-img:last-child { margin-left: -18px; }
.vchar-name { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.vchar-desc { font-size: 0.95rem; line-height: 1.65; color: var(--vega-text-muted); margin-bottom: 16px; }
.vchar-tags { font-size: 0.85rem; color: var(--vega-accent); font-weight: 500; }

/* Bastidores / Reels */
.vega-bastidores { background: #12123a; color: var(--vega-text); padding: 80px 20px; text-align: center; }
.vega-bastidores-subtitle { max-width: 620px; margin: 0 auto 44px; color: var(--vega-text-muted); font-size: 1.05rem; }
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto 40px; }
.reel-card {
  position: relative; aspect-ratio: 9 / 16; border-radius: 16px; display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: 20px; color: #fff;
  background: linear-gradient(160deg, rgba(107,33,168,0.55), rgba(10,10,46,0.9)); border: 1px solid rgba(168,85,247,0.35);
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(107,33,168,0.5); opacity: 1; }
.reel-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; border: 2px solid rgba(255,255,255,0.6); transition: all 0.3s ease; }
.reel-card:hover .reel-play { background: var(--vega-purple-light); border-color: var(--vega-purple-light); }
.reel-label { position: relative; z-index: 1; font-weight: 600; font-size: 0.95rem; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 32px; border-radius: 40px; font-weight: 700; font-size: 1rem; color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af 90%); box-shadow: 0 10px 26px rgba(221,42,123,0.4); transition: all 0.3s ease;
}
.ig-follow-btn:hover { transform: translateY(-3px); color: #fff; opacity: 1; box-shadow: 0 16px 36px rgba(221,42,123,0.55); }

/* CTA Final */
.vega-final-cta { position: relative; overflow: hidden; background: linear-gradient(180deg, #12123a, var(--vega-bg)); padding: 90px 20px; text-align: center; }
.vega-epigraph { position: relative; z-index: 1; max-width: 720px; margin: 0 auto 36px; font-family: var(--font-handwritten); font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.5; color: var(--vega-gold); }

/* Footer */
.site-footer { background: #060620; color: white; padding: 44px 20px; text-align: center; }
.footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.footer-social-link { color: white; font-size: 24px; transition: color 0.3s ease; }
.footer-social-link:hover { color: var(--vega-accent); opacity: 1; }
.footer-copyright { font-size: 14px; color: #b8b8d8; margin-bottom: 10px; }
.footer-tagline { font-size: 14px; color: #8888ac; }
.footer-tagline a { color: var(--vega-accent); }

/* Responsive */
@media (max-width: 860px) {
  .vega-hero { padding: 60px 20px 50px; }
  .vega-hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .vega-hero-cover { order: -1; }
  .vega-cover-img { max-width: 260px; transform: none; }
  .vega-tagline { margin-left: auto; margin-right: auto; }
  .vega-meta { justify-content: center; }
  .vega-glow { width: 320px; height: 320px; top: -80px; right: -80px; }
  .vchar-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .vega-title { font-size: 2.2rem; }
  .vega-cta { width: 100%; justify-content: center; }
  .vega-synopsis-text { font-size: 1.05rem; }
  .vchar-grid { grid-template-columns: 1fr; max-width: 360px; }
  .reels-grid { grid-template-columns: 1fr; max-width: 300px; }
  .site-footer { padding: 32px 20px; }
}
