/* ═══════════════════════════════════════════════════════════
   POCKET JOY — Proposta de Branding e Identidade Visual
   Tokens: Pocket Joy Design System
═══════════════════════════════════════════════════════════ */

:root {
  /* ─── Brand core ─────────────────────────────────────── */
  --pj-violet: #8B00FF;
  --pj-indigo: #6366f1;
  --pj-cyan: #00C2FF;
  --pj-black: #000000;
  --accent: var(--pj-indigo);

  /* ─── Foreground ─────────────────────────────────────── */
  --fg-1: #ffffff;
  --fg-2: rgba(255, 255, 255, 0.75);
  --fg-3: rgba(255, 255, 255, 0.60);
  --fg-4: rgba(255, 255, 255, 0.35);
  --fg-5: rgba(255, 255, 255, 0.25);
  --fg-muted: #a8b8cc;

  /* ─── Surfaces ───────────────────────────────────────── */
  --bg: #000000;
  --bg-deep: #08081a;
  --surface-1: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(99, 102, 241, 0.06);
  --glass-bg-deep: rgba(10, 10, 30, 0.70);
  --glass-blur: blur(20px);

  /* ─── Borders ────────────────────────────────────────── */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-default: rgba(255, 255, 255, 0.12);
  --border-indigo: rgba(99, 102, 241, 0.30);
  --border-cyan: rgba(0, 194, 255, 0.30);

  /* ─── Shadows & glows ────────────────────────────────── */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-cta: 0 4px 24px rgba(99, 102, 241, 0.40);
  --shadow-cta-hover: 0 8px 32px rgba(99, 102, 241, 0.55);
  --glow-cyan: 0 0 10px rgba(0, 194, 255, 0.70);

  /* ─── Radii ──────────────────────────────────────────── */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* ─── Motion ─────────────────────────────────────────── */
  --ease-out-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 200ms;
  --dur-base: 400ms;
  --dur-slow: 650ms;

  /* ─── Type ───────────────────────────────────────────── */
  --font-display: 'Syne', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', 'Inter', system-ui, sans-serif;

  --fs-4xl: clamp(30px, 3.6vw, 46px);
  --fs-6xl: clamp(40px, 7vw, 82px);

  --tracking-eyebrow: 3.5px;
}

/* ═══ RESET ═════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-3);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-loading { overflow: hidden; height: 100vh; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--fg-1);
  line-height: 1.08;
  letter-spacing: -1.5px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--dur-fast) var(--ease-out-soft); }
button { font: inherit; border: none; background: none; color: inherit; }
::selection { background: var(--pj-violet); color: #fff; }
:focus-visible { outline: 2px solid var(--pj-cyan); outline-offset: 3px; border-radius: 4px; }

/* ═══ PRELOADER ═════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 5000;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.preloader.done { pointer-events: none; }
.preloader-inner {
  position: relative; z-index: 5; width: min(420px, 78vw);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.preloader-logo img { height: 34px; width: auto; display: block; }
.preloader-meta {
  width: 100%; display: flex; align-items: flex-end; justify-content: space-between;
}
.preloader-tag {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: rgba(255,255,255,0.35);
}
.preloader-count {
  font-family: var(--font-display); font-size: 40px; font-weight: 800;
  line-height: 1; color: var(--fg-1); letter-spacing: -1px;
}
.preloader-pct { font-size: 18px; color: var(--pj-cyan); margin-left: 2px; }
.preloader-bar {
  width: 100%; height: 2px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.preloader-bar-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pj-indigo), var(--pj-cyan));
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.6);
  transition: width 200ms linear;
}
.preloader-curtain {
  position: absolute; inset: 0; background: #000;
  transform: scaleY(0); transform-origin: top; z-index: 2;
}

/* ═══ SCROLL PROGRESS ═══════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 1200; background: rgba(255,255,255,0.05); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pj-indigo), var(--pj-violet) 55%, var(--pj-cyan));
  box-shadow: 0 0 12px rgba(99,102,241,.7);
}

/* ═══ CURSOR (dot ciano + pill de label — igual ao site) ═══ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--pj-cyan);
  pointer-events: none; z-index: 100003;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
  mix-blend-mode: screen;
}
.cursor-dot.is-hidden { opacity: 0; }

/* Ring só existe como pill de label contextual */
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 78px; height: 78px; border-radius: 50px;
  pointer-events: none; z-index: 100002;
  transform: translate(-50%, -50%);
  display: none; align-items: center; justify-content: center;
  background: transparent;
  transition: background .3s ease, opacity .25s ease;
  will-change: transform;
}
.cursor-ring.has-label { display: flex; background: var(--pj-cyan); }
.cursor-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  letter-spacing: .2px; color: #05060f; white-space: nowrap;
  opacity: 0; transform: scale(.55);
  transition: opacity .2s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.cursor-ring.has-label .cursor-label { opacity: 1; transform: scale(1); }

