/* ============================================================
   JABOTICAST — Design System
   1. Tokens  2. Base  3. Componentes  4. Header  5. Hero
   6. Seções  7. Footer  8. Animações  9. Responsivo
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Cores */
  --bg: #08070F;
  --bg-alt: #0D0B18;
  --surface: #14111F;
  --surface-2: #1B1730;
  --line: rgba(255, 255, 255, 0.08);

  --primary: #8B5CF6;
  --primary-strong: #7C3AED;
  --magenta: #D946EF;
  --gold: #F2B33D;

  --text: #F2F1F7;
  --muted: #A9A4C0;

  --grad: linear-gradient(120deg, #8B5CF6, #D946EF);

  /* Tipografia */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --container: 1160px;
  --radius: 18px;
  --radius-lg: 26px;
  --section-y: clamp(4.5rem, 9vw, 7.5rem);

  --shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 10px 40px -8px rgba(139, 92, 246, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

ul, ol, dl, figure { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: var(--section-y); position: relative; }
.section-alt { background: var(--bg-alt); }

/* Compensa o header fixo ao navegar por âncoras (#sobre, #contato...) */
[id] { scroll-margin-top: 92px; }

/* ---------- 3. Componentes ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.9rem;
}

.section-head { max-width: 680px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head h2 { margin-bottom: 0.4em; }
.section-sub { color: var(--muted); font-size: 1.06rem; }

.row-head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 46px -8px rgba(217, 70, 239, 0.5); }

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(139, 92, 246, 0.1); transform: translateY(-2px); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(242, 179, 61, 0.6);
  animation: pulse-dot 2.2s infinite;
}

/* ---------- 4. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 7, 15, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.9rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow:
    0 0 8px rgba(168, 85, 247, 0.9),
    0 0 22px rgba(168, 85, 247, 0.55),
    0 0 44px rgba(139, 92, 246, 0.35);
}
.brand-tag { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.18rem; }
.brand-wave { width: 52px; height: 11px; color: #fff; opacity: 0.92; flex: none; }
.brand-text small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #EDE9FE;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.7);
  white-space: nowrap;
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 0.4rem; }
.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.6rem;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(8, 7, 15, 0.97);
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 1.5rem 1.8rem;
}
.mobile-menu nav > a:not(.btn) {
  padding: 0.8rem 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1.2rem; justify-content: center; }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 9.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.nebula { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.nebula-1 { width: 620px; height: 620px; top: -220px; left: -140px; background: #4C1D95; }
.nebula-2 { width: 520px; height: 520px; top: -120px; right: -120px; background: #86198F; opacity: 0.38; }
.nebula-3 { width: 420px; height: 420px; bottom: -180px; left: 34%; background: #1E3A8A; opacity: 0.32; }

.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 28%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 32% 12%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 55% 34%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(1px 1px at 72% 18%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 88% 42%, rgba(255,255,255,0.65) 50%, transparent 51%),
    radial-gradient(1px 1px at 45% 60%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 8% 70%, rgba(255,255,255,0.45) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 65% 78%, rgba(255,255,255,0.5) 50%, transparent 51%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy .lead {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin: 2.6rem 0 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats dt span { font-size: 0.55em; font-weight: 600; margin-left: 2px; }
.hero-stats dd { margin: 0.15rem 0 0; font-size: 0.85rem; color: var(--muted); max-width: 9rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 80px -20px rgba(139, 92, 246, 0.35);
}
.hero-card {
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(20, 17, 31, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow);
}
.pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #F43F5E;
  animation: pulse-dot 1.6s infinite;
  flex: none;
}

.hero-platforms {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: 1.1rem 1.6rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.platforms-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
}
.hero-platforms ul {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  flex-wrap: wrap;
}
.hero-platforms li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s;
}
.hero-platforms li:hover { color: var(--text); }
.hero-platforms svg { width: 20px; height: 20px; }

/* ---------- 6. Seções ---------- */

/* Split (Sobre / Estúdio) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%;
}
.split-reverse .split-media { order: -1; }

.tag-card {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  flex-direction: column;
  background: rgba(20, 17, 31, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
}
.tag-card strong { font-family: var(--font-display); font-size: 0.95rem; }
.tag-card span { font-size: 0.78rem; color: var(--muted); }

.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 1.8rem;
}
.mv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.mv-card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, 0.45); }
.mv-card h3 { margin-bottom: 0.3em; font-size: 1.05rem; }
.mv-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.mv-icon {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.14);
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.mv-icon svg { width: 22px; height: 22px; }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* Info cards (Público) */
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: var(--shadow-glow);
}
.info-card h3 { font-size: 1.02rem; margin-bottom: 0.35em; }
.info-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.info-icon {
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--grad);
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 8px 22px -8px rgba(139, 92, 246, 0.55);
}
.info-icon svg { width: 22px; height: 22px; }

/* Feature cards (Formato) */
.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(217, 70, 239, 0.4); }
.feature-card h3 { font-size: 1.02rem; margin: 0 0 0.4em; }
.feature-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.feature-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.6rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 70%);
  transition: opacity 0.4s;
  opacity: 0;
}
.feature-card:hover::after { opacity: 1; }

