/* ==================================================================
 * Time Movnow — mesma estrutura do template de referência:
 * hero full-screen com fotos alternando · statement escuro central ·
 * showcase full-bleed com metadados · linhas numeradas em claro ·
 * 3 colunas escuras · cards de mídia · card de plano · retratos P&B ·
 * footer com wordmark gigante. Código próprio, conteúdo Movnow.
 * ================================================================== */
:root {
  --dark: #0d0e16;
  --dark-2: #12131d;
  --light: #f6f6f2;
  --ink: #101010;
  --white: #ffffff;
  --w-70: rgb(255 255 255 / 0.7);
  --w-50: rgb(255 255 255 / 0.5);
  --w-14: rgb(255 255 255 / 0.14);
  --i-70: rgb(16 16 16 / 0.7);
  --i-50: rgb(16 16 16 / 0.5);
  --i-14: rgb(16 16 16 / 0.14);
  --yellow: #ffe600;
  --green: #34c759;
  --display: "Anton", "Archivo", system-ui, sans-serif;
  --sans: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --mono: "Roboto Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); font-size: 15.5px; line-height: 24px;
  background: var(--dark); color: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p, h1, h2, h3 { margin: 0; }
section { position: relative; scroll-margin-top: 70px; }
.wrap { width: min(1360px, 100% - clamp(28px, 5vw, 80px)); margin-inline: auto; }

.d1 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.005em; line-height: 1.04; text-wrap: balance;
}
.label {
  font-family: var(--sans); font-weight: 600; font-size: 11px; line-height: 1.5;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.mono { font-family: var(--mono); }
.star { color: var(--yellow); font-style: normal; }

/* reveals */
.ap { opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.ap.in { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 100; transition: background-color 0.35s, box-shadow 0.35s; }
.nav.is-scrolled { background: rgb(13 14 22 / 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--w-14); }
.nav__in {
  width: min(1360px, 100% - clamp(28px, 5vw, 80px)); margin-inline: auto;
  display: flex; align-items: center; gap: 28px; padding: 18px 0;
}
.nav__logo .logo-svg { height: 22px; width: 143px; color: var(--white); }
.nav__links { display: flex; gap: 26px; margin: 0 auto; }
.nav__links a { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: var(--w-70); transition: color 0.25s; }
.nav__links a:hover { color: var(--white); }
.nav__talk { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: var(--yellow); white-space: nowrap; }
.nav__talk:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 860px) { .nav__links { display: none; } .nav__talk { margin-left: auto; } }
@media (max-width: 430px) {
  .nav__in { gap: 12px; }
  .nav__logo .logo-svg { height: 18px; width: 117px; }
  .nav__talk { font-size: 10.5px; letter-spacing: 0.1em; }
}

/* ---------- hero full-screen com fotos alternando ---------- */
.shero { height: 100svh; min-height: 560px; overflow: hidden; display: grid; }
.shero__bg { position: absolute; inset: 0; }
.shero__slider { position: absolute; inset: 0; overflow: hidden; }
.shero__slide { position: absolute; inset: 0; transform: translateX(100%); visibility: hidden; z-index: 0; }
.shero__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.shero__slide.is-active { transform: translateX(0); visibility: visible; z-index: 1; transition: transform 0.85s var(--ease); }
.shero__slide.is-prev { transform: translateX(-38%); visibility: visible; z-index: 0; transition: transform 0.85s var(--ease); }
.shero__slide.is-active img { animation: hero-ken 2.7s ease-out both; }
@keyframes hero-ken { from { transform: scale(1.07); } to { transform: scale(1.02); } }
.shero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgb(13 14 22 / 0.6) 0%, rgb(13 14 22 / 0.32) 45%, rgb(13 14 22 / 0.72) 100%); }
.shero__center { position: relative; z-index: 2; display: grid; place-items: center; padding: 90px 20px 120px; text-align: center; }
.shero__title { font-size: clamp(27px, 4.6vw, 64px); max-width: 22ch; display: grid; }
.shero__title .phrase { grid-area: 1 / 1; align-self: center; visibility: hidden; }
.shero__title .phrase.is-on, .shero__title .phrase.is-out { visibility: visible; }
.shero__title .w {
  display: inline-block; overflow: hidden; vertical-align: top;
  position: relative; z-index: 0;
  padding: 0.1em 0.03em 0.16em; margin: -0.1em -0.03em -0.16em;
}
.shero__title .w > i {
  display: inline-block; font-style: normal; transform: translateY(125%);
  transition: transform 0.7s var(--ease);
  transition-delay: calc(var(--wi, 0) * 55ms + 0.15s);
  will-change: transform;
}
.shero__title .phrase.is-on .w > i { transform: none; }
.shero__title .phrase.is-out .w > i {
  transform: translateY(-120%);
  transition-duration: 0.42s;
  transition-delay: calc(var(--wi, 0) * 26ms);
}
.shero__title .hlmark::before {
  content: ""; position: absolute; inset: 24% 0.02em 19%; z-index: -1;
  background: var(--yellow); rotate: -1.4deg;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.5s var(--ease);
  transition-delay: var(--hd, 1s);
}
.shero__title .phrase.is-on .hlmark::before { transform: scaleX(1); }
.shero__title .phrase.is-out .hlmark::before { transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.3s var(--ease) 0s; }
.shero__title .hlmark > i {
  transition: transform 0.7s var(--ease), color 0.25s ease;
  transition-delay: calc(var(--wi, 0) * 55ms + 0.15s), calc(var(--hd, 1s) + 0.16s);
}
.shero__title .phrase.is-on .hlmark > i { color: var(--ink); }
.shero__title .phrase.is-out .hlmark > i { color: var(--white); transition-delay: calc(var(--wi, 0) * 26ms), 0s; }
.shero__warp {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0; transition: opacity 0.6s ease;
}
.shero__warp.on { opacity: 1; }
.shero__title.warp-on { opacity: 0; transition: opacity 0.6s ease; }
.shero__corner {
  position: absolute; z-index: 3; bottom: 26px;
  font-size: 10.5px; letter-spacing: 0.16em; color: var(--w-70);
  text-transform: uppercase; font-weight: 600; line-height: 1.7; max-width: 220px;
}
.shero__corner--l { left: clamp(16px, 3vw, 44px); text-align: left; }
.shero__corner--r { right: clamp(16px, 3vw, 44px); text-align: right; }
.shero__cta {
  position: absolute; z-index: 3; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: var(--yellow); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 99px; text-decoration: none;
  transition: transform 0.25s, background-color 0.25s;
}
.shero__cta:hover { transform: translateX(-50%) translateY(-3px); background: var(--white); }
@media (max-width: 700px) { .shero__corner { display: none; } .shero__cta { width: max-content; max-width: calc(100vw - 32px); white-space: normal; text-align: center; } }