body.js-cursor, body.js-cursor a, body.js-cursor button,
body.js-cursor [role="button"] { cursor: none; }

@media (pointer: coarse) {
  body, a, button, [role="button"] { cursor: auto !important; }
  .cursor-dot, .cursor-ring, .cursor-ring.has-label { display: none !important; }
}

/* ═══ AMBIENT FX ════════════════════════════════════════ */
.ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.ambient-fog {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse at 18% 10%, rgba(99,102,241,0.085) 0%, transparent 60%),
    radial-gradient(ellipse at 84% 88%, rgba(0,194,255,0.06) 0%, transparent 62%);
}
.bg-spark {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 10px #fff;
  animation: spark 3s ease-in-out infinite;
}
@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(.5); }
  50% { opacity: .85; transform: scale(1.4); }
}
.bg-beam {
  position: absolute; top: -30%; width: 1px; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(99,102,241,0.55), transparent);
  animation: beam 8s linear infinite;
}
@keyframes beam {
  0% { transform: translateY(-60%); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateY(340%); opacity: 0; }
}

/* ═══ LAYOUT ════════════════════════════════════════════ */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 3; }
.section { position: relative; padding: 120px 0 100px; overflow: hidden; isolation: isolate; }
.section-header { max-width: 920px; margin: 0 auto 64px; text-align: center; }

.section-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .38;
}
.section-video-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,.62) 30%, rgba(0,0,0,.62) 70%, #000 100%);
}

.overline {
  display: inline-block;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow); color: var(--pj-cyan);
  margin-bottom: 20px;
}
.section-title {
  font-size: var(--fs-4xl); letter-spacing: -1.8px; line-height: 1.1;
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--fg-1); }
/* Mantém palavras coladas na mesma linha (o splitter de motion.js transforma
   cada palavra em inline-block, então o nowrap fica no wrapper). */
.title-nowrap { white-space: nowrap; }
.section-sub { font-size: 16px; color: var(--fg-3); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* ═══ BOTÕES ════════════════════════════════════════════ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 14.5px; font-weight: 700; letter-spacing: -.1px;
  cursor: pointer; overflow: hidden; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out-soft),
              box-shadow var(--dur-fast) ease, background var(--dur-fast) ease,
              border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.btn-lg { padding: 17px 38px; font-size: 15.5px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out-soft); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--pj-indigo); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--pj-violet); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,0,255,.55); }
.btn-primary:active { transform: scale(.97); }

.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--fg-1);
  border: 1px solid var(--border-default); backdrop-filter: var(--glass-blur);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--border-cyan); transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: #04140a; box-shadow: 0 4px 24px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: #2ff07a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.5); }

/* ═══ NAVBAR ════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 16px; left: 16px; right: 16px; z-index: 1000;
  display: flex; justify-content: center; pointer-events: none;
}
.nav-shell {
  width: 100%; max-width: 1280px; pointer-events: auto; overflow: hidden;
  background: rgba(8, 8, 20, 0.75);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: background var(--dur-base) ease, border-color var(--dur-base) ease;
}
.navbar.scrolled .nav-shell { background: rgba(8, 8, 20, 0.88); border-color: rgba(99,102,241,0.28); }
.nav-inner {
  position: relative;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { height: 32px; width: auto; }
.brand-logo { display: flex; align-items: center; opacity: .95; transition: opacity var(--dur-fast) ease; }
.brand-logo:hover { opacity: 1; }

.nav-pill {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--radius-pill);
  background: rgba(10, 10, 30, 0.70);
  border: 1px solid rgba(99, 102, 241, 0.22);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
}
.nav-pill a {
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; color: var(--fg-muted); white-space: nowrap;
}
.nav-pill a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius-pill);
  background: var(--pj-indigo); color: #fff !important;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}
.nav-cta:hover { background: var(--pj-violet); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(99,102,241,.35); }
.nav-cta:active { transform: translateY(-1px) scale(.98); }

.nav-burger {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border-default); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 16px; height: 1.5px; background: #fff; transition: var(--dur-fast) var(--ease-out-soft); }
.nav-burger.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 2px; padding: 0 14px;
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-in-out), padding var(--dur-base) ease;
}
.nav-mobile.open { max-height: 420px; padding: 4px 14px 16px; }
.nav-mobile a { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; color: var(--fg-2); }
.nav-mobile a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-mobile-cta {
  margin-top: 8px; text-align: center; background: var(--pj-indigo);
  color: #fff !important; font-weight: 700; border-radius: var(--radius-pill) !important;
}

/* ═══ HERO ══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 150px 48px 120px; overflow: hidden; isolation: isolate;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .45; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(0,0,0,.35) 0%, rgba(0,0,0,.82) 62%, #000 100%);
}
.hero-inner { position: relative; z-index: 3; max-width: 1000px; width: 100%; }

/* ─── Cliente da proposta (foto + nome) ─────────────── */
.hero-client { margin-bottom: 30px; }
.hero-client-photo {
  position: relative; width: 112px; height: 112px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(99,102,241,0.38);
  background: rgba(10,10,30,0.6);
  box-shadow: 0 0 0 6px rgba(99,102,241,0.07), 0 14px 40px rgba(0,0,0,0.55);
  transition: box-shadow var(--dur-slow) var(--ease-out-soft), border-color var(--dur-slow) ease;
}
.hero-client-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  transition: transform var(--dur-slow) var(--ease-out-soft), filter var(--dur-slow) var(--ease-out-soft);
}
.hero-client-photo:hover {
  border-color: rgba(0,194,255,0.55);
  box-shadow: 0 0 0 6px rgba(0,194,255,0.10), 0 16px 46px rgba(0,0,0,0.6);
}
.hero-client-photo:hover img { transform: scale(1.05); }
.hero-client-name {
  font-family: var(--font-display); font-size: clamp(19px, 2vw, 23px); font-weight: 700;
  color: var(--fg-1); line-height: 1.15; letter-spacing: -0.6px;
}
.hero-client-org {
  margin-top: 6px;
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.6px; color: var(--pj-cyan);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; margin-bottom: 34px;
  border-radius: var(--radius-pill);
  background: rgba(10,10,30,0.6); backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(99,102,241,0.28);
  font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.6px; color: var(--fg-2);
}
.hero-eyebrow .dot {
  flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%; background: var(--pj-cyan);
  box-shadow: var(--glow-cyan); animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }
.hero-eyebrow-sep { color: var(--fg-5); }
.hero-eyebrow-client { color: var(--pj-cyan); }

.hero-headline {
  font-size: var(--fs-6xl); letter-spacing: -2.6px; line-height: 1.02;
  margin-bottom: 26px; max-width: 15ch; margin-inline: auto;
}
.hero-headline em { font-style: normal; color: var(--fg-1); }
/* Palavras fatiadas pela camada de motion (hero + títulos de seção) */
.word { display: inline-block; will-change: transform; }

.hero-sub {
  font-size: clamp(15px, 1.5vw, 17.5px); color: var(--fg-3);
  line-height: 1.65; margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 64px; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md);
  overflow: hidden; backdrop-filter: blur(14px);
}
.hero-meta-item { background: rgba(8,8,20,0.62); padding: 20px 22px; text-align: left; }
.hero-meta-item .label {
  display: block; font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.2px; color: var(--fg-4); margin-bottom: 7px;
}
.hero-meta-item .value {
  display: block; font-family: var(--font-display); font-size: 14.5px;
  font-weight: 800; color: var(--fg-1); letter-spacing: -.5px; line-height: 1.35;
}
.hero-meta-item .value em { font-style: normal; color: var(--pj-cyan); }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.4px; color: var(--fg-4);
}
.hero-scroll:hover { color: var(--fg-2); }
.hero-scroll-mouse {
  width: 22px; height: 34px; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.hero-scroll-wheel {
  width: 3px; height: 7px; border-radius: 2px; background: var(--pj-cyan);
  box-shadow: var(--glow-cyan); animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(9px); opacity: 0; } }

/* ═══ SOBRE ═════════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px; align-items: stretch;
}
.about-visual { position: relative; display: flex; }
.about-photo-wrap {
  position: relative; width: 100%; min-height: 460px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-default); background: var(--surface-1);
}
.about-photo-wrap::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  border: 1px solid transparent; transition: border-color var(--dur-slow) ease; pointer-events: none;
}
.about-photo-wrap:hover::after { border-color: rgba(0,194,255,.55); }
.about-photo-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  filter: grayscale(100%) contrast(1.06);
  transition: filter var(--dur-slow) var(--ease-out-soft), transform var(--dur-slow) var(--ease-out-soft);
}
.about-photo-wrap:hover img { filter: grayscale(0%) contrast(1); transform: scale(1.035); }
.photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.photo-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.photo-role { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: .3px; }

.about-content .overline {
  display: block; line-height: 1; margin-bottom: 26px; color: var(--pj-violet);
}
.about-content .section-title {
  font-size: clamp(26px, 2.7vw, 36px);
  margin-bottom: 22px; letter-spacing: -1.2px;
}
.about-content p { font-size: 14.8px; color: var(--fg-3); line-height: 1.8; }
.about-content p + p { margin-top: 18px; }

.about-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border-subtle);
  font-size: 11.5px; font-weight: 500; color: var(--fg-2); white-space: nowrap;
  transition: var(--dur-fast) var(--ease-out-soft);
}
.about-pill:hover { border-color: var(--border-indigo); background: var(--surface-hover); transform: translateY(-2px); }
.about-pill .swatch {
  width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%;
  background: var(--pj-cyan); box-shadow: var(--glow-cyan);
}

.about-skills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.skill-tag {
  padding: 7px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(139,0,255,0.30); background: rgba(139,0,255,0.07);
  font-size: 11px; font-weight: 600; letter-spacing: .3px;
  color: rgba(255,255,255,.72); white-space: nowrap;
}

/* ═══ PORTFÓLIO (slides em tela cheia — igual ao site) ═══ */
.portfolio-section {
  position: relative; width: 100%; height: 100svh;
  overflow: hidden; flex-shrink: 0; isolation: isolate;
}
.portfolio-track { display: flex; height: 100%; will-change: transform; position: relative; z-index: 3; }
.portfolio-slide {
  flex: 0 0 100%; width: 100%; height: 100%;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-slide .slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.05);
  transition: filter .85s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}