/* Timeline (Estrutura) */
.timeline-wrap { margin-top: clamp(3rem, 6vw, 4.5rem); }
.timeline-title { font-size: 1.25rem; margin-bottom: 1.8rem; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
.timeline li {
  position: relative;
  padding: 1.5rem 1.3rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.timeline li::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  right: -1.2rem;
  width: 1.2rem;
  height: 1px;
  background: var(--line);
}
.timeline li:last-child::before { display: none; }
.timeline h4 { font-size: 1rem; margin: 0.9rem 0 0.35em; }
.timeline p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.tl-dot {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}
.tl-1 { background: #34D399; }
.tl-2 { background: #60A5FA; }
.tl-3 { background: #FBBF24; }
.tl-4 { background: #F472B6; }

/* Duration band */
.duration-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.14), rgba(217, 70, 239, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-lg);
}
.duration-band > div { display: flex; flex-direction: column; gap: 0.15rem; }
.duration-band strong {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
}
.duration-band span { font-size: 0.88rem; color: var(--muted); }

/* Episode cards */
.ep-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.ep-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--shadow-glow);
}
.ep-card figure { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.ep-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.ep-card:hover figure img { transform: scale(1.05); }
.ep-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 7, 15, 0.25);
  opacity: 0;
  transition: opacity 0.3s;
}
.ep-card:hover .ep-play { opacity: 1; }
.ep-play svg {
  width: 54px; height: 54px;
  color: #fff;
  background: var(--grad);
  border-radius: 50%;
  padding: 14px;
  box-shadow: var(--shadow-glow);
}
.ep-body { padding: 1.2rem 1.3rem 1.4rem; }
.ep-body h3 { font-size: 1.05rem; margin-bottom: 0.15em; }
.ep-body p { margin: 0 0 0.7em; font-size: 0.88rem; color: var(--muted); }
.ep-meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

/* Galeria */
.gallery {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense; /* preenche os vãos criados pelas fotos verticais */
  gap: 0.9rem;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 2;
}
.gallery img:nth-child(2),
.gallery img:nth-child(4),
.gallery img:nth-child(6),
.gallery img:nth-child(8) { grid-row: span 2; }

/* Benefícios */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 179, 61, 0.45);
  box-shadow: 0 14px 40px -12px rgba(242, 179, 61, 0.25);
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.benefit-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.benefit-icon {
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(242, 179, 61, 0.13);
  color: var(--gold);
  margin-bottom: 1rem;
}
.benefit-icon svg { width: 22px; height: 22px; }

/* Estúdio */
.studio-media img { max-height: 620px; object-fit: cover; }
.spec-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.spec-block h3 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.32em;
  width: 1rem; height: 1rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.18) url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="%23A855F7" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="m5 13 4 4L19 7"/%3E%3C/svg%3E') center / 60% no-repeat;
}
.note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(242, 179, 61, 0.07);
  border: 1px solid rgba(242, 179, 61, 0.25);
  border-radius: 14px;
}
.note svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 0.15rem; }

/* CTA band */
.cta-band {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../img/nebula-band.webp") center / cover no-repeat;
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 7, 15, 0.78), rgba(8, 7, 15, 0.85));
}
.cta-inner { position: relative; max-width: 620px; }
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.cta-inner p { color: var(--muted); font-size: 1.08rem; margin-bottom: 2rem; }
.cta-inner .hero-actions { justify-content: center; }

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--shadow-glow);
}
.contact-card h3 { font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3em; }
.contact-card p { margin: 0 0 0.4em; font-family: var(--font-display); font-weight: 600; font-size: 1rem; overflow-wrap: anywhere; }
.contact-hint { font-size: 0.8rem; color: var(--muted); }
.contact-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.14);
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact-icon svg { width: 21px; height: 21px; }

/* ---------- 7. Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 2.5rem;
  padding-block: clamp(2.8rem, 6vw, 4rem) 2rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 22rem;
}
.footer-nav, .footer-social { display: flex; flex-direction: column; }
.footer-nav h3, .footer-social h3 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-nav a {
  padding-block: 0.32rem;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}
.footer-nav a:hover { color: var(--text); transform: translateX(3px); }
.social-row { display: flex; gap: 0.7rem; }
.social-row a {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, transform 0.25s, background-color 0.25s;
}
.social-row a:hover {
  color: #fff;
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.15);
  transform: translateY(-3px);
}
.social-row svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* Páginas internas (WordPress: page.php, index.php, 404.php) */
.page-content { padding-top: calc(var(--section-y) + 3.5rem); min-height: 60vh; }
.entry-content { max-width: 720px; color: var(--muted); }
.entry-content a { color: var(--primary); text-decoration: underline; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--text); margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius); }
.entry-content li { list-style: disc; margin-left: 1.2rem; }
.ep-body h3 a:hover { color: var(--primary); }

/* ---------- 8. Animações ---------- */
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(242, 179, 61, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(242, 179, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 179, 61, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- 9. Responsivo ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline li::before { display: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery img:nth-child(8) { display: none; }
}

@media (max-width: 860px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; margin-inline: auto; }

  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }

  .duration-band { grid-template-columns: 1fr; gap: 1.4rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .grid-4, .benefit-grid, .contact-grid, .timeline, .mv-cards, .spec-cols { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery img:nth-child(8) { display: block; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .row-head .btn { width: auto; }
}