/* ---------- statement escuro ---------- */
.statement { position: relative; background: var(--dark); padding: clamp(100px, 14vw, 190px) 0 clamp(70px, 9vw, 130px); text-align: center; overflow: hidden; }
.statement__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.statement__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.statement__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(13 14 22 / 0.66) 0%, rgb(13 14 22 / 0.18) 42%, rgb(13 14 22 / 0.5) 100%); }
.statement .wrap { position: relative; z-index: 1; }
.statement__lines { font-size: clamp(34px, 5.9vw, 84px); }
.statement__lines span { display: block; }
.statement__meta {
  margin-top: clamp(56px, 7vw, 96px);
  display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 72px);
  flex-wrap: wrap;
}
.statement__sticker { width: clamp(74px, 8vw, 104px); padding: 14px; background: var(--yellow); border-radius: 22px; transform: rotate(-8deg); filter: drop-shadow(0 14px 26px rgb(0 0 0 / 0.5)); }
.statement__note { max-width: 380px; text-align: left; font-size: 14.5px; line-height: 23px; color: var(--w-70); border-left: 2px solid var(--yellow); padding-left: 18px; }
.statement__note strong { color: var(--white); font-weight: 600; }
.statement__loc { margin-top: clamp(56px, 7vw, 90px); display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.statement__loc .label { color: var(--w-70); }

/* ---------- showcase full-bleed ---------- */
.showcase { position: relative; background: #060608; padding: clamp(120px, 16svh, 176px) 0 0; overflow: hidden; }
.showcase__meta { position: absolute; z-index: 2; top: 84px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--w-70); }
.showcase__meta--l { left: clamp(16px, 3vw, 44px); }
.showcase__meta--r { right: clamp(16px, 3vw, 44px); text-align: right; }
.showcase__h {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 92px); line-height: 1.06; letter-spacing: 0.005em;
  max-width: min(24ch, 94vw); text-wrap: balance; margin: 0 auto clamp(40px, 5.5vw, 76px);
  text-align: center; padding: 0 18px;
}