.portfolio-slide:hover .slide-bg { filter: grayscale(0%) contrast(1); }

/* ── Slide 0: intro ── */
.slide-intro-content {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; padding: 0 80px; max-width: 1200px; width: 100%;
  position: relative; z-index: 2;
}
.intro-left { flex: 0 0 auto; max-width: 480px; }
.portfolio-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--pj-indigo); margin-bottom: 24px;
}
.portfolio-title {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 68px);
  font-weight: 800; line-height: 1; letter-spacing: -.04em;
  color: #fff; margin-bottom: 24px;
}
.portfolio-subtitle {
  font-size: 16px; color: var(--fg-muted); font-weight: 400;
  line-height: 1.5; max-width: 440px; margin-bottom: 48px;
}
.portfolio-scroll-hint {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--fg-muted); font-weight: 500; cursor: pointer;
  transition: color var(--dur-fast) ease;
}
.portfolio-scroll-hint:hover { color: #fff; }
.scroll-line { display: block; width: 48px; height: 1px; background: linear-gradient(90deg, var(--pj-indigo), transparent); }

.intro-right { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.intro-previews { position: relative; width: 300px; height: 340px; }
.preview-card {
  position: absolute; width: 256px; height: 160px; border-radius: 16px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 48px rgba(0,0,0,.6);
  filter: grayscale(100%) contrast(1.05);
  transition: transform .55s var(--ease-out-soft), filter .55s ease, box-shadow .55s ease;
}
.intro-previews:hover .preview-card { filter: grayscale(0%) contrast(1); }
.preview-card--1 { top: 0;     left: 28px; z-index: 3; transform: rotate(-3deg); }
.preview-card--2 { top: 90px;  left: 10px; z-index: 2; transform: rotate(1.5deg); }
.preview-card--3 { top: 178px; left: 22px; z-index: 1; transform: rotate(-1.5deg); }
.intro-previews:hover .preview-card--1 {
  transform: rotate(-3deg) translate(-16px, -18px);
  box-shadow: 0 32px 72px rgba(0,0,0,.8), 0 0 0 1px rgba(99,102,241,.25);
}
.intro-previews:hover .preview-card--2 { transform: rotate(1.5deg) translate(14px, 4px); }
.intro-previews:hover .preview-card--3 { transform: rotate(-1.5deg) translate(-8px, 18px); }

.intro-meta { display: flex; align-items: center; gap: 24px; }
.intro-meta-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  color: rgba(255,255,255,0.06); letter-spacing: -2px; line-height: 1;
}
.intro-meta-tags { display: flex; flex-direction: column; gap: 8px; }
.intro-meta-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
}
.intro-meta-tag span { display: block; width: 18px; height: 1px; background: var(--pj-indigo); opacity: .7; }

/* ── Slides de projeto ── */
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.75) 35%, rgba(0,0,0,.25) 60%, transparent 80%),
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 35%);
}
.slide-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  height: 100%;
}
.slide-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pj-indigo); margin-bottom: 12px;
}
.slide-title {
  font-family: var(--font-display); font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 800; color: #fff; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 16px;
}
.slide-desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 480px; line-height: 1.5; margin-bottom: 32px;
}
.btn-view-project {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 32px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px); color: #fff;
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.btn-view-project:hover {
  background: rgba(99,102,241,0.22); border-color: rgba(99,102,241,0.55);
  transform: translateY(-2px);
}
.btn-view-project .arrow-icon {
  width: 20px; height: 20px; border-radius: 50%; background: var(--pj-indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}

/* ── Chrome do carrossel ── */
.slide-counter {
  position: absolute; top: 96px; right: 48px; z-index: 10;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.35); letter-spacing: 1px;
  transition: opacity var(--dur-base) ease;
}
.slide-counter span { color: #fff; }
.portfolio-nav {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 8px;
}
.portfolio-nav-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px); color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color .2s, background .2s, opacity .2s;
}
.portfolio-nav-arrow:hover:not(:disabled) { border-color: rgba(99,102,241,0.6); background: rgba(99,102,241,0.15); }
.portfolio-nav-arrow:disabled { opacity: .3; cursor: default; }
.portfolio-dots { display: flex; align-items: center; gap: 8px; padding: 0 12px; }
.portfolio-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.25);
  transition: width .3s ease, background .3s ease, border-radius .3s ease;
}
.portfolio-dot.active { width: 24px; border-radius: 3px; background: var(--pj-indigo); }

