/* ============ TOKENS — identidade oficial PEDIRO ============ */
:root {
  --bg: #1B0A38;
  --bg-alt: #220C46;
  --panel: #2A1054;
  --panel-border: rgba(255, 255, 255, 0.10);

  --text: #ffffff;
  --text-muted: #C8A0FF;
  --text-faint: rgba(255, 255, 255, 0.45);

  --accent: #7916E8;
  --accent-2: #C8A0FF;
  --accent-grad: linear-gradient(135deg, #7916E8 0%, #9B5CFF 100%);

  --pediro-1: #5512A1;
  --pediro-2: #6814C6;
  --pediro-3: #7916E8;
  --pediro-4: #9B5CFF;
  --pediro-5: #C8A0FF;
  --pediro-deep-1: #32105E;
  --pediro-deep-2: #471078;
  --glow-main: rgba(132, 32, 255, 0.28);
  --glow-secondary: rgba(163, 91, 255, 0.10);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1160px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ============ PRELOADER — leve, sem vídeo, fundo claro ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f4eefc 55%, #ebe0fa 100%);
}

.preloader__ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(120, 60, 200, .12);
}

.preloader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader__logo {
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: #5B12A8;
  text-transform: lowercase;
}
.i-letter { position: relative; display: inline-block; width: .28em; height: 1em; }
.i-stem { position: absolute; bottom: .08em; left: 50%; width: .13em; height: .5em; background: currentColor; border-radius: 2px; transform: translateX(-50%); }
.i-dot { position: absolute; top: -.02em; left: 50%; width: .42em; height: .42em; border-radius: 50%; background: currentColor; transform: translateX(-50%); }

.preloader__smile-svg { width: 150px; height: auto; margin-top: 6px; overflow: visible; }
.preloader__track { stroke: rgba(120, 60, 200, .12); }
#preloaderHead { fill: #fff; stroke: #7C3AED; stroke-width: 2.5; filter: drop-shadow(0 0 4px rgba(124,58,237,.5)); transition: opacity .25s ease; }

.preloader__label {
  margin: 18px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(91, 18, 168, .4);
}
.preloader__dots { display: flex; gap: 6px; margin-top: 10px; }
.preloader__dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(91, 18, 168, .3);
  animation: preloader-pulse 1.2s ease-in-out infinite;
}
.preloader__dots span:nth-child(2) { animation-delay: .15s; }
.preloader__dots span:nth-child(3) { animation-delay: .3s; }
@keyframes preloader-pulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); background: #5B12A8; }
}

.preloader.is-done {
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }
.container--wide { max-width: 1440px; width: 90%; padding: 0; }

/* ============ TEMP: hero-only review mode ============ */
#restOfSite { display: none; }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--primary {
  background: #fff;
  color: var(--pediro-2);
  box-shadow: 0 8px 24px -8px rgba(155, 92, 255, .45);
}
.btn--primary:hover { transform: scale(1.015); box-shadow: 0 12px 30px -8px rgba(155, 92, 255, .6); }
.btn--primary .arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn--primary:hover .arrow { transform: translate(3px, -3px); }

.btn--ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--panel-border);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .08); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: var(--text);
}
.btn--outline:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }
.btn--outline .arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn--outline:hover .arrow { transform: translate(2px, -2px); }

.btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, .25);
  color: var(--text);
  font-weight: 500;
}
.btn--secondary:hover { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .45); }
.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  transition: transform .3s var(--ease);
}
.btn--secondary:hover .play-icon { transform: scale(1.15) rotate(15deg); }

