/* ═══════════════════════════════════════════════════════════
   Creator Hub — landing
   ═══════════════════════════════════════════════════════════ */

:root {
  --radius: 1rem;

  --background:        #08070E;
  --background-2:      #0B0917;
  --foreground:        #F8F8F8;
  --card:              #16122B;
  --popover:           #16122B;
  --secondary:         #241E3C;
  --muted:             #1F1B30;
  --muted-foreground:  #9C9AAB;

  --primary:           #9B3DFF;
  --primary-glow:      #C46BFF;
  --primary-deep:      #6E1FC4;
  --primary-foreground:#F8F8F8;

  --border:            rgba(255, 255, 255, 0.10);
  --input:             rgba(255, 255, 255, 0.08);
  --ring:              #9B3DFF;

  --coral:             #FF5A5F;
  --lime:              #E5F95F;
  --brand: linear-gradient(96deg, #9B3DFF 0%, #E91E8C 48%, #FF5A5F 78%, #FF7A59 100%);

  --max-7xl:  1280px;
  --max-6xl:  1152px;
  --max-4xl:  896px;
  --max-2xl:  672px;
  --max-lg:   512px;
  --max-md:   448px;
  --max-wide: 1500px;

  --ff-head: "Sora", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 300; letter-spacing: -0.025em; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; background: none; border: 0; }
button { cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

:focus-visible { outline: 2px solid var(--primary-glow); outline-offset: 3px; border-radius: 8px; }
::selection { background: rgba(155, 61, 255, 0.35); }

/* o wordmark vive dentro da arte do hero; o h1 fica só para leitores de tela */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 10px 18px; border-radius: 999px;
  background: var(--primary); color: #fff; font-size: 14px;
  transform: translateY(-200%); transition: transform .25s ease;
}
.skip:focus { transform: none; }

/* ═══════════ COMPONENTES BASE ═══════════ */

.glass-frost {
  position: relative;
  background: linear-gradient(rgba(255,255,255,.059), rgba(255,255,255,.024), rgba(0,0,0,.122));
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    inset 0 1px rgba(255,255,255,.18),
    inset 0 -1px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.02),
    0 1px rgba(255,255,255,.04),
    0 12px 28px -14px rgba(0,0,0,.55);
}

.glass-frost-strong {
  position: relative;
  background: linear-gradient(rgba(255,255,255,.09), rgba(255,255,255,.04) 55%, rgba(17,17,17,.11), rgba(0,0,0,.18));
  border: 1px solid rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  backdrop-filter: blur(22px) saturate(1.3);
  box-shadow:
    inset 0 1px rgba(255,255,255,.22),
    inset 0 -1px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 1px rgba(255,255,255,.05),
    0 24px 60px -24px rgba(0,0,0,.7);
}

.glass-pill {
  position: relative;
  color: #C1C3D1;
  background: linear-gradient(rgba(255,255,255,.07), rgba(255,255,255,.02) 60%, rgba(0,0,0,.15));
  border: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: inset 0 1px rgba(255,255,255,.2), inset 0 -1px rgba(0,0,0,.35);
  transition: color .2s, border-color .2s, box-shadow .25s, transform .15s;
}
.glass-pill:hover {
  color: #fff;
  border-color: rgba(155,61,255,.35);
  box-shadow: inset 0 1px rgba(255,255,255,.28), 0 8px 22px -10px rgba(155,61,255,.5);
}

.btn-3d {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  color: #FCFCFC;
  background-image: linear-gradient(#B863FF, #9B3DFF 55%, #6E1FC4);
  transition: transform .18s, box-shadow .25s, filter .2s;
  box-shadow:
    inset 0 1px rgba(255,255,255,.45),
    inset 0 -1px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 1px rgba(255,255,255,.18),
    0 4px 10px -2px rgba(110,31,196,.55),
    0 14px 28px -10px rgba(110,31,196,.6);
}
.btn-3d::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,.22), transparent 45%);
}
.btn-3d::after {
  content: ""; position: absolute; top: 0; left: -75%;
  width: 55%; height: 100%; z-index: 1;
  pointer-events: none;
  transform: skew(-22deg);
  transition: left .85s;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0) 30%, rgba(255,255,255,.45), rgba(255,255,255,0) 70%, transparent);
}
.btn-3d:hover::after { left: 125%; }
.btn-3d:hover {
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px rgba(255,255,255,.5), inset 0 -1px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.1), 0 1px rgba(255,255,255,.2),
    0 8px 18px -4px rgba(89,57,228,.65), 0 22px 40px -14px rgba(72,48,201,.7);
}
.btn-3d:active { filter: brightness(.96); transform: translateY(1px); }
.btn-3d > * { position: relative; z-index: 2; }