/* ═══ VISUALIZADOR DE PROJETO ═══════════════════════════ */
.project-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column; background: #080808;
  animation: modalIn .55s cubic-bezier(0.65, 0, 0.35, 1) both;
}
@keyframes modalIn { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0% 0); } }
.project-topbar {
  position: relative; z-index: 2; flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,8,8,0.95); backdrop-filter: blur(12px);
}
.project-topbar-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.project-back {
  display: flex; align-items: center; gap: 8px; padding: 0;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45);
  cursor: pointer; transition: color .2s; white-space: nowrap;
}
.project-back:hover { color: #fff; }
.project-topbar-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.9); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.project-topbar-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pj-indigo); padding: 4px 12px;
  border: 1px solid rgba(99,102,241,0.3); border-radius: var(--radius-pill);
  white-space: nowrap;
}
.project-close {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.project-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.project-close:active { transform: scale(.95); }

.project-scroll {
  position: relative; z-index: 1; flex: 1;
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin; scrollbar-color: rgba(99,102,241,0.35) transparent;
  overscroll-behavior: contain;
}
.project-scroll::-webkit-scrollbar { width: 4px; }
.project-scroll::-webkit-scrollbar-track { background: transparent; }
.project-scroll::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.35); border-radius: 4px; }
.project-images {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; font-size: 0; line-height: 0;
  animation: imagesIn .5s var(--ease-out-soft) .25s both;
}
@keyframes imagesIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.project-images img, .project-images video {
  width: 100%; display: block; margin: 0; padding: 0;
}

@media (max-width: 900px) {
  .slide-intro-content { flex-direction: column; align-items: flex-start; gap: 28px; padding: 0 28px; }
  .intro-right { align-items: flex-start; width: 100%; }
  .portfolio-title { font-size: clamp(40px, 12vw, 56px); margin-bottom: 16px; }
  .portfolio-subtitle { margin-bottom: 24px; }
  .portfolio-label { margin-bottom: 16px; }
  /* Cards menores: a pilha ia até 338px dentro de um container de 300px
     e passava por cima do bloco "03 / Game UI Design". */
  .intro-previews { width: 100%; max-width: 300px; height: 300px; }
  .preview-card { width: 216px; height: 135px; }
  .preview-card--1 { top: 0;     left: 18px; }
  .preview-card--2 { top: 76px;  left: 4px; }
  .preview-card--3 { top: 152px; left: 14px; }
  .slide-counter { top: 88px; right: 24px; }
  /* Sobe a navegação: a barra fixa de conversão ocupa o rodapé da viewport */
  .portfolio-nav { bottom: 92px; }
  .slide-content { padding-bottom: 148px; }
  .project-topbar { padding: 12px 14px; }
  .project-topbar-tag { display: none; }
}
@media (max-width: 620px) {
  .intro-meta { display: none; }
  .intro-previews { height: 292px; }
}

/* ═══ PROCESSO ══════════════════════════════════════════ */
.process-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 30px 28px; border-radius: var(--radius-lg);
  background: var(--surface-1); border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur); cursor: pointer; overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out-soft), border-color var(--dur-base) ease, background var(--dur-base) ease;
}
.process-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--pj-indigo), var(--pj-violet), var(--pj-cyan));
  opacity: 0; transition: opacity var(--dur-base) ease;
}
.process-card.active, .process-card:hover {
  background: var(--surface-hover); border-color: var(--border-indigo); transform: translateY(-5px);
}
.process-card.active::after, .process-card:hover::after { opacity: 1; }

.process-card-top { display: flex; align-items: baseline; gap: 6px; margin-bottom: 26px; }
.process-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 800;
  letter-spacing: -1.5px; color: var(--fg-1);
}
.process-total { font-size: 12px; font-weight: 600; color: var(--fg-5); letter-spacing: 1px; }

.process-icon { width: 56px; height: 56px; margin-bottom: 22px; color: rgba(255,255,255,0.5); transition: color var(--dur-base) ease; }
.process-card.active .process-icon, .process-card:hover .process-icon { color: var(--pj-cyan); }
.process-icon svg { width: 100%; height: 100%; }
.process-icon .ring-a { transform-origin: 32px 32px; animation: spinSlow 14s linear infinite; }
.process-icon .ring-b { transform-origin: 32px 32px; animation: spinSlow 9s linear infinite reverse; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.process-icon .typeline-1, .process-icon .typeline-2, .process-icon .typeline-3 {
  stroke-dasharray: 26; stroke-dashoffset: 26; animation: draw 3s ease-in-out infinite;
}
.process-icon .typeline-2 { animation-delay: .35s; }
.process-icon .typeline-3 { animation-delay: .7s; }
@keyframes draw { 0% { stroke-dashoffset: 26; } 40%, 70% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 26; } }
.process-icon .icon-arrow { animation: floatY 3s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.process-step-title { font-size: 24px; letter-spacing: -1px; margin-bottom: 14px; line-height: 1.15; min-height: 2.4em; }
.process-step-desc { font-size: 14.5px; color: var(--fg-3); line-height: 1.75; flex: 1; }

.process-card-bottom { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.process-label {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.4px; color: var(--fg-4);
}
.process-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.16), transparent); }

