/* Experiência cinematográfica de rolagem (hero 3D) — cores herdadas da landing */
.cine { position: relative; background: #0e1113; color: #f7f4ee; }
.cine-stage { position: relative; height: 100svh; min-height: 520px; overflow: hidden; }
.cine-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* O vídeo cobre o poster assim que começa a tocar (o poster é o fallback). */
.cine-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  display: block; pointer-events: none; }
.cine-shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(130% 95% at 50% 8%, transparent 42%, rgba(6, 8, 9, 0.55) 100%),
    linear-gradient(180deg, rgba(6, 8, 9, 0.42), transparent 32%, transparent 68%, rgba(6, 8, 9, 0.66));
}

/* Beats de texto (HTML real sobre a cena) */
.cine-beat {
  position: absolute; inset: 0; display: grid; place-content: center; gap: 4px;
  text-align: center; padding: 24px clamp(20px, 6vw, 64px); pointer-events: none;
  opacity: 0; visibility: hidden; will-change: opacity, transform;
}
.cine-kicker {
  display: inline-block; justify-self: center; font-family: "Figtree", system-ui, sans-serif;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #ffd9a1; margin: 0 0 16px;
}
.cine-h1, .cine-h2 {
  font-family: "Fraunces", Georgia, serif; font-optical-sizing: auto; font-weight: 550;
  letter-spacing: -0.015em; line-height: 1.08; text-wrap: balance; margin: 0;
  font-size: clamp(2.3rem, 5.4vw, 4.3rem); color: #fbf9f4;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}
.cine-sub {
  font-size: clamp(1.02rem, 1.7vw, 1.3rem); color: rgba(247, 244, 238, 0.88);
  max-width: 52ch; margin: 16px auto 0; text-wrap: pretty;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.65), 0 0 2px rgba(0, 0, 0, 0.4);
}
.cine-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.cine-beat .lp-btn { pointer-events: none; }
.cine-beat.live .lp-btn, .cine-is-static .cine-beat-hero .lp-btn { pointer-events: auto; }
.cine-ghost { color: #f7f4ee; border-color: rgba(247, 244, 238, 0.4); }
.cine-ghost:hover { background: rgba(247, 244, 238, 0.1); }

/* Dica de rolagem */
.cine-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600;
  color: rgba(247, 244, 238, 0.75); margin: 0; transition: opacity 0.4s;
}
.cine-hint svg { width: 16px; height: 16px; }
@media (prefers-reduced-motion: no-preference) {
  .cine-is-live .cine-hint svg { animation: cine-bob 1.6s ease-in-out infinite; }
}
@keyframes cine-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* O texto do hero fica SEMPRE visível — antes ele sumia no modo com rolagem,
   porque os textos entravam e saíam conforme o vídeo avançava. */
.cine-beat-hero { opacity: 1; visibility: visible; }

/* Header sobre a cena escura */
.lp-header.on-dark .lp-brandname { color: #f7f4ee; }
.lp-header.on-dark .lp-nav a { color: rgba(247, 244, 238, 0.78); }
.lp-header.on-dark .lp-nav a:hover, .lp-header.on-dark .lp-nav a.active { color: #fff; background: rgba(255, 255, 255, 0.1); }
.lp-header.on-dark.solid {
  background: color-mix(in srgb, #0e1113 78%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .cine-h1, .cine-h2 { font-size: clamp(2rem, 8.6vw, 2.5rem); }
  .cine-cta { flex-direction: column; align-items: stretch; }
  .cine-cta .lp-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .cine-hint svg { animation: none; }
}