/* ============ HEADER ============ */
/* a navbar vive só dentro do Hero: rola junto com ele e some com ele (sem fixed global) */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, .06);
  background: rgba(47, 8, 85, .55);
  backdrop-filter: blur(18px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.logo {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 40px;
}
.nav__link {
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
  padding-bottom: 2px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 16px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav--open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .burger span:nth-child(2) { opacity: 0; }
.nav--open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 780px;
  overflow: hidden;
  background:
    radial-gradient(52vw 52vw at 80% 42%, #6513BD 0%, rgba(101,19,189,0) 70%),
    radial-gradient(60vw 60vw at 8% 100%, #481080 0%, rgba(72,16,128,0) 65%),
    linear-gradient(160deg, #481080 0%, #35105F 60%, #2a0c4c 100%);
}

/* ---- background layers (Higgsfield = faint atmospheric light only) ---- */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  opacity: .14;
  filter: blur(40px);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: .025;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero__glow--main {
  top: 18%; right: 2%;
  width: 40vw; height: 40vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, var(--glow-main) 0%, rgba(132,32,255,0) 70%);
}
.hero__glow--secondary {
  top: 44%; left: 30%;
  width: 24vw; height: 24vw;
  max-width: 360px; max-height: 360px;
  background: radial-gradient(circle, var(--glow-secondary) 0%, rgba(163,91,255,0) 70%);
}
.hero__word-drift { position: absolute; inset: 0; }
.hero__word {
  position: absolute;
  left: 0; right: 0; bottom: -6vw;
  text-align: center;
  font-size: 21vw;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: .028;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

.hero__exit-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40vh;
  background: linear-gradient(180deg, rgba(42,12,76,0) 0%, #2a0c4c 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__cursor-glow {
  position: absolute;
  top: 0; left: 0;
  width: 850px; height: 850px;
  margin-left: -425px; margin-top: -425px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,70,255,.24) 0%, rgba(130,40,255,.10) 35%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s var(--ease);
  will-change: transform;
}

/* ---- orbital system: abstract "idea -> strategy -> result" micro-animation ---- */
.hero__orbital {
  position: absolute;
  left: min(56%, 760px);
  top: 20%;
  width: clamp(280px, 22vw, 360px);
  z-index: 2;
  pointer-events: none;
}
.orbital-svg { width: 100%; height: auto; display: block; overflow: visible; }

.orbital-ring { fill: none; stroke: rgba(190,140,255,.22); stroke-width: 1; }

.orbital-halo { fill: rgba(121,22,232,.35); filter: blur(14px); }
.orbital-core { filter: drop-shadow(0 0 6px rgba(155,92,255,.7)); }
#coreParallax, #coreBreathe, #coreBurst { transform-box: fill-box; transform-origin: center; }

.orbital-ripple {
  fill: none;
  stroke: rgba(190,140,255,.5);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.orbital-dot { fill: #fff; filter: drop-shadow(0 0 4px rgba(200,150,255,.8)); }

.orbital-label {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(220,195,255,.6);
  opacity: .4;
  white-space: nowrap;
}
.orbital-label--idea { top: 4%; left: -10%; }
.orbital-label--estrategia { top: 0%; right: -18%; }
.orbital-label--resultado { bottom: 10%; right: -20%; }

/* ---- layout: two explicit zones, left content / right symbol ---- */
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: none;
  width: auto;
  padding: 0;
  margin: 0;
}

.hero__text {
  position: absolute;
  left: max(24px, 5vw);
  top: 53%;
  transform: translateY(-50%);
  width: min(58%, 840px);
  z-index: 3;
}

.hero__editorial {
  position: absolute;
  top: 30%;
}
.hero__editorial--top { left: min(65%, 880px); }
.hero__editorial p {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
}
.editorial-line { display: block; width: 40px; height: 1px; background: rgba(255, 255, 255, .3); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 26px;
}

.hero__title {
  font-size: clamp(52px, 4.6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0 0 30px;
  color: #fff;
}
.mask-line { display: block; overflow: hidden; }
.mask-inner { display: block; will-change: transform; white-space: nowrap; }
.hero__dynamic-wrap { display: inline-block; vertical-align: top; overflow: hidden; }
.hero__dynamic {
  display: inline-block;
  background: linear-gradient(135deg, var(--pediro-4) 0%, var(--pediro-5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  will-change: transform, opacity, filter;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 0 40px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__cta .btn--lg {
  height: 62px;
  padding: 0 34px;
  font-size: 16px;
}

/* ---- symbol: dominant right-side graphic, allowed to bleed off-edge ---- */
.hero__symbol {
  position: absolute;
  right: 2.5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 32vw;
  max-width: 610px;
  z-index: 2;
}
.hero__symbol-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 65%);
  filter: blur(30px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  opacity: .7;
}
.symbol-svg { position: relative; width: 100%; height: auto; display: block; }
#circleParallax, #smileParallax { transform-box: fill-box; transform-origin: center; }
#circleFloat, #smileBreathe, #circleHover, #smileHover { transform-box: fill-box; transform-origin: center; }

/* ---- corners (secondary, low-emphasis) ---- */
.hero__scroll {
  position: absolute;
  left: max(24px, 5vw);
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.scroll-line { position: relative; width: 1px; height: 46px; background: rgba(255,255,255,.25); display: block; }
.scroll-dot { position: absolute; left: -1.5px; top: 0; width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.hero__scroll p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .5);
}
.scroll-arrow { display: inline-block; color: rgba(255,255,255,.6); }

.hero__meta {
  position: absolute;
  right: max(24px, 5vw);
  bottom: 40px;
  z-index: 2;
  text-align: right;
}
.hero__meta p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, .4);
}

/* ============ SOLUÇÕES + SOBRE NÓS ============ */
/* Reference layout: pill + serif-italic title, ONE 4-column panel with vertical
   dividers, then a wide "Sobre nós" box with a pill on its top edge. */
.solutions {
  position: relative;
  overflow: hidden;
  padding: 110px 0 130px;
  background: linear-gradient(180deg, #2a0c4c 0%, #0b0612 16%, #08050d 100%);
}
.solutions__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.solutions__noise {
  position: absolute; inset: 0; opacity: .015; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.solutions__glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.solutions__glow--a {
  top: -6%; right: -8%;
  width: 40vw; height: 40vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(120,40,255,.16), transparent 55%);
}
.solutions__glow--b {
  bottom: -4%; left: -10%;
  width: 46vw; height: 46vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(120,40,255,.14), transparent 55%);
}
.solutions__swoosh {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(154,91,255,.16);
  box-shadow: inset 0 0 80px rgba(124,44,255,.06);
}
.solutions__swoosh--l { width: 1100px; height: 1100px; left: -820px; top: -260px; }
.solutions__swoosh--r { width: 1500px; height: 1500px; right: -820px; top: -1180px; border-color: rgba(154,91,255,.22); }

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

/* ---- header ---- */
.solutions__header {
  position: relative; z-index: 2;
  max-width: 1340px;
  padding-left: 26px;
  margin-bottom: 44px;
}
.solutions__badge {
  display: inline-flex; align-items: center; gap: 12px;
  height: 40px; padding: 0 22px 0 18px;
  border-radius: 999px;
  background: rgba(124,44,255,.10);
  border: 1px solid rgba(160,100,255,.32);
  color: #fff; font-size: 13px; font-weight: 500;
  margin-bottom: 18px;
}
.solutions__badge svg { color: #C69BFF; }
.solutions__title {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(40px, 3.9vw, 64px);
  line-height: 1.1; letter-spacing: -0.01em;
  color: #fff; margin: 0;
}
.solutions__title-accent {
  font-family: "Inter", sans-serif; font-style: normal; font-weight: 700;
  letter-spacing: -0.03em; color: #C69BFF;
}

/* ---- services panel: single box, 4 columns, vertical dividers ---- */
.solutions .container--wide { max-width: 1388px; }
.solutions__panel {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1340px; margin: 0 auto;
  border: 1px solid rgba(160,100,255,.35);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20,10,36,.85), rgba(9,5,16,.9));
  overflow: hidden;
}
.solution-card {
  position: relative;
  min-height: 388px;
  padding: 32px 28px 34px 33px;
  border-right: 1px solid rgba(255,255,255,.12);
  background: #0a0612; /* opaque so the icons' screen blend has a backdrop inside the card's stacking context */
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.solution-card:last-child { border-right: none; }
.solution-card:hover {
  background: linear-gradient(180deg, rgba(124,44,255,.12), rgba(124,44,255,.02) 70%), #0a0612;
  box-shadow: inset 0 0 0 1px rgba(170,110,255,.22), inset 0 -40px 60px -40px rgba(124,44,255,.25);
}
.solution-card__dots {
  position: absolute; top: 12px; left: 12px; width: 300px; height: 120px;
  background-image: radial-gradient(rgba(198,155,255,.35) 1px, transparent 1.3px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 70%);
          mask-image: linear-gradient(135deg, #000, transparent 70%);
  pointer-events: none;
}
.solution-card__visual {
  position: relative; height: 150px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease);
  pointer-events: none;
}
.solution-card:hover .solution-card__visual { transform: translateY(-6px); }
.solution-card__icon {
  flex: none; width: 290px; height: 290px; object-fit: contain;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 68%);
          mask-image: radial-gradient(circle, #000 40%, transparent 68%);
}
.solution-card__number { display: block; font-size: 13px; font-weight: 500; color: #C69BFF; margin-bottom: 14px; }
.solution-card__title { font-size: 21px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: #fff; margin: 0 0 14px; }
.solution-card__desc { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.62); margin: 0; }

/* ---- sobre nós ---- */
.about-wrap { position: relative; z-index: 2; margin-top: 70px; }
.about-box {
  position: relative;
  max-width: 1380px; margin: 0 auto;
  min-height: 340px; padding: 44px 24px 64px;
  border: 1px solid rgba(150,90,255,.28);
  border-radius: 28px 28px 28px 28px;
  background: linear-gradient(180deg, #0a0611 0%, #150a2b 100%);
  text-align: center;
}
.about-box__pill {
  position: absolute; z-index: 3; top: -20px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px;
  height: 40px; padding: 0 22px 0 18px; white-space: nowrap;
  border-radius: 999px;
  background: #140a26;
  border: 1px solid rgba(160,100,255,.4);
  color: #fff; font-size: 13px; font-weight: 500;
}
.about-box__pill svg { color: #C69BFF; }
.about-box__clip { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; pointer-events: none; }
.about-box__arc {
  position: absolute; z-index: 0; width: 760px; height: 760px; border-radius: 50%;
  bottom: -560px; border: 1px solid rgba(154,91,255,.3);
  box-shadow: inset 0 0 90px rgba(124,44,255,.14);
  pointer-events: none;
}
.about-box__arc--l { left: -400px; }
.about-box__arc--r { right: -400px; }
.about-box__word {
  position: relative; z-index: 1;
  font-size: clamp(64px, 8vw, 128px); font-weight: 900; line-height: .95; letter-spacing: -0.02em;
  color: rgba(120,60,200,.22);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, rgba(0,0,0,.25));
          mask-image: linear-gradient(180deg, #000 30%, rgba(0,0,0,.25));
  user-select: none;
}
.about-box__content { position: relative; z-index: 2; margin-top: -0.12em; }
.about-box__lead {
  max-width: 380px; margin: 0 auto 8px;
  font-size: clamp(19px, 1.5vw, 23px); font-weight: 600; line-height: 1.28; color: #fff;
}
.about-box__sub {
  max-width: 300px; margin: 0 auto;
  font-size: clamp(16px, 1.2vw, 19px); line-height: 1.32; color: rgba(255,255,255,.48);
}

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .solutions__panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-card:nth-child(2n) { border-right: none; }
  .solution-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 720px) {
  .solutions { padding: 90px 0 90px; }
  .solutions__header { padding-left: 0; margin-bottom: 32px; }
  .solutions__title { font-size: clamp(34px, 10vw, 44px); }
  .solutions__panel { grid-template-columns: minmax(0, 1fr); border-radius: 18px; }
  .solution-card { min-height: 0; padding: 26px 22px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .solution-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .solution-card:last-child { border-bottom: none; }
  .solution-card__visual { height: 110px; margin-bottom: 14px; }
  .solution-card__icon { width: 200px; height: 200px; }
  .solution-card__title { font-size: 21px; }
  .about-wrap { margin-top: 64px; }
  .about-box { padding: 46px 20px 48px; border-radius: 22px; }
  .about-box__arc { width: 460px; height: 460px; bottom: -340px; }
  .about-box__arc--l { left: -260px; } .about-box__arc--r { right: -260px; }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-alt);
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-left 26s linear infinite;
  color: var(--text-faint);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; }
.section--alt { background: var(--bg-alt); }

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 680px;
  margin: 0 0 20px;
}
.section__desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 0 20px;
}

/* ============ GRID / CARDS ============ */
.grid { display: grid; gap: 24px; margin-top: 48px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(23,23,26,.4) 100%);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.18); }

.card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(91, 108, 255, .12);
  color: var(--accent-2);
  margin-bottom: 20px;
}
.card__title { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.card__text { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ============ ABOUT / STATS ============ */
.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
}
.stat__number, .stat__suffix {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent-2);
}
.stat__label { color: var(--text-muted); font-size: 13px; margin: 8px 0 0; }

/* ============ TIMELINE ============ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.timeline__item {
  border-top: 2px solid var(--panel-border);
  padding-top: 20px;
  position: relative;
}
.timeline__number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.timeline__item h3 { margin: 0 0 8px; font-size: 18px; }
.timeline__item p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* ============ PORTFOLIO ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.portfolio-card {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  border: 1px dashed var(--panel-border);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-faint);
}
.portfolio-card span { font-weight: 700; color: var(--text-muted); }

/* ============ QUOTES ============ */
.quote {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin: 0;
}
.quote p {
  font-size: 15.5px;
  color: var(--text);
  margin: 0 0 16px;
}
.quote footer { font-size: 13px; color: var(--text-faint); }

/* ============ ACCORDION ============ */
.accordion__item {
  border-bottom: 1px solid var(--panel-border);
}
.accordion__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16.5px;
  font-weight: 600;
  padding: 22px 4px;
  text-align: left;
}
.accordion__icon {
  color: var(--accent-2);
  font-size: 20px;
  transition: transform .3s var(--ease);
}
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }

.accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.accordion__answer p {
  margin: 0 4px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ============ CONTACT ============ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__list { margin-top: 20px; }
.contact__list li { color: var(--text-muted); font-size: 14.5px; margin-bottom: 8px; }

.contact__form {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form input,
.contact__form select {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 14.5px;
  font-family: inherit;
}
.contact__form input:focus,
.contact__form select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============ FOOTER ============ */
.footer { padding: 48px 0 28px; border-top: 1px solid var(--panel-border); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer__nav, .footer__social {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer__nav a:hover, .footer__social a:hover { color: var(--text); }
.footer__copy {
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  margin: 0;
}

/* ============ TO TOP ============ */
.to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 90;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .about, .contact__inner { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { height: auto; min-height: 100svh; padding: 132px 24px 64px; }
  .hero__inner { position: static; height: auto; }
  .hero__text {
    position: static;
    transform: none;
    width: 100%;
    max-width: 560px;
    margin-bottom: 48px;
  }
  .hero__symbol {
    position: static;
    transform: none;
    width: 80%;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero__editorial--top { display: none; }
  .hero__orbital { display: none; }
  .hero__meta { display: none; }
  .mask-inner { white-space: normal; }

}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(27, 10, 56, .97);
    backdrop-filter: blur(14px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--panel-border);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
  }
  .nav--open .nav { transform: translateY(0); }
  .burger { display: flex; }
  .header__actions .btn--outline { display: none; }
  .nav--open .header__actions .btn--outline { display: inline-flex; }

  .grid--4, .grid--3, .timeline, .portfolio-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }

  .hero__title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero__subtitle { max-width: none; }
  .hero__scroll { bottom: 22px; }
  .hero__word { font-size: 32vw; bottom: -8vw; }

}

/* prefers-reduced-motion intentionally NOT used to gate hero animations right now —
   this machine reports reduce:true at the OS level, which was silently killing
   every entrance/parallax/scroll animation. Revisit with a lighter touch later. */

/* ============ PROJETOS ============ */
.projects {
  position: relative; overflow: hidden;
  padding: 90px 0 110px;
  background: #08050d;
}
.projects__bg { position: absolute; inset: 0; pointer-events: none; }
.projects__glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.projects__glow--a { width: 640px; height: 640px; left: 26%; top: 20%; background: radial-gradient(circle, rgba(120,40,255,.16), transparent 60%); }
.projects__glow--b { width: 520px; height: 520px; right: -6%; top: 8%; background: radial-gradient(circle, rgba(120,40,255,.14), transparent 60%); }
.projects__glow--c { width: 560px; height: 360px; left: -8%; bottom: 0; background: radial-gradient(circle, rgba(120,40,255,.10), transparent 60%); }
.projects .container--wide { max-width: 1500px; width: 90%; }
.projects__inner { position: relative; z-index: 2; }

/* ---- topo ---- */
.pj-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 0 20px; margin-bottom: 44px; }
.pj-pill {
  display: inline-flex; align-items: center; gap: 12px; height: 38px; padding: 0 20px 0 16px;
  border-radius: 999px; background: rgba(124,44,255,.08); border: 1px solid rgba(150,90,255,.3);
  font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 14px;
}
.pj-pill i { width: 8px; height: 8px; border-radius: 50%; background: #9A5BFF; box-shadow: 0 0 10px #7C2CFF; }
.pj-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(46px, 4.7vw, 78px); line-height: 1; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 16px;
}
.pj-line { display: block; overflow: hidden; padding: 0 .1em .12em 0; margin-bottom: -.08em; }
.pj-line__in { display: block; }
.pj-title__accent {
  font-weight: 600;
  background: linear-gradient(90deg, #7C2CFF, #A760FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pj-sub { margin: 0; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.5; color: rgba(255,255,255,.62); }
.pj-head__right { display: flex; align-items: flex-start; gap: 60px; padding-top: 44px; }
.pj-head__text { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.58); }
.pj-head__meta {
  margin: 0; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.18);
  font-size: 11.5px; line-height: 1.35; letter-spacing: .12em; color: rgba(255,255,255,.55);
}

/* ---- case principal ---- */
.pj-case {
  position: relative;
  border: 1px solid rgba(145,80,255,.32); border-radius: 28px;
  background: linear-gradient(135deg, rgba(18,10,28,.94), rgba(8,5,13,.98));
  margin-top: 18px;
}
.pj-case__bg { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none; }
.pj-case__arc { position: absolute; border-radius: 50%; border: 1px solid rgba(154,91,255,.16); }
.pj-case__arc--a { width: 900px; height: 900px; left: 22%; top: -300px; }
.pj-case__arc--b { width: 640px; height: 640px; right: -180px; bottom: -380px; border-color: rgba(154,91,255,.22); }
.pj-case__glow { position: absolute; left: 30%; right: 6%; bottom: -40%; height: 70%; background: radial-gradient(ellipse at center, rgba(124,44,255,.28), transparent 65%); }
.pj-case__bignum {
  position: absolute; right: 2.4%; top: 6%;
  font-size: clamp(120px, 14vw, 240px); font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  color: rgba(124,44,255,.14);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 92%); mask-image: linear-gradient(180deg, #000 30%, transparent 92%);
}
.pj-scroll { position: absolute; z-index: 4; right: 0; top: -70px; display: flex; align-items: center; gap: 14px; }
.pj-scroll__mouse { width: 26px; height: 44px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; display: flex; justify-content: center; padding-top: 9px; }
.pj-scroll__mouse i { width: 2px; height: 6px; border-radius: 2px; background: #C79BFF; animation: pjWheel 1.8s ease-in-out infinite; }
@keyframes pjWheel { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(8px); opacity: .2; } }
.pj-scroll p { margin: 0; font-size: 11px; line-height: 1.4; letter-spacing: .14em; color: rgba(255,255,255,.4); }

.pj-slides { position: relative; display: grid; }
.pj-slide { grid-area: 1 / 1; position: relative; min-height: 470px; }
.pj-slide:not(.is-active) { visibility: hidden; }
.pj-slide__text { position: relative; z-index: 3; width: 34%; padding: 46px 0 46px 43px; }
.pj-slide__idx { margin: 0 0 24px; font-size: 15px; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.pj-slide__idx b { font-weight: 500; color: #A760FF; }
.pj-slide__logo { height: 52px; margin-bottom: 26px; display: flex; align-items: center; }
.pj-slide__logo img { max-height: 52px; max-width: 220px; object-fit: contain; }
.pj-logo-text { font-size: 30px; font-weight: 800; font-style: italic; letter-spacing: -0.02em; color: #fff; line-height: .9; }
.pj-logo-text small { display: block; font-size: 17px; letter-spacing: .04em; margin-left: 26px; }
.pj-slide__title { margin: 0 0 16px; font-size: clamp(22px, 1.9vw, 28px); font-weight: 500; line-height: 1.16; letter-spacing: -0.01em; color: #fff; max-width: 330px; }
.pj-slide__desc { margin: 0 0 22px; font-size: 14.5px; line-height: 1.4; color: rgba(255,255,255,.55); max-width: 320px; }
.pj-slide__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 30px; }
.pj-slide__tags li { padding: 8px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.pj-slide__cta {
  display: inline-flex; align-items: center; gap: 12px; height: 42px; padding: 0 24px; border-radius: 999px;
  border: 1px solid rgba(167,96,255,.7); background: rgba(124,44,255,.1); color: #fff; font-size: 14px; font-weight: 500;
  box-shadow: 0 0 22px rgba(124,44,255,.25); transition: background .35s var(--ease), transform .35s var(--ease);
}
.pj-slide__cta:hover { background: rgba(124,44,255,.25); transform: translateY(-2px); }

/* ---- mockups ---- */
.pj-mock { position: absolute; z-index: 2; left: 35%; right: 10.5%; top: -64px; bottom: 18px; pointer-events: none; }
.pj-laptop {
  position: absolute; left: 0; top: 0; width: 74%;
  transform-origin: 30% 100%; transform: perspective(2000px) rotateY(10deg) rotateZ(-4deg);
  filter: drop-shadow(0 40px 50px rgba(0,0,0,.6)) drop-shadow(0 0 60px rgba(124,44,255,.25));
}
.pj-laptop__lid { padding: 2.6%; border-radius: 22px 22px 8px 8px; background: linear-gradient(160deg, #2a2733, #0d0b12); border: 1px solid rgba(255,255,255,.16); }
.pj-laptop__base { height: 14px; margin: 0 -7%; border-radius: 0 0 40px 40px / 0 0 14px 14px; background: linear-gradient(180deg, #4a4655, #17141d); border-top: 1px solid rgba(255,255,255,.25); box-shadow: 0 30px 40px -10px rgba(124,44,255,.35); }
.pj-phone {
  position: absolute; right: 1%; bottom: 0; width: 27%; aspect-ratio: 9 / 18; padding: 3.2%;
  border-radius: 34px; background: linear-gradient(160deg, #3a3745, #0d0b12); border: 1px solid rgba(255,255,255,.22);
  transform: perspective(1600px) rotateY(-10deg) rotateZ(-4deg);
  filter: drop-shadow(0 34px 40px rgba(0,0,0,.65)) drop-shadow(0 0 40px rgba(124,44,255,.25));
}
.pj-screen { position: relative; overflow: hidden; container-type: inline-size; width: 100%; height: 100%; background: #0a0810; }
.pj-laptop .pj-screen { aspect-ratio: 16 / 10; height: auto; border-radius: 6px; }
.pj-phone .pj-screen { border-radius: 26px; }
.pj-screen__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* tela provisória (some quando o print real existe em assets/projects/) */
.pj-ph {
  position: absolute; inset: 0; padding: 5cqw 6cqw;
  background: radial-gradient(120% 90% at 78% 60%, color-mix(in srgb, var(--pj-accent) 45%, #0a0810), #0a0810 70%);
}
.pj-ph__nav { display: flex; justify-content: space-between; align-items: center; font-size: 3cqw; letter-spacing: .04em; color: #fff; }
.pj-ph__nav span { width: 20cqw; height: .8cqw; background: rgba(255,255,255,.3); border-radius: 2px; }
.pj-ph h4 { margin: 14cqw 0 2.4cqw; font-size: 6.2cqw; line-height: 1.12; font-weight: 700; color: #fff; }
.pj-ph p { margin: 0 0 4cqw; font-size: 2.2cqw; color: rgba(255,255,255,.65); max-width: 44cqw; }
.pj-ph em { display: inline-block; font-style: normal; padding: 1.6cqw 4cqw; border-radius: 99px; background: var(--pj-accent); color: #fff; font-size: 2.4cqw; font-weight: 600; }
.pj-ph--m { padding: 9cqw 8cqw; }
.pj-ph--m .pj-ph__nav { font-size: 6cqw; }
.pj-ph--m .pj-ph__nav span { width: 8cqw; }
.pj-ph--m h4 { margin-top: 26cqw; font-size: 11cqw; }
.pj-ph--m p { font-size: 5cqw; max-width: none; }
.pj-ph--m em { font-size: 5cqw; padding: 3cqw 7cqw; }

/* ---- navegação vertical ---- */
.pj-nav {
  position: absolute; z-index: 5; right: 0; top: 154px; width: 129px;
  display: flex; flex-direction: column; gap: 0; padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.pj-nav__item { background: none; border: 0; padding: 0; margin-bottom: 30px; text-align: left; cursor: pointer; font: inherit; color: rgba(255,255,255,.5); transition: color .35s var(--ease); }
.pj-nav__item span { display: block; font-size: 13px; margin-bottom: 8px; color: rgba(255,255,255,.75); }
.pj-nav__item small { display: block; font-size: 12px; }
.pj-nav__item:hover small { color: #fff; }
.pj-nav__item.is-active span { color: #fff; }
.pj-nav__item.is-active small { color: #A760FF; }

/* ---- fechamento ---- */
.pj-closing { margin-top: 44px; }
.pj-closing__top { display: flex; align-items: center; gap: 36px; }
.pj-closing__rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.14)); }
.pj-closing__rule:last-child { background: linear-gradient(270deg, transparent, rgba(255,255,255,.14)); }
.pj-closing__kicker { margin: 0; font-size: 14px; letter-spacing: .3em; color: rgba(255,255,255,.62); white-space: nowrap; }
.pj-closing__kicker em { font-style: normal; color: rgba(255,255,255,.35); }
.pj-closing__main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-top: -8px; padding: 0 4px; }
.pj-closing__big {
  margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 600;
  font-size: clamp(64px, 6.2vw, 104px); line-height: 1.1; padding: 0 .1em .08em 0;
  background: linear-gradient(90deg, #7C2CFF, #A760FF); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pj-closing__meta { margin: 0; padding-left: 16px; border-left: 1px solid rgba(255,255,255,.18); font-size: 11.5px; line-height: 1.4; letter-spacing: .14em; color: rgba(255,255,255,.5); }
.pj-closing__meta--l { justify-self: start; margin-left: 19px; }
.pj-closing__right { justify-self: end; display: flex; align-items: center; gap: 40px; }
.pj-closing__btn {
  display: inline-flex; align-items: center; gap: 14px; height: 52px; padding: 0 30px; border-radius: 999px; white-space: nowrap;
  border: 1px solid rgba(167,96,255,.6); background: rgba(124,44,255,.06); color: #fff; font-size: 14.5px; font-weight: 500;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.pj-closing__btn:hover { background: rgba(124,44,255,.22); transform: translateY(-2px); }

/* ---- responsivo ---- */
@media (max-width: 1100px) {
  .pj-head__right { display: none; }
  .pj-scroll { display: none; }
  .pj-case { margin-top: 40px; }
  .pj-slide { min-height: 0; padding-bottom: 12px; }
  .pj-slide__text { width: 100%; padding: 36px 32px 0; }
  .pj-slide__title, .pj-slide__desc { max-width: 520px; }
  .pj-mock { position: relative; left: auto; right: auto; top: auto; bottom: auto; height: 400px; margin: 10px 32px 10px; }
  .pj-laptop { width: 78%; }
  .pj-nav { position: static; flex-direction: row; width: auto; padding: 18px 32px 22px; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); gap: 34px; overflow-x: auto; }
  .pj-nav__item { margin: 0; flex: none; }
  .pj-closing__main { grid-template-columns: 1fr; gap: 24px; justify-items: center; text-align: center; }
  .pj-closing__meta--l { display: none; }
  .pj-closing__right { justify-self: center; flex-direction: column; gap: 22px; }
  .pj-closing__meta { border-left: 0; padding-left: 0; text-align: center; }
}
@media (max-width: 720px) {
  .projects { padding: 70px 0 80px; }
  .pj-head { padding: 0; margin-bottom: 26px; }
  .pj-slide__text { padding: 30px 22px 0; }
  .pj-mock { height: 300px; margin: 6px 14px; }
  .pj-laptop { width: 76%; left: 5%; transform: perspective(1400px) rotateY(8deg) rotateZ(-3deg); }
  .pj-phone { width: 34%; border-radius: 22px; }
  .pj-phone .pj-screen { border-radius: 16px; }
  .pj-nav { padding: 16px 22px 20px; gap: 26px; }
  .pj-case__bignum { font-size: 110px; }
  .pj-closing__kicker { font-size: 11px; letter-spacing: .2em; white-space: normal; text-align: center; }
  .pj-closing__top { gap: 14px; }
  .pj-closing__btn { height: 48px; padding: 0 22px; font-size: 13.5px; white-space: normal; text-align: center; }
}

/* mockups reais (PNG transparente com perspectiva já embutida) */
.pj-mock .pj-laptop--img { height: auto; transform: none; filter: drop-shadow(0 40px 45px rgba(0,0,0,.55)) drop-shadow(0 0 50px rgba(124,44,255,.22)); }
.pj-mock .pj-phone--img { height: auto; aspect-ratio: auto; padding: 0; border: 0; border-radius: 0; background: none; transform: none; filter: drop-shadow(0 30px 35px rgba(0,0,0,.6)) drop-shadow(0 0 40px rgba(124,44,255,.22)); }
@media (min-width: 1101px) {
  .pj-mock .pj-laptop--img { width: 80%; }
  .pj-mock .pj-phone--img { width: 36%; right: -1%; bottom: -4%; }
}

/* telas trocáveis sobre os PNGs dos dispositivos (posicionadas por projects.js via matrix3d) */
.pj-mock .pj-dev__img { display: block; width: 100%; height: auto; }
.pj-mock .pj-dev__screen { position: absolute; left: 0; top: 0; height: auto; aspect-ratio: auto; transform-origin: 0 0; background: #0a0810; }
.pj-mock .pj-dev__screen--laptop { width: 1000px; height: 625px; border-radius: 10px; }
.pj-mock .pj-dev__screen--phone { width: 1000px; height: 2170px; border-radius: 120px; }
.pj-dev__screen--laptop::after, .pj-dev__screen--phone::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); background: #000; z-index: 3; }
.pj-dev__screen--laptop::after { top: 0; width: 12%; height: 4.6%; border-radius: 0 0 26px 26px; }
.pj-dev__screen--phone::after { top: 2.2%; width: 30%; height: 2.2%; border-radius: 99px; }

/* ============ NOSSO PROCESSO ============ */
/* Composição desenhada nos px da referência (1672 de largura): --u = 1px em 1672px de tela,
   cresce/encolhe com a tela (teto em 1920px). Nada de transform: scale(). */
.process {
  --u: clamp(.6px, .0598vw, 1.15px);
  position: relative; overflow: hidden; background: #07040b;
  display: flex; align-items: center; justify-content: center;
  min-height: max(900px, calc(941 * var(--u)));
}
.process__bg { position: absolute; inset: 0; pointer-events: none; }

/* glows */
.pn-glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.pn-glow--tl { width: 34vw; height: 46vw; left: -20vw; top: -6vw; background: radial-gradient(circle, rgba(110,35,255,.42), transparent 62%); }
.pn-glow--tr { width: 30vw; height: 14vw; right: -6vw; top: -8vw; background: radial-gradient(circle, rgba(110,35,255,.34), transparent 62%); }
.pn-glow--br { width: 34vw; height: 22vw; right: -12vw; bottom: -8vw; background: radial-gradient(circle, rgba(120,45,255,.55), transparent 62%); }
.pn-glow--bl { width: 30vw; height: 16vw; left: -12vw; bottom: -6vw; background: radial-gradient(circle, rgba(110,35,255,.30), transparent 62%); }

/* arcos finos nas extremidades */
.pn-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(125,44,255,.35); box-shadow: 0 0 80px rgba(110,35,255,.08); }
.pn-ring--l { width: calc(532 * var(--u)); height: calc(532 * var(--u)); left: calc(-427 * var(--u)); top: calc(22 * var(--u)); }
.pn-ring--r { width: calc(680 * var(--u)); height: calc(680 * var(--u)); right: calc(-598 * var(--u)); top: calc(-140 * var(--u)); border-color: rgba(125,44,255,.32); }
.pn-ring-dot { position: absolute; width: calc(7 * var(--u)); height: calc(7 * var(--u)); min-width: 5px; min-height: 5px; border-radius: 50%; background: #8f3dff; box-shadow: 0 0 12px 2px rgba(143,61,255,.8); }
.pn-ring-dot--l { left: calc(88 * var(--u)); top: calc(371 * var(--u)); }
.pn-ring-dot--r { right: calc(58 * var(--u)); top: calc(290 * var(--u)); }

/* matrizes de pontos */
.pn-dots {
  position: absolute; opacity: .55;
  background-image: radial-gradient(circle, rgba(145,65,255,.6) 1.3px, transparent 1.5px); background-size: 18px 18px;
}
.pn-dots--l { left: 0; top: calc(112 * var(--u)); width: calc(200 * var(--u)); height: calc(330 * var(--u));
  -webkit-mask-image: linear-gradient(100deg, #000 10%, transparent 90%); mask-image: linear-gradient(100deg, #000 10%, transparent 90%); }
.pn-dots--r { right: calc(50 * var(--u)); top: calc(372 * var(--u)); width: calc(170 * var(--u)); height: calc(230 * var(--u));
  -webkit-mask-image: linear-gradient(260deg, #000 10%, transparent 85%); mask-image: linear-gradient(260deg, #000 10%, transparent 85%); }

/* onda digital inferior */
.pn-wave { position: absolute; left: 0; bottom: 0; width: 100%; height: calc(260 * var(--u)); min-height: 200px; }

/* ---- palco ---- */
.pc-stage { position: relative; z-index: 2; flex: none; width: calc(1672 * var(--u)); height: calc(941 * var(--u)); }
.pc-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 1; pointer-events: none; }
.pc-svg--top { z-index: 3; }
.pc-conn { fill: none; stroke: #8a35ff; stroke-width: 2; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(138,53,255,.55)); }
.pc-dot { fill: #7c2cff; stroke: rgba(210,170,255,.9); stroke-width: 1.5; opacity: .45; transition: opacity .5s, filter .5s; }
.pc-dot.is-on { opacity: 1; filter: drop-shadow(0 0 8px rgba(143,61,255,.95)); }

.pc-pill {
  position: absolute; z-index: 3; left: 50%; top: calc(68 * var(--u)); transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: calc(11 * var(--u)); padding: calc(9 * var(--u)) calc(20 * var(--u)) calc(9 * var(--u)) calc(16 * var(--u));
  border-radius: 999px; border: 1px solid rgba(145,70,255,.55); background: rgba(110,30,220,.08);
  font-size: max(12px, calc(14.5 * var(--u))); font-weight: 500; color: #fff; white-space: nowrap;
}
.pc-pill i { width: calc(8 * var(--u)); height: calc(8 * var(--u)); min-width: 6px; min-height: 6px; border-radius: 50%; background: #9A5BFF; box-shadow: 0 0 10px 2px rgba(124,44,255,.8); }
.pc-title {
  position: absolute; z-index: 3; left: 0; right: 0; top: calc(112 * var(--u)); margin: 0; text-align: center;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; font-style: italic; font-weight: 500;
  font-size: max(52px, calc(84 * var(--u))); line-height: .8; letter-spacing: -0.02em; color: #fff;
}
.pc-line { display: block; overflow: hidden; padding: .2em .1em .04em; margin-bottom: -.2em; }
.pc-line__in { display: block; }
.pc-title__accent { font-weight: 600; font-size: 1.07em; background: linear-gradient(90deg, #7C2CFF, #A95CFF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pc-desc {
  position: absolute; z-index: 3; left: 50%; top: calc(283 * var(--u)); width: calc(420 * var(--u)); min-width: 320px; transform: translateX(-50%); margin: 0; text-align: center;
  font-size: max(14.5px, calc(17.5 * var(--u))); line-height: 1.4; color: rgba(255,255,255,.7);
}
.pc-tag {
  position: absolute; z-index: 3; margin: 0; padding-left: calc(24 * var(--u)); border-left: 1px solid rgba(160,90,255,.6);
  font-size: max(10px, calc(11.5 * var(--u))); line-height: 1.4; letter-spacing: .24em; color: rgba(210,185,255,.6);
}
.pc-tag--l { left: calc(223 * var(--u)); top: calc(163 * var(--u)); }
.pc-tag--r { left: calc(1411 * var(--u)); top: calc(153 * var(--u)); letter-spacing: .2em; }
.pc-note { position: absolute; z-index: 3; left: calc(1216 * var(--u)); top: calc(203 * var(--u)); color: rgba(160,75,255,.85); transform: rotate(-9deg); }
.pc-note p { margin: 0; font-family: "Caveat", "Segoe Script", cursive; font-size: max(15px, calc(20 * var(--u))); line-height: 1.12; letter-spacing: .03em; }
.pc-note svg { position: absolute; left: calc(100 * var(--u)); top: calc(4 * var(--u)); width: calc(60 * var(--u)); height: calc(60 * var(--u)); }

/* ---- cards em zigue-zague ---- */
.pc-card {
  position: absolute; z-index: 2; width: calc(267 * var(--u)); height: calc(343 * var(--u)); box-sizing: border-box;
  padding: calc(35 * var(--u)) calc(30 * var(--u)) 0;
  border: 1px solid rgba(125,60,220,.40); border-radius: calc(14 * var(--u));
  background: linear-gradient(180deg, rgba(20,11,34,.98), rgba(11,6,19,.99));
  opacity: .55; transition: opacity .6s var(--ease), border-color .6s var(--ease);
}
.pc-card.is-on { opacity: 1; border-color: rgba(140,75,240,.55); }
.pc-card--1 { left: calc(203 * var(--u)); top: calc(358 * var(--u)); }
.pc-card--2 { left: calc(542 * var(--u)); top: calc(415 * var(--u)); }
.pc-card--3 { left: calc(862 * var(--u)); top: calc(380 * var(--u)); }
.pc-card--4 { left: calc(1207 * var(--u)); top: calc(433 * var(--u)); }
.pc-card__head { display: flex; align-items: flex-start; }
.pc-card__num { width: calc(53 * var(--u)); padding-top: calc(15 * var(--u)); font-size: max(18px, calc(25 * var(--u))); line-height: 1; color: rgba(255,255,255,.55); }
.pc-card__icon {
  display: grid; place-items: center; width: calc(76 * var(--u)); height: calc(74 * var(--u)); box-sizing: border-box; border-radius: calc(14 * var(--u)); color: #a35cff;
  border: 1px solid rgba(145,70,255,.55); background: rgba(90,30,180,.10); transition: box-shadow .6s var(--ease), background .6s var(--ease);
}
.pc-card.is-on .pc-card__icon { box-shadow: 0 0 22px rgba(124,44,255,.45), inset 0 0 12px rgba(124,44,255,.18); background: rgba(90,30,180,.18); }
.pc-card__icon svg { width: 40%; height: 40%; }
.pc-card__title { margin: calc(16 * var(--u)) 0 0; font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; font-style: normal; font-weight: 600; font-size: max(22px, calc(30 * var(--u))); line-height: 1.15; letter-spacing: -0.005em; color: #fff; }
.pc-card__text { margin: calc(10 * var(--u)) 0 0; font-size: max(13.5px, calc(16.5 * var(--u))); line-height: calc(24 * var(--u)); min-height: calc(72 * var(--u)); color: rgba(255,255,255,.65); }
.pc-card__dash { display: block; width: calc(24 * var(--u)); height: 1.5px; margin: calc(16 * var(--u)) 0 calc(17 * var(--u)); background: #8a3cff; }
.pc-card__foot { margin: 0; font-size: max(10px, calc(11 * var(--u))); font-weight: 700; line-height: calc(16 * var(--u)); letter-spacing: .25em; color: #9C55FF; }

/* ---- faixa inferior ---- */
.pc-bottom { position: absolute; z-index: 3; left: 0; right: 0; top: calc(815 * var(--u)); height: calc(70 * var(--u)); }
.pc-bottom p { margin: 0; font-size: max(10px, calc(11 * var(--u))); line-height: calc(16 * var(--u)); letter-spacing: .22em; color: rgba(255,255,255,.55); }
.pc-bottom__l { position: absolute; left: calc(92 * var(--u)); top: calc(21 * var(--u)); padding-left: calc(24 * var(--u)); border-left: 2px solid rgba(160,90,255,.7); height: calc(34 * var(--u)); }
.pc-bottom__c { position: absolute; left: calc(360 * var(--u)); width: calc(970 * var(--u)); top: calc(36 * var(--u)); display: flex; align-items: center; justify-content: center; gap: calc(34 * var(--u)); letter-spacing: .3em; }
.pc-bottom__c span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(160,90,255,.35), transparent); }
.pc-bottom__c span:last-child { background: linear-gradient(90deg, transparent, rgba(160,90,255,.35), transparent); }
.pc-bottom__r { position: absolute; left: calc(1425 * var(--u)); top: calc(2 * var(--u)); padding-left: calc(24 * var(--u)); border-left: 2px solid rgba(160,90,255,.7); height: calc(66 * var(--u)); }

/* ---- tablet ---- */
@media (max-width: 1100px) {
  .process { --u: 1px; display: block; min-height: 0; padding: 64px 0 150px; }
  .pc-stage { width: min(92vw, 820px); height: auto; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .pc-svg, .pc-tag, .pc-note { display: none; }
  .pc-pill, .pc-title, .pc-desc, .pc-bottom { position: static; transform: none; }
  .pc-pill { justify-self: center; grid-column: 1 / -1; }
  .pc-title { grid-column: 1 / -1; font-size: clamp(50px, 9vw, 76px); }
  .pc-desc { grid-column: 1 / -1; justify-self: center; width: min(100%, 520px); font-size: 16.5px; margin-bottom: 14px; }
  .pc-card { position: static; width: auto; height: auto; padding: 26px 24px 26px; border-radius: 14px; }
  .pc-card__num { width: 46px; padding-top: 12px; font-size: 22px; }
  .pc-card__icon { width: 64px; height: 62px; border-radius: 12px; }
  .pc-card__title { margin-top: 18px; font-size: 27px; }
  .pc-card__text { min-height: 0; font-size: 15.5px; line-height: 1.5; }
  .pc-card__dash { margin: 16px 0; width: 24px; }
  .pc-card__foot { font-size: 10.5px; line-height: 1.6; }
  .pc-card--2, .pc-card--4 { margin-top: 26px; }
  .pc-bottom { grid-column: 1 / -1; height: auto; margin-top: 56px; display: grid; gap: 22px; justify-items: center; text-align: center; }
  .pc-bottom p { position: static; }
  .pc-bottom__l, .pc-bottom__r { border-left: 0; padding-left: 0; height: auto; }
  .pc-bottom__c { position: static; width: 100%; }
  .pn-wave { height: 200px; }
  .pn-ring--l { width: 360px; height: 360px; left: -290px; top: 40px; }
  .pn-ring--r { width: 440px; height: 440px; right: -380px; top: -120px; }
  .pn-ring-dot, .pn-dots { display: none; }
}
/* ---- mobile: cards empilhados + curva vertical ---- */
@media (max-width: 720px) {
  .process { padding: 56px 0 130px; }
  .pc-stage { grid-template-columns: 1fr; gap: 44px; }
  .pc-title { font-size: clamp(44px, 12.5vw, 60px); }
  .pc-card--2, .pc-card--4 { margin-top: 0; }
  .pc-svg { display: block; }
  .pc-bottom__c { flex-direction: column; gap: 12px; }
  .pc-bottom__c span { display: none; }
  .pn-wave { height: 150px; }
}



/* ============ CONTATO + FOOTER ============ */
.contact-section {
  --ct-w: min(90vw, 1500px);
  position: relative; overflow: hidden; background: #06030a;
  padding: clamp(30px, 2.4vw, 56px) 0 clamp(20px, 1.6vw, 32px);
}
.contact-section__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(38vw 22vw at 0% 0%, rgba(124,44,255,.20), transparent 65%),
    radial-gradient(34vw 20vw at 100% 0%, rgba(124,44,255,.26), transparent 65%),
    radial-gradient(40vw 16vw at 50% 100%, rgba(124,44,255,.08), transparent 70%);
}
.contact-grid {
  position: relative; z-index: 2; width: var(--ct-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.61fr 1fr; gap: clamp(18px, 1.15vw, 26px);
}

/* ---- painel esquerdo ---- */
.contact-visual {
  container-type: inline-size;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  min-height: clamp(540px, 36vw, 700px);
  padding: 4.2% 5.2% 4.8% 6.6%;
  border: 1px solid rgba(145,70,255,.55); border-radius: clamp(22px, 1.75vw, 30px);
  background: linear-gradient(135deg, rgba(11,7,18,.98), rgba(8,4,12,.97));
  box-shadow: 0 0 60px rgba(124,44,255,.10), inset 0 0 60px rgba(124,44,255,.05);
}
.contact-visual__art { position: absolute; inset: 0; pointer-events: none; -webkit-mask-image: linear-gradient(105deg, transparent 30%, #000 52%); mask-image: linear-gradient(105deg, transparent 30%, #000 52%); }
.ct-arc { position: absolute; border-radius: 50%; will-change: transform; }
.ct-arc--a { width: 291cqw; height: 291cqw; left: -165cqw; top: -8.3cqw; border: 1px solid rgba(150,80,255,.32); }
.ct-arc--b {
  width: 273cqw; height: 273cqw; left: -156.5cqw; top: 1cqw;
  border: 1px solid rgba(175,105,255,.75);
  background: radial-gradient(closest-side, transparent 90%, rgba(124,44,255,.22) 97%, rgba(140,60,255,.5) 100%);
  box-shadow: 0 0 3cqw rgba(124,44,255,.45), inset 0 0 5cqw rgba(124,44,255,.35);
}
.ct-dots {
  position: absolute; right: 1cqw; top: 0; width: 36cqw; height: 40cqw;
  background-image: radial-gradient(rgba(190,140,255,.55) 1px, transparent 1.4px); background-size: 2.15cqw 2.15cqw;
  -webkit-mask-image: linear-gradient(200deg, #000 20%, transparent 78%); mask-image: linear-gradient(200deg, #000 20%, transparent 78%);
}
.ct-brand { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
.ct-logo { display: block; width: clamp(100px, 12.5cqw, 190px); height: auto; margin-top: -.6cqw; }
.ct-brand__tag { margin-top: .5cqw; font-size: clamp(9px, .82cqw, 12px); letter-spacing: .42em; color: rgba(190,150,255,.45); }
.ct-top {
  position: absolute; z-index: 2; top: 6.5cqw; right: 5.6cqw; margin: 0;
  font-size: clamp(9.5px, .93cqw, 13px); letter-spacing: .36em; color: rgba(255,255,255,.62); white-space: nowrap;
}
.ct-top i { font-style: normal; margin: 0 1.3em; color: rgba(255,255,255,.5); }
.ct-copy { position: relative; z-index: 2; margin-top: clamp(70px, 6.6cqw, 130px); }
.ct-label { display: flex; align-items: center; gap: 4.4cqw; margin: 0 0 clamp(36px, 4.6cqw, 70px); font-size: clamp(10.5px, .95cqw, 13px); letter-spacing: .42em; color: rgba(200,170,255,.75); }
.ct-label span { width: 4.4cqw; height: 2px; background: #8a3cff; box-shadow: 0 0 10px rgba(138,60,255,.7); margin-right: -.6cqw; }
.ct-title { margin: 0; font-family: "Inter", "Manrope", sans-serif; font-weight: 700; font-size: clamp(40px, 8.6cqw, 150px); line-height: .98; letter-spacing: -0.035em; color: #fff; }
.ct-title em {
  display: block; margin-top: .02em; font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 1.2em; white-space: nowrap; letter-spacing: -0.01em; color: rgba(255,255,255,.88);
  background: linear-gradient(90deg, #fff 30%, #d9c6ff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ct-perks { position: relative; z-index: 2; list-style: none; display: flex; flex-wrap: wrap; gap: 1.8cqw 8cqw; padding: 0; margin: auto 0 0; padding-top: clamp(40px, 5cqw, 80px); }
.ct-perks li { display: flex; align-items: center; gap: 1.3cqw; font-size: clamp(13.5px, 1.72cqw, 22px); line-height: 1.32; color: rgba(255,255,255,.9); }
.ct-perks__ico {
  flex: none; display: grid; place-items: center; width: clamp(46px, 6.3cqw, 62px); height: clamp(46px, 6.3cqw, 62px);
  border-radius: 14px; color: #a760ff; border: 1px solid rgba(145,80,255,.38); background: rgba(124,44,255,.07);
  box-shadow: 0 0 24px rgba(124,44,255,.14);
}
.ct-perks__ico svg { width: 42%; height: 42%; }

/* ---- painel do formulário ---- */
.contact-form-panel {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 2.3vw, 44px) clamp(22px, 2.6vw, 48px) clamp(22px, 1.9vw, 34px);
  border: 1px solid rgba(150,80,255,.55); border-radius: clamp(22px, 1.75vw, 30px); background: #09060d;
  box-shadow: 0 0 60px rgba(124,44,255,.14), inset 0 0 40px rgba(124,44,255,.04);
}
.ct-form__title { margin: 0 0 clamp(18px, 1.9vw, 34px); font-size: clamp(26px, 1.85vw, 38px); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; color: #fff; }
.ct-form__title em { font-style: normal; color: #b66cff; }
.ct-form { display: flex; flex-direction: column; flex: 1; }
.ct-field { display: block; margin-bottom: clamp(10px, .8vw, 15px); }
.ct-field span { display: block; margin-bottom: 7px; font-size: clamp(13px, .82vw, 15px); font-weight: 600; color: #fff; }
.ct-field input, .ct-field textarea {
  width: 100%; box-sizing: border-box; font: inherit; font-size: clamp(14px, .9vw, 16px); color: #fff;
  background: rgba(255,255,255,.015); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; outline: 0;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ct-field input { height: clamp(46px, 2.85vw, 56px); padding: 0 16px; }
.ct-field textarea { height: clamp(88px, 5.3vw, 108px); padding: 14px 16px; resize: none; }
.ct-field input::placeholder, .ct-field textarea::placeholder { color: rgba(255,255,255,.5); }
.ct-field input:focus, .ct-field textarea:focus { border-color: rgba(167,96,255,.8); box-shadow: 0 0 0 3px rgba(124,44,255,.18); }
.ct-field.is-error input { border-color: rgba(255,110,140,.8); }
.ct-submit {
  margin-top: clamp(4px, .5vw, 10px); display: flex; align-items: center; justify-content: center; gap: 12px;
  height: clamp(52px, 3.2vw, 60px); border: 0; border-radius: 999px; cursor: pointer; font: inherit; font-size: clamp(14.5px, .92vw, 17px); font-weight: 600; color: #fff;
  background: linear-gradient(90deg, #7c2cff, #982bff); box-shadow: 0 0 28px rgba(125,44,255,.25);
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.ct-submit:hover { transform: translateY(-2px); filter: brightness(1.12); }
.ct-submit svg { width: 22px; height: 22px; flex: none; }
.ct-submit__arrow { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.ct-submit:hover .ct-submit__arrow { transform: translateX(3px); }
.ct-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: clamp(12px, 1vw, 18px) 0 0; font-size: clamp(11px, .72vw, 12.5px); color: rgba(255,255,255,.42); text-align: center; }
.ct-note svg { width: 13px; height: 13px; flex: none; }

/* ---- footer ---- */
.pediro-footer { position: relative; z-index: 2; width: min(1240px, 92vw); margin: 0 auto; }
.pf-grid {
  display: grid; grid-template-columns: 1.1fr 1fr 1.27fr 1.3fr; margin-top: clamp(30px, 2.6vw, 46px);
}
.pf-col { min-height: clamp(136px, 8.6vw, 166px); }
.pf-col + .pf-col { border-left: 1px solid rgba(160,90,255,.32); padding-left: clamp(22px, 2.6vw, 46px); }
.pf-col--loc { padding-right: clamp(16px, 2.6vw, 48px); }
.pf-label { margin: 0 0 clamp(10px, .9vw, 16px); font-size: clamp(9.5px, .6vw, 10.5px); font-weight: 600; letter-spacing: .32em; color: #b66cff; }
.pf-label--sm { margin: clamp(9px, .8vw, 14px) 0 6px; font-size: clamp(9px, .55vw, 10px); }
.pf-label--tag { margin-bottom: clamp(10px, 1vw, 18px); letter-spacing: .3em; color: rgba(190,150,255,.55); font-weight: 400; line-height: 1.7; }
.pf-label--tag b { font-weight: 600; color: rgba(190,150,255,.75); }
.pf-loc { display: flex; gap: clamp(12px, 1vw, 18px); }
.pf-loc svg { flex: none; width: clamp(19px, 1.25vw, 23px); height: clamp(19px, 1.25vw, 23px); color: #a760ff; margin-top: 2px; }
.pf-loc strong { display: block; font-size: clamp(14px, .92vw, 17px); font-weight: 500; color: #fff; margin-bottom: 4px; }
.pf-loc span { display: block; font-size: clamp(12px, .75vw, 13.5px); line-height: 1.32; color: rgba(255,255,255,.55); }
.pf-hr { border: 0; height: 1px; background: rgba(255,255,255,.14); margin: clamp(10px, .9vw, 16px) 0 0 clamp(31px, 2.25vw, 41px); }
.pf-col--loc .pf-label--sm, .pf-cnpj { margin-left: clamp(31px, 2.25vw, 41px); }
.pf-cnpj { margin-top: 0; margin-bottom: 0; font-size: clamp(12.5px, .8vw, 14.5px); color: rgba(255,255,255,.88); }
.pf-nav { display: flex; flex-direction: column; gap: clamp(6px, .6vw, 10px); }
.pf-nav a { width: max-content; font-size: clamp(14px, .95vw, 17px); color: #fff; transition: color .3s var(--ease), transform .3s var(--ease); }
.pf-nav a:hover { color: #a15bff; transform: translateX(3px); }
.pf-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: clamp(8px, .7vw, 13px); }
.pf-contact a, .pf-contact__static { display: flex; align-items: center; gap: clamp(12px, 1vw, 18px); font-size: clamp(13px, .82vw, 15px); color: #fff; transition: color .3s var(--ease); }
.pf-contact a:hover { color: #a15bff; }
.pf-contact svg { flex: none; width: clamp(19px, 1.2vw, 22px); height: clamp(19px, 1.2vw, 22px); color: #a760ff; }
.pf-contact small { display: block; font-size: .88em; line-height: 1.1; color: rgba(255,255,255,.6); }
.pf-col--cta { display: flex; align-items: center; justify-content: space-between; gap: clamp(14px, 1.6vw, 30px); }
.pf-cta__title { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(28px, 2.3vw, 40px); line-height: 1.02; color: #fff; }
.pf-cta__btn {
  flex: none; display: grid; place-items: center; width: clamp(48px, 3.3vw, 58px); height: clamp(48px, 3.3vw, 58px); border-radius: 50%; color: #fff;
  border: 1px solid rgba(155,80,255,.65); background: rgba(124,44,255,.06); box-shadow: 0 0 26px rgba(124,44,255,.35), inset 0 0 14px rgba(124,44,255,.14);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.pf-cta__btn svg { width: 40%; height: 40%; transition: transform .35s var(--ease); }
.pf-cta__btn:hover { background: rgba(124,44,255,.2); transform: translateY(-2px); }
.pf-cta__btn:hover svg { transform: translateX(3px); }
.pf-bottom { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 28px); margin-top: clamp(16px, 1.4vw, 26px); }
.pf-bottom__logo { width: clamp(54px, 3.9vw, 70px); height: auto; flex: none; }
.pf-bottom__line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(160,90,255,.55), rgba(160,90,255,.35)); }
.pf-bottom__copy { margin: 0; font-size: clamp(11px, .72vw, 12.5px); color: rgba(255,255,255,.55); white-space: nowrap; }
.pf-bottom__dash { flex: none; width: clamp(24px, 2vw, 36px); height: 2px; background: #8a3cff; box-shadow: 0 0 10px rgba(138,60,255,.7); }

/* ---- responsivo ---- */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-visual { min-height: 480px; padding: 42px 34px 34px; container-type: normal; }
  .ct-arc--a { width: 1400px; height: 1400px; left: -880px; top: -40px; }
  .ct-arc--b { width: 1320px; height: 1320px; left: -840px; top: 0; }
  .ct-dots { width: 300px; height: 320px; background-size: 20px 20px; }
  .ct-logo { width: 110px; }
  .ct-brand__tag { font-size: 10px; }
  .ct-top { top: 46px; right: 34px; font-size: 11px; }
  .ct-copy { margin-top: 80px; }
  .ct-label { gap: 34px; font-size: 12px; margin-bottom: 34px; }
  .ct-label span { width: 34px; }
  .ct-title { font-size: clamp(40px, 7vw, 66px); } .ct-title em { white-space: normal; font-size: 1.12em; }
  .ct-perks { gap: 22px 44px; padding-top: 44px; }
  .ct-perks li { font-size: 15px; gap: 14px; }
  .ct-perks__ico { width: 54px; height: 54px; }
  .pf-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .pf-col:nth-child(3) { border-left: 0; padding-left: 0; }
  .pf-col--cta { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
  .pf-col + .pf-col { padding-left: 34px; }
  .pf-col--loc { padding-right: 20px; }
}
@media (max-width: 720px) {
  .contact-section { padding-top: 40px; }
  .contact-visual { min-height: 0; padding: 34px 22px 26px; }
  .ct-top { display: none; }
  .ct-copy { margin-top: 56px; }
  .ct-title { font-size: clamp(34px, 10vw, 46px); }
  .ct-perks { flex-direction: column; align-items: flex-start; }
  .contact-form-panel { padding: 28px 22px 24px; }
  .ct-form__title { font-size: 26px; }
  .pf-grid { grid-template-columns: 1fr; row-gap: 32px; }
  .pf-col { min-height: 0; }
  .pf-col + .pf-col, .pf-col:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid rgba(160,90,255,.25); padding-top: 26px; }
  .pf-col--loc { padding-right: 0; }
  .pf-col--cta { gap: 20px; }
  .pf-cta__title { font-size: 34px; }
  .pf-bottom { flex-wrap: wrap; gap: 14px; }
  .pf-bottom__line { flex-basis: 100%; order: 3; }
  .pf-bottom__copy { white-space: normal; }
  .pf-bottom__dash { display: none; }
}

/* ============ FAQ / DÚVIDAS ============ */
.faq-section { position: relative; z-index: 2; padding: 0 0 clamp(48px, 4.2vw, 80px); }
.faq-section::before, .faq-section::after {
  content: ""; position: absolute; top: 18%; bottom: 8%; width: 22vw; pointer-events: none; filter: blur(60px);
}
.faq-section::before { left: -8vw; background: radial-gradient(ellipse at center, rgba(124,44,255,.30), transparent 65%); }
.faq-section::after { right: -8vw; background: radial-gradient(ellipse at center, rgba(124,44,255,.30), transparent 65%); }

.faq-container {
  position: relative; overflow: hidden; width: min(1220px, 92vw); margin: 0 auto;
  padding: clamp(36px, 3.4vw, 56px) clamp(20px, 3.9vw, 64px) clamp(36px, 3.4vw, 56px);
  border: 1px solid rgba(150,90,255,.35); border-radius: clamp(24px, 2.4vw, 40px);
  background: linear-gradient(180deg, rgba(18,13,24,.95), rgba(8,5,13,.98));
  box-shadow: 0 0 60px rgba(124,44,255,.10), inset 0 0 80px rgba(124,44,255,.04);
}
.faq-container::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(190,140,255,.35) 1px, transparent 1.3px); background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(90deg, #000 0, transparent 24%, transparent 76%, #000 100%); mask-image: linear-gradient(90deg, #000 0, transparent 24%, transparent 76%, #000 100%);
  opacity: .5;
}
.faq-header { position: relative; text-align: center; }
.faq-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 13px; border-radius: 999px;
  border: 1px solid rgba(150,90,255,.45); background: rgba(120,40,255,.08); color: #fff;
  font-size: clamp(12.5px, .8vw, 14px); font-weight: 500;
}
.faq-pill svg { width: 17px; height: 17px; color: #c79bff; }
.faq-title {
  margin: clamp(12px, 1vw, 18px) 0 0; font-size: clamp(34px, 2.7vw, 46px); font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; color: #fff;
  text-shadow: 0 0 32px rgba(180,120,255,.35);
}

.faq-list { position: relative; width: min(100%, 720px); margin: clamp(22px, 2.1vw, 36px) auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
.faq-q { margin: 0; font: inherit; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(14px, 1.15vw, 19px) 0; background: none; border: 0; cursor: pointer; text-align: left; font: inherit;
  font-size: clamp(17px, 1.15vw, 20px); font-weight: 600; letter-spacing: -0.01em; color: #fff;
}
.faq-question:focus-visible { outline: 2px solid #a760ff; outline-offset: 4px; border-radius: 8px; }
.faq-icon {
  position: relative; flex: none; width: clamp(32px, 2.1vw, 36px); height: clamp(32px, 2.1vw, 36px); border-radius: 50%;
  border: 1px solid rgba(155,80,255,.45); background: rgba(120,40,255,.08);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 38%; height: 1.5px; background: #fff; border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .4s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question:hover .faq-icon { border-color: rgba(175,110,255,.7); }
.faq-item.is-open .faq-icon { background: rgba(130,50,255,.18); border-color: rgba(175,110,255,.75); box-shadow: 0 0 18px rgba(130,50,255,.20); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer__in { overflow: hidden; min-height: 0; opacity: 0; transition: opacity .35s var(--ease); }
.faq-item.is-open .faq-answer__in { opacity: 1; }
.faq-answer p { margin: 0; padding: 0 clamp(0px, 3vw, 56px) clamp(16px, 1.3vw, 22px) 0; font-size: clamp(14px, .9vw, 15px); line-height: 1.6; color: rgba(255,255,255,.58); }

@media (max-width: 720px) {
  .faq-section { padding-top: 56px; }
  .faq-container { padding: 36px 20px 32px; width: calc(100% - 40px); }
  .faq-title { font-size: clamp(32px, 9vw, 40px); }
  .faq-question { gap: 16px; font-size: 16.5px; }
  .faq-answer p { padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer, .faq-answer__in, .faq-icon, .faq-icon::before, .faq-icon::after { transition-duration: .01ms; }
}

/* ---- Nosso processo: autoplay em loop (estados ativo / inativo) ---- */
.pc-conn-base { fill: none; stroke: rgba(138,53,255,.30); stroke-width: 2; stroke-linecap: round; }
.pc-spark { fill: #A855FF; opacity: 0; filter: drop-shadow(0 0 7px #8A35FF) drop-shadow(0 0 14px rgba(138,53,255,.7)); pointer-events: none; }
.pc-dot { transform-box: fill-box; transform-origin: center; transition: opacity .6s cubic-bezier(.45,0,.55,1), filter .6s cubic-bezier(.45,0,.55,1), transform .6s cubic-bezier(.45,0,.55,1); }
.pc-dot.is-on { transform: scale(1.3); }

.pc-card {
  opacity: .82; border-color: rgba(130,70,200,.32); box-shadow: none;
  transition: opacity .6s cubic-bezier(.45,0,.55,1), border-color .6s cubic-bezier(.45,0,.55,1), box-shadow .6s cubic-bezier(.45,0,.55,1), transform .6s cubic-bezier(.45,0,.55,1);
}
.pc-card.is-on { opacity: 1; border-color: rgba(150,70,255,.65); box-shadow: 0 0 30px rgba(125,44,255,.12); transform: translateY(-6px); }
.pc-card__num, .pc-card__title, .pc-card__text, .pc-card__foot, .pc-card__dash { transition: color .6s cubic-bezier(.45,0,.55,1), opacity .6s cubic-bezier(.45,0,.55,1); }
.pc-card__num { color: rgba(255,255,255,.55); }
.pc-card.is-on .pc-card__num { color: rgba(196,150,255,.95); }
.pc-card__title { color: rgba(255,255,255,.78); }
.pc-card.is-on .pc-card__title { color: #fff; }
.pc-card__text { color: rgba(255,255,255,.52); }
.pc-card.is-on .pc-card__text { color: rgba(255,255,255,.65); }
.pc-card__foot, .pc-card__dash { opacity: .8; }
.pc-card.is-on .pc-card__foot, .pc-card.is-on .pc-card__dash { opacity: 1; }
.pc-card__icon { opacity: .85; box-shadow: none; transition: transform .6s cubic-bezier(.45,0,.55,1), box-shadow .6s cubic-bezier(.45,0,.55,1), opacity .6s cubic-bezier(.45,0,.55,1), background .6s cubic-bezier(.45,0,.55,1); }
.pc-card.is-on .pc-card__icon { opacity: 1; transform: scale(1.08); box-shadow: 0 0 20px rgba(140,60,255,.45), inset 0 0 12px rgba(124,44,255,.18); }

/* mobile / tablet: menos glow, menos movimento, linha mais discreta */
@media (max-width: 1100px) {
  .pc-card.is-on { transform: translateY(-3px); box-shadow: 0 0 18px rgba(125,44,255,.10); }
  .pc-card.is-on .pc-card__icon { box-shadow: 0 0 12px rgba(140,60,255,.32); }
}
@media (max-width: 720px) {
  .pc-conn { opacity: .85; filter: drop-shadow(0 0 3px rgba(138,53,255,.4)); }
  .pc-spark { filter: drop-shadow(0 0 5px #8A35FF); }
  .pc-dot.is-on { transform: scale(1.2); filter: drop-shadow(0 0 4px rgba(143,61,255,.8)); }
}
/* versão calma (sistema com reduzir movimento): o loop roda, mas sem os cards subirem */
.pc-calm .pc-card.is-on { transform: none; }
.pc-calm .pc-card.is-on .pc-card__icon { transform: none; }

/* ---- fios com energia correndo o tempo todo (independe de hover / etapa ativa) ---- */
.pc-conn-base { stroke: rgba(138,53,255,.42); }
.pc-flow {
  fill: none; stroke: #b877ff; stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 16 30;
  animation: pcFlow 2.1s ease-in-out infinite alternate, pcHue 7s ease-in-out infinite;
  filter: hue-rotate(0deg) drop-shadow(0 0 5px rgba(160,80,255,.85));
}
.pc-fly { fill: #d8b4ff; pointer-events: none; opacity: 0; animation: pcHue 7s ease-in-out infinite; filter: hue-rotate(0deg) drop-shadow(0 0 5px #a855ff) drop-shadow(0 0 12px rgba(138,53,255,.75)); }
@keyframes pcFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -92; } }
@keyframes pcHue {
  0%, 100% { filter: hue-rotate(0deg) drop-shadow(0 0 5px rgba(160,80,255,.85)); }
  35% { filter: hue-rotate(38deg) drop-shadow(0 0 6px rgba(190,80,255,.9)); }
  70% { filter: hue-rotate(-24deg) drop-shadow(0 0 6px rgba(110,90,255,.9)); }
}
.pc-calm .pc-flow { animation-duration: 3s, 10s; }
@media (max-width: 720px) {
  .pc-flow { stroke-width: 2; filter: drop-shadow(0 0 3px rgba(160,80,255,.6)); animation: pcFlow 2.4s ease-in-out infinite alternate; }
  .pc-fly { filter: drop-shadow(0 0 4px #a855ff); animation: none; }
}

/* Studio R: logo redonda e sem o notch do notebook (a barra do site fica visível) */
.pj-logo-round { border-radius: 50%; max-height: 56px; }
.pj-dev__screen--nonotch::after { display: none; }

/* Studio R: vídeo do Hero rodando dentro das telas + a interface do site recriada por cima (medidas em cqw = % da largura da tela) */
.sr-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #0a0810; }
.sr { position: absolute; inset: 0; color: #fff; font-family: "Jost", "Inter", sans-serif; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 30%, rgba(0,0,0,.22) 60%, rgba(0,0,0,.72) 100%); }
.sr p { margin: 0; }
.sr__nav { position: absolute; left: 0; right: 0; }
.sr__logo { position: absolute; border-radius: 50%; object-fit: cover; }
.sr__brand { position: absolute; font-family: "Archivo", "Inter", sans-serif; font-weight: 800; letter-spacing: .01em; white-space: nowrap; }
.sr__links { position: absolute; display: flex; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; color: rgba(255,255,255,.85); }
.sr__cta { position: absolute; display: grid; place-items: center; border: 1px solid #fff; border-radius: 99px; text-transform: uppercase; font-family: "Archivo", "Inter", sans-serif; font-weight: 700; white-space: nowrap; }
.sr__label { position: absolute; left: 0; right: 0; text-align: center; text-transform: uppercase; color: rgba(255,255,255,.85); font-weight: 300; }
.sr__title { position: absolute; left: 0; right: 0; text-align: center; text-transform: uppercase; font-family: "Archivo", "Inter", sans-serif; font-weight: 900; letter-spacing: -0.01em; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.sr__foot { position: absolute; display: flex; justify-content: space-between; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 300; }

/* notebook (tela = 100cqw x 62.5cqw) */
.sr--d .sr__logo { left: 14.7cqw; top: 1.55cqw; width: 2.4cqw; height: 2.4cqw; }
.sr--d .sr__brand { left: 17.7cqw; top: 1.5cqw; font-size: 1.2cqw; line-height: 2.5cqw; }
.sr--d .sr__links { left: 35.9cqw; top: 1.55cqw; gap: 2.1cqw; font-size: .9cqw; line-height: 2.4cqw; }
.sr--d .sr__cta { left: 71.7cqw; top: 1.4cqw; width: 11.9cqw; height: 2.85cqw; font-size: .74cqw; }
.sr--d .sr__label { top: 25.2cqw; font-size: .82cqw; letter-spacing: .36em; }
.sr--d .sr__title { top: 27.6cqw; font-size: 4.3cqw; line-height: 5cqw; }
.sr--d .sr__foot { left: 3cqw; right: 3.4cqw; top: 57.2cqw; font-size: .72cqw; letter-spacing: .06em; }

/* celular (tela = 100cqw x 217cqw) */
.sr--m .sr__logo { left: 6.2cqw; top: 5.7cqw; width: 9.7cqw; height: 9.7cqw; }
.sr--m .sr__brand { left: 18cqw; top: 6.2cqw; font-size: 5.1cqw; line-height: 8.6cqw; }
.sr--m .sr__cta { left: 62cqw; top: 6.4cqw; width: 19.7cqw; height: 8.4cqw; font-size: 3.1cqw; background: #fff; color: #111; border-color: #fff; }
.sr--m .sr__menu { position: absolute; left: 87cqw; top: 8.6cqw; width: 6.4cqw; display: grid; gap: 1.3cqw; }
.sr--m .sr__menu i { display: block; height: .5cqw; background: #fff; }
.sr--m .sr__label { top: 92cqw; font-size: 3.3cqw; letter-spacing: .38em; }
.sr--m .sr__title { top: 100.5cqw; font-size: 9cqw; line-height: 9.3cqw; }
.sr--m .sr__foot { left: 5cqw; right: 5cqw; top: 197cqw; font-size: 2.7cqw; letter-spacing: .06em; }