/* ═══ OPÇÕES ════════════════════════════════════════════ */
.options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: start;
}
.option-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,0.028); border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  transform-style: preserve-3d;
  transition: transform var(--dur-base) var(--ease-out-soft), border-color var(--dur-base) ease, box-shadow var(--dur-base) ease;
}
.option-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
  opacity: .45; transition: opacity var(--dur-base) ease;
}
.option-card:hover { border-color: color-mix(in srgb, var(--card-accent) 45%, transparent); box-shadow: 0 18px 52px rgba(0,0,0,.5); }
.option-card:hover::before { opacity: 1; }

.option-glow {
  position: absolute; inset: -1px; border-radius: var(--radius-lg); pointer-events: none;
  background: radial-gradient(320px circle at 50% -10%, color-mix(in srgb, var(--card-accent) 22%, transparent), transparent 70%);
  opacity: 0; transition: opacity var(--dur-slow) ease;
}
.option-card:hover .option-glow { opacity: 1; }

.option-card.featured {
  border-color: color-mix(in srgb, var(--card-accent) 55%, transparent);
  box-shadow: 0 18px 56px rgba(99,102,241,.24);
  background: rgba(99,102,241,0.05);
}
.option-card.featured .option-glow { opacity: .8; }
/* Vem depois das regras acima: sem isso o .featured (mesma especificidade,
   declarado por último) prenderia o glow em .8 também no hover. */
.option-card:hover .option-glow { opacity: 1; }

.option-badge {
  position: absolute; top: 18px; right: 18px; z-index: 4;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--card-accent); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px;
  box-shadow: 0 0 18px color-mix(in srgb, var(--card-accent) 60%, transparent);
}

.option-head { position: relative; z-index: 2; padding: 38px 32px 28px; border-bottom: 1px solid var(--border-subtle); }
.option-tag {
  display: block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--card-accent); margin-bottom: 18px;
  line-height: 1.6; max-width: 26ch; min-height: 3.2em;
}
.option-name { font-size: 30px; letter-spacing: -1.4px; margin-bottom: 14px; min-height: 1.9em; }
.option-name em { font-style: normal; color: var(--fg-1); }
.option-tagline { font-size: 14px; color: var(--fg-3); line-height: 1.7; margin-bottom: 28px; min-height: 100px; }

.option-price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 6px; flex-wrap: nowrap; }
.option-price .currency {
  font-size: 12.5px; font-weight: 500; color: var(--fg-4);
  letter-spacing: .4px; white-space: nowrap; flex-shrink: 0;
}
.option-price .amount {
  font-family: var(--font-display); font-size: clamp(28px, 2.5vw, 34px);
  font-weight: 800; letter-spacing: -1.6px; color: var(--fg-1); white-space: nowrap;
}
.option-installment { font-size: 12.5px; color: var(--fg-4); margin-bottom: 24px; }
.option-installment strong { color: var(--fg-2); font-weight: 600; }
.option-installment .sep { margin: 0 5px; color: var(--fg-5); }

.option-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.option-meta-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border-subtle);
  font-size: 12px; font-weight: 500; color: var(--fg-2);
}
.option-meta-item svg { color: var(--card-accent); flex-shrink: 0; }

.option-body { position: relative; z-index: 2; padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.option-body h4 {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.4px; color: var(--fg-4); margin-bottom: 20px;
}
.option-includes { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.option-includes li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13.8px; color: var(--fg-2); line-height: 1.55;
}
.option-includes li .check {
  flex-shrink: 0; width: 19px; height: 19px; margin-top: 2px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--card-accent) 18%, transparent);
  color: var(--card-accent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 35%, transparent);
}
.option-cta { margin-top: auto; }
.option-card .btn-primary { background: var(--card-accent); box-shadow: 0 4px 24px color-mix(in srgb, var(--card-accent) 40%, transparent); }
.option-card .btn-primary:hover { filter: brightness(1.12); box-shadow: 0 8px 32px color-mix(in srgb, var(--card-accent) 58%, transparent); }

.options-foot {
  margin-top: 72px; text-align: center; font-size: 12.5px; color: var(--fg-4); letter-spacing: .2px;
}