/* ---------- mockup do painel (Figma DesignCode UI) ---------- */
.mockup { --k: min(1400px, 100vw); --u: calc(var(--k) / 1496); position: relative; width: var(--k); margin: 0 auto; aspect-ratio: 1496 / 1122; }
.mockup__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: radial-gradient(ellipse 92% 100% at 50% 60%, #000 58%, transparent 99%);
  mask-image: radial-gradient(ellipse 92% 100% at 50% 60%, #000 58%, transparent 99%);
  opacity: 0; transform: translateY(46px) scale(0.965);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.mockup.in .mockup__bg { opacity: 1; transform: none; }
.mfloat { position: absolute; z-index: 2; animation: floaty 6s ease-in-out infinite alternate; }
.mfloat--1 { left: 56.15%; top: 25.04%; width: 24.66%; animation-duration: 7.2s; }
.mfloat--2 { left: 28.4%; top: 37.4%; width: 14.2%; animation-duration: 5.8s; animation-delay: -2.1s; }
.mfloat--3 { left: 28.4%; top: 48.1%; width: 15.8%; animation-duration: 6.6s; animation-delay: -3.4s; }
.mfloat--4 { left: 57.6%; top: 51.3%; animation-duration: 6.9s; animation-delay: -1.2s; }
@keyframes floaty { from { transform: translateY(calc(var(--u) * -5)); } to { transform: translateY(calc(var(--u) * 7)); } }
.mcard, .mbtn {
  opacity: 0; transform: translateY(calc(var(--u) * 34)) scale(0.9);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.mfloat.on .mcard, .mfloat.on .mbtn { opacity: 1; transform: none; }
.mcard {
  position: relative; overflow: hidden; width: 100%; text-align: left;
  border: 1px solid rgb(255 255 255 / 0.35); border-radius: calc(var(--u) * 16);
  background: linear-gradient(205deg, rgb(255 255 255 / 0.35) 14.6%, rgb(255 255 255 / 0.18) 85.4%);
  -webkit-backdrop-filter: blur(calc(var(--u) * 18)); backdrop-filter: blur(calc(var(--u) * 18));
  box-shadow: 0 calc(var(--u) * 19) calc(var(--u) * 26) rgb(0 0 0 / 0.42), 0 0 2px rgb(0 0 0 / 0.1);
}
.mcard--stat { padding: calc(var(--u) * 18) calc(var(--u) * 20) calc(var(--u) * 16); }
.mcard__bar { position: absolute; left: 0; top: calc(var(--u) * 16); width: calc(var(--u) * 4); height: calc(var(--u) * 32); border-radius: 0 999px 999px 0; opacity: 0.8; }
.mcard--purple .mcard__bar { background: #bf75e5; box-shadow: 0 0 6px rgb(191 117 229 / 0.33); }
.mcard--amber .mcard__bar { background: #f8b456; box-shadow: 0 0 6px rgb(248 180 86 / 0.33); }
.mcard__glow { position: absolute; z-index: 0; left: calc(var(--u) * -14); top: calc(var(--u) * 12); width: calc(var(--u) * 84); height: calc(var(--u) * 84); border-radius: 50%; filter: blur(calc(var(--u) * 14)); opacity: 0; transition: opacity 0.8s var(--ease) 0.15s; pointer-events: none; }
.mfloat.on .mcard__glow { opacity: 0.39; }
.mcard__glow--purple { background: #b075cf; }
.mcard__glow--amber { background: #dba25b; }
.mcard__label { display: block; font-family: var(--sans); font-weight: 400; font-size: calc(var(--u) * 13); line-height: 1.5; color: rgb(255 255 255 / 0.55); letter-spacing: 0; text-transform: none; }
.mcard--stat strong { display: block; margin-top: calc(var(--u) * 8); font-family: var(--sans); font-weight: 600; font-size: calc(var(--u) * 30); line-height: 1.15; letter-spacing: -0.025em; color: #fff; white-space: nowrap; }
.mcard--feature { border-radius: calc(var(--u) * 22); border-color: rgb(255 255 255 / 0.4); background: linear-gradient(207deg, rgb(255 255 255 / 0.24) 14.6%, rgb(255 255 255 / 0.15) 85.4%); padding: calc(var(--u) * 21) calc(var(--u) * 32) calc(var(--u) * 26); }
.mcard--feature > :not(.mcard__ell) { position: relative; z-index: 1; }
.mcard__ell { position: absolute; z-index: 0; left: 28.8%; top: calc(var(--u) * -234); width: calc(var(--u) * 537); aspect-ratio: 1; pointer-events: none; }
.mcard__tag { display: flex; align-items: center; gap: calc(var(--u) * 6); font-family: var(--sans); font-size: calc(var(--u) * 9.5); color: rgb(255 255 255 / 0.7); }
.mcard__tag img { width: calc(var(--u) * 11); height: auto; }
.mcard--feature h3 { margin-top: calc(var(--u) * 15); font-family: var(--sans); font-weight: 600; font-size: calc(var(--u) * 24); line-height: 1.05; letter-spacing: -0.021em; color: #eef2fb; max-width: calc(var(--u) * 315); text-transform: none; }
.mcard__row { margin-top: calc(var(--u) * 16); display: flex; align-items: flex-end; justify-content: space-between; gap: calc(var(--u) * 10); }
.mcard__row .mcard__label { font-size: calc(var(--u) * 8.8); color: rgb(255 255 255 / 0.5); }
.mcard__row strong { display: block; margin-top: calc(var(--u) * 5); font-family: var(--sans); font-weight: 600; font-size: calc(var(--u) * 32); line-height: 1; letter-spacing: -0.016em; color: #fff; white-space: nowrap; }
.mcard__link { display: inline-flex; align-items: center; gap: calc(var(--u) * 5); flex: none; background: #0a0a0a; color: #fff; font-family: var(--sans); font-weight: 500; font-size: calc(var(--u) * 9.5); padding: calc(var(--u) * 7) calc(var(--u) * 13); border-radius: 999px; text-decoration: none; transition: transform 0.3s var(--ease); }
.mcard__link:hover { transform: translateY(-2px); }
.mcard__link img { width: calc(var(--u) * 11); height: auto; }
.mbtn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: calc(var(--u) * 8);
  overflow: hidden; height: calc(var(--u) * 47); padding: 0 calc(var(--u) * 30); border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: calc(var(--u) * 14); color: #0a0a0a; text-decoration: none; white-space: nowrap;
  background: linear-gradient(202deg, #ffd000 13.4%, #ffe600 39%, #ff9d2e 86.6%);
  box-shadow: 0 calc(var(--u) * 17) calc(var(--u) * 33) rgb(255 170 51 / 0.49), 0 0 calc(var(--u) * 28) rgb(255 230 0 / 0.55), 0 0 0 1px rgb(10 10 10 / 0.08), inset 0 1px 0 rgb(255 255 255 / 0.7);
}
.mbtn img { width: calc(var(--u) * 14); height: auto; }
.mbtn__shine { position: absolute; inset: 0; background: linear-gradient(213deg, rgb(255 255 255 / 0) 34.4%, rgb(255 255 255 / 0.55) 50%, rgb(255 255 255 / 0) 65.6%); transform: translateX(-130%); animation: mshine 3.4s ease-in-out infinite 1.2s; pointer-events: none; }
@keyframes mshine { 0% { transform: translateX(-130%); } 44% { transform: translateX(130%); } 100% { transform: translateX(130%); } }
@media (max-width: 760px) {
  .showcase { padding-bottom: 46px; }
  .mockup { --u: 1px; width: 100%; aspect-ratio: auto; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 0 16px; }
  .mockup__bg { position: relative; inset: auto; width: 100%; max-width: 470px; aspect-ratio: 3 / 3.2; object-position: 52% 42%; border-radius: 20px; -webkit-mask-image: radial-gradient(ellipse 100% 96% at 50% 46%, #000 62%, transparent 100%); mask-image: radial-gradient(ellipse 100% 96% at 50% 46%, #000 62%, transparent 100%); }
  .mfloat { position: relative; left: auto; top: auto; animation: none; }
  .mfloat--1 { width: min(369px, 100%); }
  .mfloat--2, .mfloat--3 { width: min(320px, 100%); }
  .mcard__row { flex-wrap: wrap; row-gap: 12px; }
  .mcard__row strong { font-size: 30px; }
}
.circtext {
  --cd: clamp(84px, 8.6vw, 126px);
  position: absolute; z-index: 3; top: clamp(116px, 15svh, 152px); right: clamp(18px, 3.4vw, 52px);
  width: var(--cd); height: var(--cd);
  pointer-events: auto; cursor: pointer;
}
.circtext__rot { position: absolute; inset: 0; border-radius: 50%; text-align: center; transform-origin: 50% 50%; will-change: transform; }
.circtext__rot span {
  position: absolute; inset: 0; display: inline-block;
  font-family: var(--sans); font-weight: 700; font-size: calc(var(--cd) * 0.117);
  letter-spacing: 0.02em; color: #fff; transform-origin: 50% 50%;
}
@media (max-width: 720px) { .circtext { --cd: 74px; top: 116px; } }

/* ---------- como funciona (claro, linhas numeradas com thumb) ---------- */
.services { background: var(--light); color: var(--ink); padding: clamp(84px, 11vw, 150px) 0; }
.services__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: clamp(44px, 6vw, 80px); }
.services__head .d1 { font-size: clamp(36px, 5.6vw, 80px); }
.services__head p { max-width: 56ch; color: var(--i-70); font-size: 16.5px; line-height: 26px; }
.srow {
  display: grid; grid-template-columns: clamp(96px, 11vw, 172px) minmax(0, 1fr) 200px;
  gap: clamp(18px, 3.5vw, 56px); align-items: center;
  padding: clamp(26px, 3.4vw, 42px) 0; border-top: 1px solid var(--i-14);
}
.srow:last-child { border-bottom: 1px solid var(--i-14); }
.srow__num {
  font-family: var(--display); font-size: clamp(46px, 6.6vw, 108px); line-height: 0.88;
  color: transparent; -webkit-text-stroke: 2px var(--ink); paint-order: stroke;
  transition: color 0.35s var(--ease);
}
.srow:hover .srow__num { color: var(--ink); }
.srow__title { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(23px, 2.8vw, 38px); line-height: 1.05; letter-spacing: 0.005em; }
.srow__desc { margin-top: 10px; font-size: 15px; line-height: 23px; color: var(--i-70); max-width: 58ch; }
.srow__chips { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.srow__chips span {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--i-14); border-radius: 99px; padding: 6px 12px; color: var(--i-70);
}
.srow__thumb { width: 200px; aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; justify-self: end; }
.srow__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transform: scale(1.01); transition: filter 0.45s, transform 0.6s var(--ease); }
.srow:hover .srow__thumb img { filter: grayscale(0); transform: scale(1.07); }
@media (max-width: 760px) {
  .srow { grid-template-columns: clamp(64px, 17vw, 96px) minmax(0, 1fr); }
  .srow__num { font-size: clamp(38px, 10vw, 60px); -webkit-text-stroke-width: 1.5px; }
  .srow__thumb { grid-column: 2; justify-self: start; width: min(260px, 100%); margin-top: 6px; }
}

/* ---------- comissão (escuro, 3 colunas) ---------- */
.quotes { background: var(--dark); padding: clamp(90px, 12vw, 160px) 0; text-align: center; }
.quotes__head .d1 { font-size: clamp(32px, 5vw, 72px); max-width: 18ch; margin-inline: auto; }
.quotes__head p { margin: 22px auto 0; max-width: 62ch; color: var(--w-70); font-size: 16px; line-height: 26px; }
.quotes__cols { margin-top: clamp(48px, 6vw, 84px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 4vw, 64px); }
.qcol { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.qcol .star { font-size: 18px; }
.qcol h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; max-width: 22ch; }
.qcol .mono { font-size: 11px; color: var(--w-50); letter-spacing: 0.12em; text-transform: uppercase; }
@media (max-width: 760px) { .quotes__cols { grid-template-columns: minmax(0, 1fr); gap: 36px; } }

/* ---------- para quem (cards de mídia) ---------- */
.cards { background: var(--dark); padding: 0 0 clamp(90px, 12vw, 160px); text-align: center; }
.cards__head .d1 { font-size: clamp(32px, 5vw, 72px); }
.cards__head p { margin: 20px auto 0; max-width: 60ch; color: var(--w-70); font-size: 15.5px; line-height: 25px; }
.cards__row {
  margin-top: clamp(40px, 5vw, 70px);
  display: flex; gap: 14px; overflow-x: auto; padding: 4px clamp(28px, 5vw, 80px) 18px;
  scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
}
.cards__row::-webkit-scrollbar { display: none; }
.cards__row.dragging { cursor: grabbing; scroll-snap-type: none; }
.pcard {
  position: relative; flex: none; width: min(330px, 78vw); aspect-ratio: 4 / 5;
  border-radius: 14px; overflow: hidden; scroll-snap-align: center;
}
.pcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pcard:hover img { transform: scale(1.06); }
.pcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgb(13 14 22 / 0.82) 100%); }
.pcard__label {
  position: absolute; z-index: 2; inset: auto 16px 14px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
}
.pcard__label .d1 { font-size: clamp(21px, 2.2vw, 28px); }
.pcard__label .mono { font-size: 10px; color: var(--w-50); letter-spacing: 0.1em; }
.cards__closing { margin-top: clamp(30px, 4vw, 46px); display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.cards__closing .label { color: var(--w-70); }

/* ---------- plano (claro) + FAQ ---------- */
.plan { background: var(--light); color: var(--ink); padding: clamp(90px, 12vw, 160px) 0; }
.plan__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.plan__head .d1 { font-size: clamp(36px, 5.6vw, 80px); }
.plan__head p { margin: 18px auto 0; max-width: 52ch; color: var(--i-70); font-size: 16px; line-height: 26px; }
.plancard {
  max-width: 620px; margin-inline: auto;
  background: var(--white); border: 1.5px solid var(--ink); border-radius: 16px;
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: 10px 10px 0 var(--yellow);
}
.plancard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plancard__top .label { color: var(--i-50); }
.plancard__badge { background: var(--yellow); border-radius: 99px; padding: 6px 13px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.plancard__price { display: flex; align-items: baseline; gap: 16px; margin: 18px 0 8px; flex-wrap: wrap; }
.plancard__value { font-family: var(--display); font-size: clamp(58px, 7vw, 92px); line-height: 0.95; }
.plancard__per { font-size: 13.5px; line-height: 1.4; color: var(--i-70); max-width: 20ch; }
.plancard__list { list-style: none; margin: 14px 0 0; padding: 0; }
.plancard__list li { display: flex; gap: 12px; align-items: baseline; padding: 11px 0; border-top: 1px solid var(--i-14); font-size: 14.5px; line-height: 21px; text-align: left; }
.plancard__list li::before { content: "✦"; font-size: 12px; }
.plancard__list li strong { font-weight: 700; }
.plancard .btn-ink { margin-top: 22px; }
.btn-ink {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 17px 24px; border-radius: 99px; border: none; cursor: pointer;
  background: var(--ink); color: var(--yellow);
  font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: background-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-ink:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
.btn-ink:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.plancard__foot { margin-top: 14px; font-family: var(--mono); font-size: 10.5px; color: var(--i-50); text-align: center; }

.faq { max-width: 860px; margin: clamp(64px, 8vw, 110px) auto 0; }
.faq__title { text-align: center; font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(26px, 3.4vw, 44px); margin-bottom: clamp(24px, 3vw, 40px); }
.faq details { border-top: 1px solid var(--i-14); }
.faq details:last-child { border-bottom: 1px solid var(--i-14); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: baseline; gap: 20px;
  padding: 19px 0; font-weight: 600; font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }
.faq summary .mono { font-size: 11px; color: var(--i-50); width: 40px; flex: none; }
.faq summary .x { margin-left: auto; flex: none; font-family: var(--mono); transition: transform 0.3s var(--ease); }
.faq details[open] .x { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px 60px; color: var(--i-70); font-size: 15px; line-height: 23px; max-width: 68ch; }
@media (max-width: 700px) { .faq details p { padding-left: 0; } }

/* ---------- time (retratos P&B) ---------- */
.team { background: var(--dark); padding: clamp(90px, 12vw, 160px) 0; text-align: center; }
.team__head .d1 { font-size: clamp(30px, 4.6vw, 64px); max-width: 22ch; margin-inline: auto; }
.team__grid { margin-top: clamp(40px, 5vw, 70px); display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.member { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 10px; }
.member img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter 0.45s, transform 0.6s var(--ease); }
.member:hover img { filter: grayscale(0); transform: scale(1.05); }
.member::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgb(13 14 22 / 0.8) 100%); }
.member span {
  position: absolute; z-index: 2; left: 12px; right: 12px; bottom: 10px;
  font-family: var(--display); text-transform: uppercase; font-size: 15px; letter-spacing: 0.03em;
}
.team__foot { margin-top: 16px; font-family: var(--mono); font-size: 10.5px; color: var(--w-50); }
@media (max-width: 900px) { .team__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- cadastro (escuro) ---------- */
.signup { background: var(--dark-2); padding: clamp(90px, 12vw, 150px) 0; }
.signup__in { max-width: 680px; margin-inline: auto; }
.signup__head { text-align: center; margin-bottom: clamp(34px, 4vw, 54px); }
.signup__head .d1 { font-size: clamp(34px, 5vw, 68px); }
.signup__head p { margin: 16px auto 0; max-width: 46ch; color: var(--w-70); font-size: 15.5px; line-height: 25px; }
.fx { padding: 10px 0 4px; }
.fx label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--w-50); }
.fx input {
  width: 100%; border: none; background: transparent; outline: none; color: var(--white);
  border-bottom: 1.5px solid var(--w-14); border-radius: 0;
  font-family: var(--sans); font-size: clamp(18px, 2vw, 23px); font-weight: 600;
  padding: 9px 0 11px; transition: border-color 0.25s;
}
.fx input::placeholder { color: rgb(255 255 255 / 0.25); font-weight: 500; }
.fx input:focus-visible { border-bottom-color: var(--yellow); }
.fx.has-error input { border-bottom-color: #ff7a72; }
.fx__error { display: none; font-size: 12.5px; color: #ff9b95; padding-top: 6px; }
.fx.has-error .fx__error { display: block; }
.signup .btn-ink { margin-top: 30px; background: var(--yellow); color: var(--ink); }
.signup .btn-ink:hover { background: var(--white); }
.signup__legal { margin-top: 14px; text-align: center; font-family: var(--mono); font-size: 10.5px; line-height: 16px; color: var(--w-50); }
.signup__legal a { color: var(--w-70); }
.formx-success { display: none; text-align: center; padding: 20px 0; }
.signup__panel.is-success form { display: none; }
.signup__panel.is-success .formx-success { display: block; animation: sx 0.4s var(--ease) both; }
@keyframes sx { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.formx-success .d1 { font-size: clamp(30px, 4vw, 52px); }
.formx-success p { margin: 12px auto 22px; color: var(--w-70); max-width: 44ch; }
.formx-success .btn-line {
  display: inline-flex; padding: 12px 22px; border-radius: 99px; cursor: pointer;
  background: transparent; color: var(--white); border: 1.5px solid var(--w-14);
  font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.formx-success .btn-line:hover { border-color: var(--white); }

/* ---------- footer ---------- */
.footer { background: var(--dark); padding-top: clamp(70px, 9vw, 120px); }
.footer__cols { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 110px); justify-content: space-between; padding-bottom: clamp(50px, 7vw, 90px); }
.footer__col h4 { margin: 0 0 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--w-50); }
.footer__col a { display: block; font-size: 14px; line-height: 30px; text-decoration: none; color: var(--w-70); }
.footer__col a:hover { color: var(--white); }
.footer__col p { font-size: 14px; line-height: 24px; color: var(--w-70); max-width: 30ch; }
.footer__giant { padding: 0 0 10px; }
.footer__giant .logo-svg { width: 100%; height: auto; aspect-ratio: 241 / 37; color: var(--white); }
.footer__meta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; padding: 18px 0 26px; border-top: 1px solid var(--w-14); margin-top: 26px; }
.footer__meta span { font-family: var(--mono); font-size: 10.5px; color: var(--w-50); }
.logo-svg { display: block; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ap { opacity: 1; transform: none; transition: none; }
  .shero__title .w > i { transform: none; transition: none; }
  .shero__title .hlmark::before { transform: scaleX(1); transition: none; }
  .shero__title .hlmark > i { color: var(--ink); transition: none; }
  .shero__title .phrase.is-on { visibility: visible; }
  .shero__slide { transition: none !important; }
  .shero__slide img { animation: none !important; }
  .mockup__bg, .mcard, .mbtn { opacity: 1; transform: none; transition: none; }
  .mfloat { animation: none; }
  .mcard__glow { opacity: 0.39; transition: none; }
  .mbtn__shine { display: none; }
}