.g-txt {
  background: linear-gradient(to right, var(--primary), var(--primary), rgba(155,61,255,.7));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.g-brand {
  background: var(--brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ═══════════ LAYOUT ═══════════ */

.sec {
  position: relative; z-index: 10;
  margin-inline: auto;
  width: 100%;
  max-width: var(--max-7xl);
  padding: 64px 16px;
}
.sec--wide { max-width: var(--max-wide); }
.sec--4xl  { max-width: var(--max-4xl); }
.sec--nb   { padding-top: 0; }

.head { margin-inline: auto; max-width: var(--max-2xl); text-align: center; }
.head__k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }
.head__t { margin-top: 12px; font-size: 30px; line-height: 1.15; }
.head__s { margin-top: 16px; font-size: 14px; line-height: 1.7; color: var(--muted-foreground); }

/* ═══════════ HEADER ═══════════ */

.topwrap {
  position: fixed; z-index: 50;
  top: 12px; left: 0; right: 0;
  padding-inline: 16px;
  display: flex; justify-content: center;
  pointer-events: none;
}
.top {
  pointer-events: auto;
  width: 100%; max-width: 1180px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,.6);
  transition: all .3s ease-out;
}
.top.is-stuck {
  background: rgba(0,0,0,.72);
  box-shadow: 0 10px 40px -12px rgba(0,0,0,.8);
}
.top__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 16px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__m {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(150deg, #B863FF, #9B3DFF 55%, #6E1FC4);
  box-shadow: 0 6px 16px -6px rgba(155,61,255,.9), inset 0 1px 0 rgba(255,255,255,.35);
}
.brand__m svg { width: 17px; height: 17px; }
.brand__m[hidden] { display: none; }

/* logo em arquivo — assume o lugar do losango quando existe */
.brand__l {
  width: 30px; height: 30px; flex: none;
  object-fit: contain;
  border-radius: 8px;
}
.brand__t { font-family: var(--ff-head); font-size: 15px; font-weight: 500; letter-spacing: -0.02em; }

.top__nav { display: none; align-items: center; gap: 28px; }
.top__nav a {
  position: relative;
  font-size: 14px; color: rgba(255,255,255,.8);
  transition: color .2s;
  overflow: hidden;
  display: inline-grid;
}
.top__nav a span { display: block; transition: transform .3s ease-out; }
.top__nav a span + span { position: absolute; inset: 0; transform: translateY(100%); color: #fff; }
.top__nav a:hover span:first-child { transform: translateY(-100%); }
.top__nav a:hover span + span { transform: translateY(0); }
.top__nav a.is-on { color: #fff; }

.top__cta { display: none; align-items: center; gap: 8px; }
.lnk-entrar {
  border-radius: 999px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  padding: 8px 16px; font-size: 14px; color: rgba(255,255,255,.8);
  transition: background .2s, color .2s;
}
.lnk-entrar:hover { background: rgba(255,255,255,.09); color: #fff; }
.lnk-assinar {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px; padding: 8px 16px; font-size: 14px;
}
.lnk-assinar svg { width: 14px; height: 14px; }

.burger {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
}
.burger svg { width: 18px; height: 18px; }

.top__m {
  display: grid; grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease-out;
}
.top__m.is-open { grid-template-rows: 1fr; }
.top__m > div { min-height: 0; }
.top__m-in { display: flex; flex-direction: column; gap: 12px; padding: 4px 20px 16px; }
.top__m-in a { font-size: 14px; color: rgba(255,255,255,.8); }
.top__m-act { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.top__m-act > * { flex: 1; text-align: center; justify-content: center; }

/* ═══════════ HERO ═══════════ */

.hero { position: relative; z-index: 10; width: 100%; }
.hero__wrap { position: relative; width: 100%; overflow: hidden; }

/* a moldura recorta e NÃO se move; só a imagem dentro dela desliza,
   com escala sobrando para nunca revelar borda */
.hero__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero__img {
  display: block;
  width: 100%; max-width: none;
  height: auto;
  transform-origin: 50% 45%;
  transform: scale(1.08);
  will-change: transform;
  pointer-events: none; user-select: none;
  backface-visibility: hidden;
}

.hero__fade {
  pointer-events: none; position: absolute; left: 0; right: 0; bottom: 0;
  height: 42%;
  z-index: 3;
  background: linear-gradient(to top,
    var(--background) 0%,
    rgba(8,7,14,.92) 22%,
    rgba(8,7,14,.55) 55%,
    transparent 100%);
}

.hero__act {
  position: absolute; left: 0; right: 0; bottom: 32px; z-index: 10;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; padding: 16px;
  will-change: transform, opacity;
}
.hero__act .btn-3d,
.hero__act .glass-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 8px 14px; font-size: 12px;
}
.hero__act svg { width: 15px; height: 15px; }

/* ═══════════ FAIXA DE PARCEIROS ═══════════ */

.strip {
  position: relative; z-index: 30;
  margin-top: -1px;
  width: 100%;
  border-block: 1px solid rgba(255,255,255,.1);
  padding-block: 20px;
  background: linear-gradient(180deg, rgba(23,20,42,.95), rgba(16,14,30,.95));
}
.strip__in { position: relative; margin-inline: auto; width: 100%; max-width: var(--max-7xl); padding-inline: 24px; }
.strip__k {
  text-align: center; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.22em; font-weight: 300;
  color: rgba(255,255,255,.6); margin-bottom: 24px;
}
.strip__rail { position: relative; }
.strip__rail::before,
.strip__rail::after {
  content: ""; pointer-events: none; position: absolute; top: 0; bottom: 0;
  width: 96px; z-index: 10;
}
.strip__rail::before { left: 0;  background: linear-gradient(90deg, rgba(18,15,32,.95), transparent); }
.strip__rail::after  { right: 0; background: linear-gradient(270deg, rgba(18,15,32,.95), transparent); }

/* dois trilhos idênticos lado a lado: quando o primeiro sai de cena,
   o segundo já ocupou o lugar dele — a emenda nunca aparece */
.mq { display: flex; overflow: hidden; }
.mq__t {
  display: flex; flex: none; align-items: center;
  gap: 72px; padding-right: 72px;
  animation: marquee 38s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.mq__i {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; opacity: .8;
  transition: opacity .2s;
  font-size: 15px; font-weight: 500; letter-spacing: -.01em;
  color: #fff;
}
.mq__i:hover { opacity: 1; }
.mq__i svg { height: 22px; width: auto; }

/* ═══════════ O CICLO ═══════════ */

.cyc {
  position: relative;
  margin-top: 56px;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
.cyc__rail {
  position: absolute; left: 21px; top: 8px; bottom: 8px;
  width: 2px; border-radius: 2px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.cyc__rail i {
  display: block; width: 100%; height: 0;
  background: var(--brand);
  box-shadow: 0 0 14px rgba(155,61,255,.8);
  transition: height .1s linear;
}

.cy {
  position: relative;
  display: grid; grid-template-columns: 44px 1fr; gap: 16px;
  align-items: start;
}
.cy__n {
  position: relative; z-index: 2;
  width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--muted-foreground);
  background: var(--background);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  transition: all .45s cubic-bezier(.16,1,.3,1);
}
.cy.on .cy__n {
  color: #fff;
  background: linear-gradient(150deg, #B863FF, #9B3DFF 55%, #6E1FC4);
  box-shadow: 0 0 0 1px rgba(196,107,255,.5), 0 0 26px -4px rgba(155,61,255,.9);
  transform: scale(1.08);
}
.cy__c {
  border-radius: 16px; padding: 20px 22px;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s;
}
.cy.on .cy__c { transform: translateX(6px); box-shadow: 0 20px 50px -30px rgba(155,61,255,.7); }
.cy__k {
  font-family: var(--ff-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .2em;
  color: rgba(155,61,255,.8);
}
.cy__t { margin-top: 8px; font-size: 20px; }
.cy__d { margin-top: 8px; font-size: 14px; line-height: 1.7; color: var(--muted-foreground); }
.cy__o {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.55);
}
.cy__o b { color: var(--primary-glow); font-weight: 500; }
.cy__o svg { width: 14px; height: 14px; flex: none; color: var(--primary); }

/* ═══════════ POR DENTRO — prévia da plataforma ═══════════ */

.reel {
  margin-top: 56px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(38,28,70,.5), rgba(12,10,26,.72));
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9), 0 0 100px -56px var(--primary);
  padding: 12px;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.reel__frame {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #06050C;
}

/* gravação real — quando existe, substitui a prévia */
.reel__vid { display: none; width: 100%; height: auto; background: #06050C; }
.reel.has-vid .reel__vid   { display: block; }
.reel.has-vid .reel__stage { display: none; }

.reel__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  background: rgba(16,12,34,.85);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.reel__d { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.12); }
.reel__d:first-child { background: rgba(255,90,95,.5); }
.reel__d:nth-child(2) { background: rgba(212,175,55,.45); }
.reel__u {
  margin-left: 10px;
  font-family: var(--ff-mono); font-size: 11px;
  color: rgba(255,255,255,.32);
}
.reel__u i { font-style: normal; color: var(--primary-glow); opacity: .9; }
.reel__rec {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; color: rgba(255,255,255,.2);
  transition: color .25s;
}
.reel__rec::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.reel[data-state="playing"] .reel__rec { color: var(--coral); }
.reel[data-state="playing"] .reel__rec::before { animation: pisca 1.1s steps(1) infinite; }
@keyframes pisca { 50% { opacity: .15; } }

.reel__stage {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  height: clamp(300px, 62vw, 380px);
  background: radial-gradient(120% 90% at 20% 0%, rgba(74,26,128,.3), transparent 62%), #06050C;
}

.rl-rail {
  display: none;
  flex-direction: column;
  padding: 14px 10px;
  border-right: 1px solid rgba(255,255,255,.05);
  background: rgba(13,10,28,.55);
}
.rl-logo {
  width: 28px; height: 28px; margin: 0 0 14px 5px;
  display: grid; place-items: center;
  border-radius: 9px; color: var(--primary-glow);
  background: rgba(155,61,255,.14);
  box-shadow: inset 0 0 0 1px rgba(155,61,255,.3);
}
.rl-logo svg { width: 16px; height: 16px; }
.rl-nav { display: flex; flex-direction: column; gap: 1px; }
.rl-nav__g {
  font-size: 8.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.18); padding: 11px 7px 4px;
}
.rl-nav__i {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; border-radius: 8px;
  font-size: 11px; color: rgba(255,255,255,.42);
  transition: color .3s, background .3s;
}
.rl-nav__i svg { width: 13px; height: 13px; flex: none; }
.rl-nav__i.on { color: #fff; background: rgba(155,61,255,.15); box-shadow: inset 0 0 0 1px rgba(155,61,255,.3); }
.rl-nav__i.on::before {
  content: ""; position: absolute; left: -1px; top: 24%; bottom: 24%;
  width: 2px; border-radius: 2px; background: var(--primary-glow);
}
.rl-nav__p {
  margin-left: auto; font-size: 8.5px; font-weight: 700;
  padding: 1px 5px; border-radius: 999px;
  background: rgba(155,61,255,.18); color: var(--primary-glow);
}
.rl-me {
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: 7px;
  font-size: 10.5px; color: rgba(255,255,255,.7);
}
.rl-me i {
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  display: grid; place-items: center; font-style: normal;
  font-size: 9px; font-weight: 700; color: #fff;
  background: var(--brand);
}

.rl-scenes { position: relative; overflow: hidden; }
.rl-s {
  position: absolute; inset: 0;
  padding: 18px 20px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  transition: opacity .42s cubic-bezier(.16,1,.3,1), transform .42s cubic-bezier(.16,1,.3,1);
}
.rl-s.on { opacity: 1; transform: none; }

.rl-k {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(232,220,255,.9);
  background: rgba(155,61,255,.14);
  box-shadow: inset 0 0 0 1px rgba(155,61,255,.3);
}
.rl-t { margin-top: 9px; font-size: clamp(16px, 2.2vw, 23px); }
.rl-d { margin-top: 4px; font-size: 11.5px; line-height: 1.5; color: var(--muted-foreground); max-width: 440px; }
.rl-b { margin-top: 14px; flex: 1; min-height: 0; }

.rl-chips { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 11px; }
.rl-chip {
  padding: 4px 10px; border-radius: 999px; font-size: 10px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
  transition: all .3s;
}
.rl-chip.on { background: var(--primary); color: #fff; box-shadow: none; font-weight: 500; }

.rl-g { display: grid; gap: 9px; }
.rl-g4 { grid-template-columns: repeat(4, 1fr); }
.rl-g3 { grid-template-columns: repeat(3, 1fr); }

.rc {
  border-radius: 11px; padding: 7px;
  background: rgba(255,255,255,.028);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
  transition: box-shadow .3s, background .3s, transform .3s;
}
.rc.pick { background: rgba(155,61,255,.1); box-shadow: inset 0 0 0 1px rgba(155,61,255,.45); transform: translateY(-3px); }

.rc__th {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.rc__th--tall { aspect-ratio: 9/13; }
.rc__th::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  background-size: 200% 100%;
  animation: varre 1.15s linear infinite;
}
@keyframes varre { to { background-position: -200% 0; } }

.rc__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  filter: blur(9px);
  transition: opacity .5s ease-out, filter .6s ease-out, transform .6s ease-out;
}
.rc.ok .rc__th::after { animation: none; opacity: 0; transition: opacity .3s; }
.rc.ok .rc__img { opacity: 1; filter: blur(0); transform: none; }

/* os seis estilos do Estúdio, aplicados sobre o mesmo produto */
.rc.ok .rc__img[data-est="clean"]    { filter: brightness(1.16) saturate(.72) contrast(.95); }
.rc.ok .rc__img[data-est="editorial"]{ filter: contrast(1.5) brightness(.82) saturate(1.15); }
.rc.ok .rc__img[data-est="cozy"]     { filter: sepia(.42) saturate(1.35) brightness(1.06) hue-rotate(-14deg); }
.rc.ok .rc__img[data-est="street"]   { filter: saturate(.55) contrast(1.22) brightness(.9); }
.rc.ok .rc__img[data-est="showroom"] { filter: brightness(1.28) saturate(.85) contrast(.88); }
.rc.ok .rc__img[data-est="golden"]   { filter: sepia(.6) saturate(1.5) brightness(1.1) hue-rotate(-24deg); }

.rc__tag {
  position: absolute; top: 4px; left: 4px; z-index: 2;
  padding: 1px 6px; border-radius: 999px;
  font-size: 7.5px; font-weight: 700; letter-spacing: .06em;
  background: rgba(0,0,0,.62); color: var(--lime);
  opacity: 0; transition: opacity .4s .15s;
}
.rc.ok .rc__tag { opacity: 1; }

.rc__n { font-size: 9.5px; line-height: 1.3; color: rgba(255,255,255,.85); }
.rc__m { font-size: 8.5px; color: rgba(255,255,255,.35); }
.rc__bar { height: 3px; border-radius: 3px; background: rgba(255,255,255,.07); overflow: hidden; }
.rc__bar i { display: block; height: 100%; width: 0; border-radius: 3px; background: var(--brand); transition: width .8s cubic-bezier(.16,1,.3,1); }
.rc.ok .rc__bar i { width: var(--w, 60%); }
.rc__txt { opacity: 0; transition: opacity .35s .1s; }
.rc.ok .rc__txt { opacity: 1; }

.rl-steps { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.rl-step {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 9.5px; color: rgba(255,255,255,.4);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
  transition: all .35s;
}
.rl-step i {
  width: 14px; height: 14px; border-radius: 999px; flex: none;
  display: grid; place-items: center; font-style: normal;
  font-family: var(--ff-mono); font-size: 8px;
  background: rgba(255,255,255,.07);
}
.rl-step.on { color: #fff; background: rgba(155,61,255,.14); box-shadow: inset 0 0 0 1px rgba(155,61,255,.4); }
.rl-step.on i { background: var(--primary); color: #fff; }
.rl-step.done i { background: rgba(155,61,255,.3); color: var(--primary-glow); }

.rl-render { display: grid; grid-template-columns: 1fr; gap: 14px; height: 100%; align-items: center; }
.rl-log { display: flex; flex-direction: column; gap: 7px; }
.rl-log__i {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; color: rgba(255,255,255,.35);
  opacity: .35; transform: translateX(-6px);
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.rl-log__i.on { opacity: 1; transform: none; color: rgba(255,255,255,.8); }
.rl-log__i i {
  width: 16px; height: 16px; border-radius: 999px; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  transition: background .3s;
}
.rl-log__i i svg { width: 9px; height: 9px; opacity: 0; transition: opacity .3s; }
.rl-log__i.on i { background: rgba(155,61,255,.2); color: var(--primary-glow); }
.rl-log__i.on i svg { opacity: 1; }

.rl-prog__h { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.rl-prog__t { height: 5px; border-radius: 4px; background: rgba(255,255,255,.07); overflow: hidden; }
.rl-prog__t i { display: block; height: 100%; width: 0; border-radius: 4px; background: var(--brand); }
.rl-s.on .rl-prog__t i { animation: enche 4.4s cubic-bezier(.3,.8,.4,1) .3s forwards; }
@keyframes enche { to { width: 100%; } }

.rl-phone {
  position: relative; overflow: hidden;
  aspect-ratio: 9/16; max-height: 100%;
  margin-inline: auto;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 24px 50px -24px rgba(0,0,0,.9);
  background: rgba(255,255,255,.04);
}
.rl-phone__i {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; filter: blur(14px); transform: scale(1.08);
  transition: opacity .7s ease-out, filter .9s ease-out, transform .9s ease-out;
}
.rl-phone.ok .rl-phone__i { opacity: 1; filter: blur(0); transform: none; }
.rl-phone::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  background-size: 200% 100%;
  animation: varre 1.15s linear infinite;
}
.rl-phone.ok::after { animation: none; opacity: 0; transition: opacity .4s; }
.rl-phone__b {
  position: absolute; left: 8px; right: 8px; bottom: 8px; z-index: 2;
  padding: 6px 9px; border-radius: 8px;
  background: rgba(6,5,12,.7);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 9px; color: rgba(255,255,255,.75); line-height: 1.4;
  opacity: 0; transition: opacity .5s .3s;
}
.rl-phone.ok .rl-phone__b { opacity: 1; }

.rl-done {
  border-radius: 12px; padding: 12px 14px;
  background: rgba(155,61,255,.1);
  box-shadow: inset 0 0 0 1px rgba(155,61,255,.3);
  font-size: 11px; line-height: 1.6; color: rgba(232,220,255,.9);
}
.rl-done b { color: #fff; font-weight: 500; }

.rl-cursor {
  position: absolute; top: 0; left: 0; z-index: 20;
  width: 19px; height: 19px;
  opacity: 0; pointer-events: none;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.65));
  transition: transform .78s cubic-bezier(.16,1,.3,1), opacity .25s;
}
.rl-cursor.on { opacity: 1; }
.rl-cursor.tap::after {
  content: ""; position: absolute; top: 1px; left: 1px;
  width: 20px; height: 20px; margin: -10px 0 0 -10px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--primary-glow);
  animation: toque .5s cubic-bezier(.16,1,.3,1);
}
@keyframes toque {
  from { transform: scale(.2); opacity: .9; }
  to   { transform: scale(2.6); opacity: 0; }
}

.reel__ctrl { display: flex; align-items: center; gap: 13px; padding: 13px 6px 4px; }
.reel__pp {
  width: 38px; height: 38px; flex: none;
  border-radius: 999px; display: grid; place-items: center;
  color: #fff;
  background-image: linear-gradient(#B863FF, #9B3DFF 55%, #6E1FC4);
  box-shadow: 0 10px 24px -12px rgba(155,61,255,.9), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s;
}
.reel__pp:hover { transform: scale(1.06); }
.reel__pp svg { width: 18px; height: 18px; }
.reel__pp .ic-pause { display: none; }
.reel[data-state="playing"] .reel__pp .ic-play { display: none; }
.reel[data-state="playing"] .reel__pp .ic-pause { display: block; }

.reel__mid { flex: 1; min-width: 0; }
.reel__chaps { display: flex; gap: 4px; margin-bottom: 8px; overflow-x: auto; scrollbar-width: none; }
.reel__chaps::-webkit-scrollbar { display: none; }
.reel__chap {
  padding: 4px 11px; border-radius: 999px;
  font-size: 11px; white-space: nowrap;
  color: rgba(255,255,255,.4);
  transition: all .25s;
}
.reel__chap:hover { color: rgba(255,255,255,.7); background: rgba(255,255,255,.04); }
.reel__chap.on { color: #fff; background: rgba(155,61,255,.15); box-shadow: inset 0 0 0 1px rgba(155,61,255,.35); }

.reel__track { height: 4px; border-radius: 4px; background: rgba(255,255,255,.07); overflow: hidden; }
.reel__track i { display: block; height: 100%; width: 0; border-radius: 4px; background: var(--brand); }

.reel__t { font-family: var(--ff-mono); font-size: 11px; color: rgba(255,255,255,.35); white-space: nowrap; }
.reel__t b { color: rgba(255,255,255,.6); font-weight: 400; }

.reel__cap {
  padding: 4px 6px 4px;
  font-size: 12.5px; color: var(--muted-foreground);
  min-height: 19px;
}

/* ═══════════ A CONTA ═══════════ */

.vs {
  margin-top: 56px;
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.vs__c { border-radius: 20px; padding: 28px; position: relative; overflow: hidden; }
.vs__c--novo {
  box-shadow: 0 0 0 1px rgba(155,61,255,.3), 0 30px 70px -34px rgba(155,61,255,.55);
}
.vs__k {
  font-family: var(--ff-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--muted-foreground);
}
.vs__c--novo .vs__k { color: rgba(196,107,255,.85); }
.vs__t { margin-top: 10px; font-size: 20px; }
.vs__l { margin-top: 20px; display: flex; flex-direction: column; gap: 2px; }
.vs__r {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13.5px;
}
.vs__r:last-child { border-bottom: 0; }
.vs__r span { color: var(--muted-foreground); }
.vs__r b { font-weight: 400; font-family: var(--ff-mono); font-size: 13px; white-space: nowrap; }
.vs__c--velho .vs__r b { color: rgba(255,255,255,.7); }
.vs__c--novo  .vs__r b { color: var(--primary-glow); }
.vs__r.zero b { color: rgba(255,255,255,.28); }

.vs__tot {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.vs__tot span { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-foreground); }
.vs__tot b {
  font-family: var(--ff-head); font-weight: 300;
  font-size: clamp(28px, 4.4vw, 40px); letter-spacing: -.035em; line-height: 1;
}
.vs__c--velho .vs__tot b { color: rgba(255,255,255,.82); }
.vs__c--novo .vs__tot b {
  background: var(--brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vs__hrs { margin-top: 10px; font-size: 12.5px; color: var(--muted-foreground); }
.vs__hrs b { color: var(--primary-glow); font-weight: 500; }

.vs__note {
  margin: 22px auto 0; max-width: var(--max-2xl);
  text-align: center; font-size: 12px; line-height: 1.7; color: rgba(156,154,171,.65);
}

/* ═══════════ TICKER DO FEED ═══════════ */

.tick {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.tick__i {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 999px; padding: 9px 16px;
  font-size: 13px;
}
.tick__i b {
  font-family: var(--ff-head); font-weight: 400; font-size: 15px;
  background: var(--brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tick__d {
  width: 6px; height: 6px; border-radius: 999px; flex: none;
  background: var(--primary-glow);
  box-shadow: 0 0 0 0 rgba(196,107,255,.6);
  animation: pip 2.4s cubic-bezier(.22,.61,.36,1) infinite;
}
@keyframes pip {
  0%   { box-shadow: 0 0 0 0 rgba(196,107,255,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(196,107,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,107,255,0); }
}

/* ═══════════ GALERIA ═══════════ */

.gal { margin-top: 56px; position: relative; }
/* ~75 px/s: corre sem parecer parado e ainda dá pra ler a legenda.
   Não pausa no hover — o trilho segue sempre. */
.gal .mq__t { gap: 20px; padding-right: 20px; animation-duration: 32s; }
.gal__c {
  position: relative; flex: none;
  width: 220px; aspect-ratio: 9/16;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--card);
  transition: transform .5s ease-out, border-color .3s;
}
.gal__c:hover { transform: translateY(-6px); border-color: rgba(155,61,255,.4); }
.gal__ph { position: absolute; inset: 0; z-index: 0; }
.gal__c video, .gal__c img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.gal__c::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 45%);
}
.gal__lb {
  position: absolute; left: 12px; right: 12px; bottom: 11px; z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
}
.gal__lb b { font-size: 11.5px; font-weight: 500; color: #fff; letter-spacing: -.01em; }
.gal__lb span { font-size: 9.5px; line-height: 1.35; color: rgba(255,255,255,.62); }
.gal__rail { position: relative; }
.gal__rail::before, .gal__rail::after {
  content: ""; pointer-events: none; position: absolute; top: 0; bottom: 0;
  width: 110px; z-index: 10;
}
.gal__rail::before { left: 0;  background: linear-gradient(90deg, var(--background), transparent); }
.gal__rail::after  { right: 0; background: linear-gradient(270deg, var(--background), transparent); }

/* ═══════════ FAIXA DE CUPOM (topo) ═══════════ */

.faixa {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  background: linear-gradient(96deg, #9B3DFF, #7C2CC8);
  box-shadow: 0 8px 30px -10px rgba(155,61,255,.7);
  animation: faixaEntra .45s cubic-bezier(.16,1,.3,1);
}
@keyframes faixaEntra { from { transform: translateY(-100%); } to { transform: none; } }

.faixa__in {
  margin-inline: auto; max-width: var(--max-7xl);
  padding: 11px 44px 11px 24px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.faixa__t {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,.92);
}
.faixa__t svg { width: 16px; height: 16px; flex: none; }
.faixa__t b {
  font-weight: 500; letter-spacing: .04em;
  padding: 2px 8px; border-radius: 5px;
  background: rgba(255,255,255,.16);
}
.faixa__n {
  font-family: var(--ff-mono); font-size: 15px; font-weight: 500;
  letter-spacing: .06em; color: #fff;
  padding: 2px 9px; border-radius: 5px;
  background: rgba(0,0,0,.24);
  font-variant-numeric: tabular-nums;
}
.faixa__b {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 999px; padding: 8px 17px;
  font-size: 13.5px; font-weight: 500;
  background: #fff; color: #6E1FC4;
  transition: transform .18s, box-shadow .2s;
}
.faixa__b:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -8px rgba(0,0,0,.5); }
.faixa__b svg { width: 14px; height: 14px; }
.faixa__x {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 999px; color: rgba(255,255,255,.7);
  transition: color .2s, background .2s;
}
.faixa__x:hover { color: #fff; background: rgba(255,255,255,.14); }
.faixa__x svg { width: 15px; height: 15px; }

.faixa--fim { background: linear-gradient(96deg, #3A3350, #2A2440); box-shadow: none; }
.faixa--fim .faixa__n { color: rgba(255,255,255,.55); }

/* com a faixa no ar, o header desce para não cobrir */
body.tem-faixa .topwrap { top: 58px; }

@media (max-width: 720px) {
  .faixa__in { padding: 10px 40px 10px 18px; gap: 10px; }
  .faixa__t { font-size: 13px; }
  .faixa__b { margin-left: 0; padding: 7px 14px; font-size: 12.5px; }
  body.tem-faixa .topwrap { top: 84px; }
}

/* ═══════════ PLANOS ═══════════ */

/* ── área do cupom: campo, ou cupom aplicado ── */
.cparea { margin-top: 40px; max-width: 520px; margin-inline: auto; }

/* campo */
.cp {
  display: flex; align-items: center; gap: 8px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding: 6px 6px 6px 16px;
  transition: border-color .25s, background .25s;
}
.cp:focus-within { border-color: rgba(155,61,255,.45); }
.cp > svg, .cp__i svg { width: 17px; height: 17px; flex: none; color: var(--muted-foreground); }
.cp input {
  flex: 1; min-width: 0; font-size: 14px;
  text-transform: uppercase; letter-spacing: .04em;
}
.cp input::placeholder { color: rgba(156,154,171,.7); text-transform: none; letter-spacing: 0; }
.cp input:focus { outline: none; }
.cp button[type="submit"] {
  height: 36px; border-radius: 999px; padding-inline: 18px;
  font-size: 12.5px; font-weight: 500; color: #fff;
  background: linear-gradient(135deg, #A855F7, #7C2CC8);
  transition: filter .2s;
}
.cp button[type="submit"]:hover { filter: brightness(1.08); }
.cp__msg { margin-top: 10px; font-size: 12.5px; text-align: center; color: var(--primary-glow); min-height: 18px; }

.cp--erro { border-color: rgba(255,90,95,.6); animation: tremer .5s; }
@keyframes tremer {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* cupom aplicado */
.cp--ok {
  position: relative;
  padding: 14px 52px 14px 18px;
  border-radius: 18px;
  border-color: rgba(155,61,255,.45);
  background: rgba(155,61,255,.07);
  box-shadow: 0 0 34px -18px rgba(155,61,255,.9);
  animation: cpEntra .4s cubic-bezier(.16,1,.3,1);
}
@keyframes cpEntra { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.cp--ok .cp__i {
  display: grid; place-items: center; flex: none;
  width: 34px; height: 34px;
}
.cp--ok .cp__i svg { width: 20px; height: 20px; color: var(--primary-glow); }
.cp__d { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.cp__k {
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-foreground);
}
.cp__c {
  font-family: var(--ff-mono); font-size: 17px; font-weight: 500;
  letter-spacing: .06em; color: #fff;
}
.cp__x {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 999px; color: var(--muted-foreground);
  transition: color .2s, background .2s;
}
.cp__x:hover { color: #fff; background: rgba(255,255,255,.1); }
.cp__x svg { width: 16px; height: 16px; }

/* o que o cupom libera */
.cpg {
  margin-top: 10px;
  border-radius: 18px; padding: 16px 18px;
  border: 1px solid rgba(155,61,255,.22);
  background: rgba(155,61,255,.05);
  text-align: left;
  animation: cpEntra .4s cubic-bezier(.16,1,.3,1) .06s both;
}
.cpg__t {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.55; color: rgba(232,220,255,.9);
}
.cpg__t svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--primary-glow); }
.cpg__l {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 9px;
}
.cpg__l li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted-foreground);
}
.cpg__l li svg { width: 15px; height: 15px; flex: none; color: var(--primary); }
.cpg__l b { color: #fff; font-weight: 500; }

.plans {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  max-width: var(--max-6xl); margin-inline: auto;
}
.plan {
  position: relative; width: 100%;
  border-radius: 16px; padding: 28px;
  transition: transform .5s, box-shadow .5s;
}
.plan:hover { transform: translateY(-4px); }
.plan--hi { box-shadow: 0 0 0 1px rgba(155,61,255,.35), 0 30px 70px -30px rgba(155,61,255,.6); }
.plan__pop {
  position: absolute; top: -11px; left: 28px;
  border-radius: 999px; padding: 4px 12px;
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: linear-gradient(135deg, #A855F7, #7C2CC8);
  box-shadow: 0 8px 20px -10px rgba(155,61,255,.9);
}
.plan__n { font-size: 18px; }
.plan__d { margin-top: 4px; font-size: 14px; color: var(--muted-foreground); }
.plan__p { margin-top: 24px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan__p b { font-size: 36px; font-weight: 300; letter-spacing: -.03em; font-family: var(--ff-head); }
.plan__p s { font-size: 15px; color: rgba(156,154,171,.55); text-decoration-thickness: 1px; }
.plan__p span { font-size: 14px; color: var(--muted-foreground); }

/* selo de desconto, só com cupom aplicado */
.plan__off {
  margin-top: 8px; font-size: 12.5px;
  color: var(--primary-glow);
}
.plan__off b { font-weight: 600; letter-spacing: .03em; }
.plan__u { margin-top: 6px; font-size: 13px; color: var(--muted-foreground); }

/* linha de créditos: limitada por padrão, liberada com cupom */
.plan__cred {
  margin-top: 18px;
  display: flex; align-items: flex-start; gap: 9px;
  border-radius: 12px; padding: 11px 13px;
  font-size: 12.5px; line-height: 1.55;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
  transition: background .3s, box-shadow .3s, color .3s;
}
.plan__cred svg { width: 15px; height: 15px; flex: none; margin-top: 1px; color: var(--muted-foreground); }
.plan__cred--solto {
  color: rgba(232,220,255,.95);
  background: rgba(155,61,255,.12);
  box-shadow: inset 0 0 0 1px rgba(155,61,255,.35);
}
.plan__cred--solto svg { color: var(--primary-glow); }
.plan__l { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.plan__l li { display: flex; align-items: flex-start; gap: 8px; }
.plan__l li svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--primary); }
.plan__l li.hi {
  flex-wrap: wrap; border-radius: 12px;
  border: 1px solid rgba(155,61,255,.3);
  background: rgba(155,61,255,.1);
  padding: 6px 10px; font-size: 11px; line-height: 1.6;
  box-shadow: 0 8px 24px -12px rgba(155,61,255,.35);
}
.plan .btn-3d, .plan .glass-pill {
  margin-top: 24px; width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 12px 20px; font-size: 14px;
}
.plans__note {
  margin: 24px auto 0; max-width: var(--max-2xl);
  text-align: center; font-size: 12px; line-height: 1.7; color: var(--muted-foreground);
}
.plans__note a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════ FAQ ═══════════ */

.faq { margin-top: 56px; display: flex; flex-direction: column; gap: 10px; }
.q { border-radius: 16px; overflow: hidden; transition: border-color .25s; }
.q__b {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; text-align: left;
  font-size: 15px; color: rgba(255,255,255,.92);
  transition: color .2s;
}
.q__b:hover { color: #fff; }
.q__x {
  margin-left: auto; flex: none; width: 18px; height: 18px;
  color: var(--muted-foreground);
  transition: transform .3s ease-out, color .2s;
}
.q.is-open .q__x { transform: rotate(45deg); color: var(--primary-glow); }
.q__p { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease-out; }
.q.is-open .q__p { grid-template-rows: 1fr; }
.q__c { overflow: hidden; }
.q__c > div { padding: 0 22px 20px; font-size: 14px; line-height: 1.75; color: var(--muted-foreground); }

/* ═══════════ CTA FINAL ═══════════ */

.end { display: grid; grid-template-columns: 1fr; align-items: center; gap: 40px; }
.end__t { font-size: 30px; line-height: 1.15; }
.end__s { margin-top: 20px; font-size: 14px; line-height: 1.7; color: var(--muted-foreground); }
.end__act { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.end__act .btn-3d, .end__act .glass-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 12px 24px; font-size: 14px;
}
.end__act svg { width: 15px; height: 15px; }
.end__l { display: flex; flex-direction: column; gap: 12px; }
.end__l li {
  display: flex; align-items: center; gap: 12px;
  border-radius: 16px; padding: 12px 16px; font-size: 14px;
}
.end__l svg { width: 16px; height: 16px; flex: none; color: var(--primary); }

/* ═══════════ FOOTER ═══════════ */

.foot { position: relative; z-index: 10; margin-inline: auto; width: 100%; max-width: var(--max-7xl); padding: 0 24px 40px; }
.foot__in {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px; color: var(--muted-foreground);
}
.foot__b { display: flex; align-items: center; gap: 12px; }
.foot__n { display: flex; align-items: center; gap: 24px; }
.foot__n a { transition: color .2s; }
.foot__n a:hover { color: var(--foreground); }

/* ═══════════ REVEAL ═══════════ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.rv.in { opacity: 1; transform: none; }

/* ═══════════ BREAKPOINTS ═══════════ */

@media (min-width: 640px) {
  .sec { padding-inline: 24px; }
  .hero__act .btn-3d, .hero__act .glass-pill { padding: 12px 24px; font-size: 14px; }
  .hero__act { padding: 24px; }
  .gal__c { width: 260px; }
  .plan { width: 340px; }
  .foot__in { flex-direction: row; }
}

@media (min-width: 768px) {
  .sec { padding-block: 96px; }
  .strip { padding-block: 24px; }
  .head__t, .end__t { font-size: 48px; }
  .head__s { font-size: 14px; }
  .hero__act { bottom: 80px; padding: 40px; }
  .top__nav { display: flex; }
  .top__cta { display: flex; }
  .burger { display: none; }
  .top__m { display: none; }
  .top__in { padding: 10px 20px; }
  .end { grid-template-columns: 1fr 1fr; }

  /* ciclo em duas colunas alternadas */
  .cyc { grid-template-columns: 1fr 1fr; column-gap: 40px; row-gap: 28px; }
  .cyc__rail { left: 50%; transform: translateX(-50%); top: 0; bottom: 0; }
  .cy:nth-child(odd)  { direction: rtl; }
  .cy:nth-child(odd) > * { direction: ltr; }
  .cy:nth-child(odd) .cy__c { text-align: right; }
  .cy:nth-child(odd) .cy__o { justify-content: flex-end; }
  .cy:nth-child(odd).on .cy__c { transform: translateX(-6px); }
  .cy:nth-child(even) { margin-top: 56px; }

  /* player: sidebar aparece e o painel de render vira duas colunas */
  .reel__stage { grid-template-columns: 172px 1fr; height: clamp(380px, 34vw, 440px); }
  .rl-rail { display: flex; }
  .rl-render { grid-template-columns: 150px 1fr; }
  .rl-s { padding: 20px 24px; }

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

@media (min-width: 1024px) {
  .plan { width: 360px; }
}

/* ═══════════ MOVIMENTO REDUZIDO ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .mq__t { animation: none; }
  .rl-cursor { display: none; }
}