/* ═══ DEPOIMENTOS ═══════════════════════════════════════ */
.feedback-slider {
  position: relative; z-index: 3; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.feedback-track { display: flex; gap: 20px; width: max-content; padding: 8px 0; animation: feedbackMarquee 48s linear infinite; }
.feedback-slider:hover .feedback-track { animation-play-state: paused; }
@keyframes feedbackMarquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

.feedback-card {
  position: relative; flex: 0 0 auto; width: 400px;
  padding: 34px 30px 28px; border-radius: var(--radius-lg);
  background: var(--surface-1); border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur);
  transition: border-color var(--dur-base) ease, transform var(--dur-base) var(--ease-out-soft), background var(--dur-base) ease;
}
.feedback-card:hover { border-color: var(--border-indigo); background: var(--surface-hover); transform: translateY(-4px); }
.feedback-quote-mark {
  position: absolute; top: 14px; right: 24px;
  font-family: var(--font-display); font-size: 72px; font-weight: 800;
  line-height: 1; color: rgba(139,0,255,.20);
}
.feedback-card .quote { position: relative; font-size: 14.5px; color: var(--fg-2); line-height: 1.8; margin-bottom: 26px; min-height: 108px; }

.author { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border-cyan);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.author-info strong { font-family: var(--font-display); font-size: 14.5px; font-weight: 800; color: #fff; letter-spacing: -.4px; }
.author-info span { font-size: 11.5px; color: var(--fg-4); }
.author-stars { display: flex; gap: 2px; font-size: 11px; color: var(--pj-cyan); }

/* ═══ PAGAMENTO ═════════════════════════════════════════ */
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.payment-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius-lg);
  background: var(--surface-1); border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out-soft), border-color var(--dur-base) ease, background var(--dur-base) ease;
}
.payment-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--pj-indigo), var(--pj-violet));
  opacity: 0; transition: opacity var(--dur-base) ease;
}
.payment-card:hover { transform: translateY(-5px); border-color: var(--border-indigo); background: var(--surface-hover); }
.payment-card:hover::after { opacity: 1; }
.payment-num {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  letter-spacing: 1px; color: var(--fg-5);
}
.payment-card .icon-plate {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.28); color: var(--pj-cyan);
  transition: var(--dur-base) var(--ease-out-soft);
}
.payment-card:hover .icon-plate { background: rgba(139,0,255,0.16); border-color: rgba(139,0,255,0.4); transform: translateY(-2px); }
.payment-card h3 { font-size: 21px; letter-spacing: -.8px; margin-bottom: 12px; }
.payment-card p { font-size: 14px; color: var(--fg-3); line-height: 1.75; }
.payment-card p strong { color: var(--pj-cyan); font-weight: 600; }

/* ═══ FAQ ═══════════════════════════════════════════════ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-question {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 26px 4px; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: clamp(16px, 2vw, 19px);
  font-weight: 800; letter-spacing: -.6px; color: var(--fg-2);
  transition: color var(--dur-fast) ease;
}
.faq-question:hover { color: #fff; }
.faq-index {
  flex-shrink: 0; font-family: var(--font-display); font-size: 12px;
  font-weight: 800; letter-spacing: 1px; color: var(--fg-5); width: 22px;
}
.faq-item.open .faq-index { color: var(--pj-cyan); }
.faq-q-text { flex: 1; }
.faq-question .icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-default); color: var(--fg-2);
  transition: var(--dur-base) var(--ease-out-soft);
}
.faq-item.open .faq-question .icon {
  background: var(--pj-indigo); border-color: var(--pj-indigo); color: #fff;
  transform: rotate(135deg); box-shadow: 0 0 16px rgba(99,102,241,.55);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-in-out), padding var(--dur-slow) var(--ease-in-out), opacity var(--dur-base) ease;
  opacity: 0;
}
.faq-item.open .faq-answer { max-height: 460px; padding: 0 44px 30px; opacity: 1; }
.faq-answer p { font-size: 14.5px; color: var(--fg-3); line-height: 1.85; }

/* ═══ CTA / CONTATO ═════════════════════════════════════ */
.section-contact { padding-bottom: 72px; }
.cta-box {
  position: relative; text-align: center; max-width: 880px; margin: 0 auto;
  padding: 72px 56px 76px; border-radius: 28px;
  background: rgba(8,8,20,0.62); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(99,102,241,0.24);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px circle at 50% 0%, rgba(99,102,241,.16), transparent 68%);
}
.cta-box > * { position: relative; z-index: 2; }

.validity-strip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; margin-bottom: 30px; border-radius: var(--radius-pill);
  background: rgba(0,194,255,0.08); border: 1px solid rgba(0,194,255,0.28);
  font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.8px; color: rgba(255,255,255,.82);
}
.validity-strip .pulse {
  flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 50%; background: var(--pj-cyan);
  box-shadow: var(--glow-cyan); animation: pulseDot 1.8s ease-in-out infinite;
}

.cta-title { font-size: clamp(34px, 5vw, 58px); letter-spacing: -2.4px; margin-bottom: 28px; }
.cta-title em { font-style: normal; color: var(--fg-1); }
.cta-sub { font-size: 16px; color: var(--fg-3); max-width: 560px; margin: 0 auto 14px; line-height: 1.75; }
.cta-strong { font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 34px; }

.cta-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 38px; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border-subtle);
  font-size: 12.5px; font-weight: 500; color: var(--fg-2);
}
.cta-pill-dot { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--pj-cyan); box-shadow: var(--glow-cyan); }

.cta-actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ═══ RODAPÉ ════════════════════════════════════════════ */
.footer { position: relative; z-index: 3; padding: 88px 0 40px; background: transparent; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; padding-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 28px; width: auto; opacity: .85; filter: brightness(0) invert(1); }
.footer-socials { display: flex; align-items: center; gap: 8px; }
.footer-social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
  transition: border-color .2s, background .2s, transform .2s;
}
.footer-social-btn:hover {
  border-color: rgba(99,102,241,0.55); background: rgba(99,102,241,0.12);
  transform: translateY(-2px);
}
.footer-social-btn:active { transform: translateY(-1px) scale(.95); }
.footer-social-btn svg {
  width: 16px; height: 16px; fill: rgba(255,255,255,0.55); transition: fill .2s;
}
.footer-social-btn:hover svg { fill: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0; }
.footer-bottom { padding-top: 16px; display: flex; justify-content: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 400; letter-spacing: .01em; }

/* ═══ STICKY BAR ════════════════════════════════════════ */
.sticky-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 900;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 12px 12px 22px; border-radius: var(--radius-pill);
  background: var(--glass-bg-deep); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(99,102,241,0.28); box-shadow: 0 12px 40px rgba(0,0,0,.55);
  transform: translateY(140%); opacity: 0; pointer-events: none;
  transition: transform var(--dur-slow) var(--ease-back), opacity var(--dur-base) ease;
}
.sticky-bar.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.sticky-bar-info { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.sticky-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--fg-4); }
.sticky-value { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -.4px; }
@media (min-width: 901px) { .sticky-bar { display: none; } }

/* ═══ REVEAL ════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(38px); }
.reveal.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 850ms var(--ease-out-soft), transform 850ms var(--ease-out-soft);
}

/* ═══ RESPONSIVO ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .options-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .option-card.featured { order: -1; }
  .option-tagline { min-height: 0; }
  .process-track { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 960px) {
  .container { padding: 0 28px; }
  .section { padding: 92px 0 78px; }
  .section-header { margin-bottom: 48px; }
  .nav-pill { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 440px; }
  .hero { padding: 130px 28px 110px; }
  .hero-meta { grid-template-columns: 1fr; max-width: 400px; }
  .feedback-card { width: min(340px, 82vw); }
  .portfolio-item { width: 260px; }
}

@media (max-width: 620px) {
  body { font-size: 14.5px; }
  .desktop-break { display: none; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0 68px; }
  .navbar { top: 10px; left: 10px; right: 10px; }
  .nav-inner { padding: 10px 10px 10px 18px; }
  .hero { padding: 118px 20px 108px; }
  .hero-client { margin-bottom: 24px; }
  .hero-client-photo { width: 90px; height: 90px; margin-bottom: 13px; }
  .hero-client-org { letter-spacing: 2.2px; }
  .hero-headline { letter-spacing: -1.6px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-box { padding: 48px 24px 52px; border-radius: 22px; }
  .validity-strip {
    max-width: 100%; padding: 10px 18px; gap: 9px;
    font-size: 10.5px; letter-spacing: 1.4px; line-height: 1.6;
    text-align: center; border-radius: var(--radius-md);
  }
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .option-head, .option-body { padding-left: 24px; padding-right: 24px; }
  .process-card { padding: 28px 24px 24px; }
  .payment-card { padding: 28px 24px; }
  .faq-item.open .faq-answer { padding: 0 4px 26px; }
  .faq-question { gap: 12px; padding: 22px 2px; }
}

/* ═══ ACESSIBILIDADE ════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .portfolio-track, .feedback-track { animation: none; }
  .pj-cursor { display: none; }
  body { cursor: auto; }
}

/* ═══ IMPRESSÃO ═════════════════════════════════════════ */
@media print {
  .navbar, .hero-scroll, .sticky-bar, .pj-cursor, .scroll-progress,
  .preloader, .ambient, .section-video, .hero-video { display: none !important; }
  body { background: #fff; color: #111; cursor: auto; }
  .section { padding: 28px 0; page-break-inside: avoid; }
  .reveal { opacity: 1 !important; transform: none !important; }
  h1, h2, h3, h4, .option-name, .section-title { color: #111; }
  .section-title em, .cta-title em, .hero-headline em { -webkit-text-fill-color: #4338ca; color: #4338ca; }
}
