/* ============================================================
   KRIAI V14 — v13 com a tipografia oficial da Resend:
   Editorial: Instrument Serif · Display: Bricolage Grotesque · Product: Inter.
   Display escolhida pelo fundador (jul/2026) via espécime de 13 fontes:
   Bricolage Grotesque — grotesca editorial com eixo óptico (esquenta em
   headline, disciplina em corpo médio). Substitui Geist/ABC Favorit.
   Base v13 — anatomia "ad-platform" das referências:
   nav pill translúcida, hero gradiente profundo→laranja com
   headline gigante, carrossel GERADO POR IA, banda de stats,
   feature rows com chip+label, cards de confiança, footer
   gradiente. Identidade kriai (laranja + logo) mantida.
   ============================================================ */

:root {
  --ink: #0c0b0e;
  --ink-2: #26232a;
  --paper: #f5f5f4;
  --paper-2: #ededeb;
  --white: #ffffff;
  --accent: #ff6a2b;
  --accent-2: #ff4423;
  --accent-hi: #ff8a52;
  --deep-a: #0c0c0e;
  --deep-b: #17171a;
  --deep-c: #26262b;
  --text-dark: #17150f;
  --text-dim: #57534c;
  --text-faint: #8a857d;
  --line-dark: rgba(23, 21, 15, 0.1);
  --green: #1f9d55;
  --serif: "Domaine Display", "Domaine Display Narrow", "Instrument Serif", Georgia, serif;
  --sans: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --label: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  /* LP oficial renderiza travada em 90% — mesmo efeito de "zoom 90%"
     do Chrome, independente do zoom real do usuário. `zoom` é a
     propriedade que replica o zoom nativo do navegador (reflui layout
     e é nítida, ao contrário de transform: scale). Escopada só na V14
     (este CSS não vaza pro resto do app). */
  zoom: 0.9;
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-2); }
button { font: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #1c0a03; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 880px) { .wrap { padding: 0 36px; } }

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.k-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.k-chip {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: linear-gradient(160deg, var(--accent-hi), var(--accent-2));
  box-shadow: 0 8px 22px rgba(255, 106, 43, 0.35), inset 0 1.5px 0 rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.k-chip svg { width: 17px; height: 17px; fill: #fff; }

/* ---- botão preto com chip (assinatura da ref) ---- */
.b-cta {
  display: inline-flex;
  align-items: stretch;
  background: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(12, 11, 14, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.b-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(12, 11, 14, 0.45); color: inherit; }
.b-cta .c-chip {
  width: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--accent-hi), var(--accent-2));
  border-radius: 10px;
  margin: 4px;
}
.b-cta .c-chip svg { width: 15px; height: 15px; fill: #fff; }
.b-cta .c-label {
  display: inline-flex;
  align-items: center;
  padding: 0 20px 0 15px;
  font-family: var(--label);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.b-cta.b-sm .c-chip { width: 34px; }
.b-cta.b-sm .c-label { padding: 9px 16px 9px 12px; font-size: 10px; }

/* ============ NAV ============ */
.nav10 {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 16px 0;
}
.nav10-in {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav10 .brand { display: inline-flex; align-items: center; flex-shrink: 0; min-width: 0; }
.nav10 .brand img { display: block; height: 36px; width: auto; }
.nav10-links {
  display: none;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 6px;
}
@media (min-width: 960px) { .nav10-links { display: flex; } }
.nav10-links a {
  padding: 8px 17px;
  border-radius: 10px;
  transition: background 0.15s;
  color: rgba(255, 255, 255, 0.92);
}
.nav10-links a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav10-links a.has-badge { position: relative; }
.nav-badge {
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  font-family: var(--label);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  padding: 4px 8px 3px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 68, 35, 0.45);
  animation: badge-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes badge-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.07); }
}
@media (prefers-reduced-motion: reduce) { .nav-badge { animation: none; } }
.nav10-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
@media (min-width: 960px) { .nav10-right { margin-left: 0; } }

/* pill "49% OFF · Planos" — só no mobile (links da nav escondidos) */
.nav-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  text-decoration: none;
}
.nav-promo .np-badge {
  white-space: nowrap;
  font-family: var(--label);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  padding: 5px 8px 4px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(255, 68, 35, 0.4);
  animation: badge-pulse 2.4s ease-in-out infinite;
}
.nav-promo .np-txt {
  font-family: var(--label);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
@media (min-width: 960px) { .nav-promo { display: none; } }
@keyframes badge-pulse2 { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.nav-promo .np-badge { animation-name: badge-pulse2; }
@media (prefers-reduced-motion: reduce) { .nav-promo .np-badge { animation: none; } }

/* nav mobile compacta — depois das regras base para vencer na ordem */
@media (max-width: 600px) {
  .nav10 { padding: 14px 14px 0; }
  .nav10-in { gap: 10px; }
  .nav10 .brand img { height: 26px; }
  .nav10-right { gap: 8px; }
  .nav-promo { padding: 4px 9px 4px 4px; gap: 6px; }
  .b-cta.b-sm .c-chip { width: 30px; }
  .b-cta.b-sm .c-label { padding: 8px 11px 8px 9px; letter-spacing: 0.08em; }
}
@media (max-width: 400px) {
  .nav-promo .np-txt { display: none; }
  .nav-promo { padding: 4px; }
}
.nav10-demo {
  display: none;
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.nav10-demo:hover { color: #fff; }
@media (min-width: 700px) { .nav10-demo { display: inline-flex; } }

/* ============ HERO ============ */
.hero10 {
  position: relative;
  background:
    radial-gradient(ellipse 100% 62% at 50% 112%, #ffa04f 0%, #ff7a2e 22%, rgba(224, 92, 30, 0.72) 42%, rgba(150, 58, 18, 0.35) 62%, transparent 80%),
    radial-gradient(ellipse 60% 40% at 50% -8%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, #0c0908 0%, #151110 45%, #201914 100%);
  padding: 135px 20px 0;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 880px) { .hero10 { padding-top: 152px; } }
.hero10-in {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  max-width: 940px;
  margin: 0 auto;
}
.hero10-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px;
}
.hero10-eyebrow svg { width: 14px; height: 14px; fill: #fff; }
.hero10-eyebrow .eb-sep { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.28); margin: 0 2px; }
.eb-flags { display: inline-flex; align-items: center; gap: 7px; }
.eb-flags svg {
  width: 21px; height: 14.7px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45), inset 0 0 0 0.5px rgba(255, 255, 255, 0.35);
}
@media (max-width: 480px) {
  .hero10-eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
    padding: 7px 12px;
    max-width: 100%;
  }
  .hero10-eyebrow .eb-sep { display: none; }
}

/* mescla: base em Bricolage (sans display) + acentos em Instrument Serif (itálico) */
.hero10 h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(35px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: #fff;
  max-width: none;
  text-shadow: 0 6px 60px rgba(0, 0, 0, 0.45);
}
.hero10 h1 .hx { white-space: nowrap; }
.hx {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: -0.01em;
  padding-right: 0.06em;
  background: linear-gradient(100deg, #ffd9ae 0%, #ff9a5e 45%, #ff6a2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 30px rgba(255, 106, 43, 0.35));
}
.hero10-sub {
  font-size: clamp(14.5px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
  text-wrap: pretty;
}
.hero10-sub strong { color: #fff; font-weight: 800; }
.hero10-sub2 { font-size: clamp(13px, 1.4vw, 15px); color: rgba(255, 255, 255, 0.75); }
.hero10-micro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px 23px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.hero10-micro span { display: inline-flex; align-items: center; gap: 8px; }
.hero10-micro .mi {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep-b);
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* ---- VISLUMBRE 3D — a Vitrine por dentro ---- */
.hero10-stage {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  padding-bottom: 40px;
}
.s3-fit {
  width: min(1060px, 100%);
  height: calc(560px * var(--s, 1));
  margin: 0 auto;
  opacity: 0;
  transform: translateY(70px);
}
.is-in .s3-fit { animation: s3rise 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) 0.05s both; }
@keyframes s3rise { to { opacity: 1; transform: translateY(0); } }
.s3-persp {
  width: 1060px;
  perspective: 1650px;
  perspective-origin: 50% -10%;
  transform: scale(var(--s, 1));
  transform-origin: top left;
  /* centraliza a caixa escalada; no crop mobile, segura o lado esquerdo (onde mora o dinheiro) */
  margin-left: max(calc((100% - 1060px * var(--s, 1)) / 2), -46px);
}
.s3-scene {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(calc(16deg + var(--rx, 0deg))) rotateY(var(--ry, 0deg));
  will-change: transform;
}

/* plano principal — a janela do app */
.s3-app {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #131013 0%, #0d0b0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 90px 130px -40px rgba(0, 0, 0, 0.65),
    0 30px 60px -20px rgba(255, 106, 43, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(180deg, #000 76%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 76%, transparent 99%);
}
.s3-glare {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.07) 46%, rgba(255, 255, 255, 0.015) 54%, transparent 68%);
  background-size: 260% 100%;
  background-position: 100% 0;
}
.is-in .s3-glare { animation: s3glare 1.5s cubic-bezier(0.3, 0.6, 0.3, 1) 0.55s both; }
@keyframes s3glare { from { background-position: 100% 0; } to { background-position: 0% 0; } }

/* chrome do app */
.s3-chrome {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.s3-dots { display: inline-flex; gap: 6px; }
.s3-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); }
.s3-logo { height: 17px; width: auto; opacity: 0.95; }
.s3-navpills { display: inline-flex; gap: 4px; margin: 0 auto; }
.s3-navpills b {
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 12px;
  border-radius: 999px;
}
.s3-navpills b.on {
  color: #fff;
  background: rgba(255, 106, 43, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 43, 0.4);
}
.s3-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a5e, #ff6a2b);
  color: #16120d;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* cabeçalho da vitrine */
.s3-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 22px 0;
  text-align: left;
}
.s3-headl { display: flex; flex-direction: column; gap: 4px; }
.s3-eyebrow {
  font-family: var(--label);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.s3-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.s3-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, #ffd9ae 0%, #ff9a5e 45%, #ff6a2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.s3-tabs { display: inline-flex; gap: 5px; }
.s3-tabs b {
  font-family: var(--label);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 5px 11px;
}
.s3-tabs b.on { color: #fff; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.28); }

/* pills de nicho */
.s3-pills {
  display: flex;
  gap: 7px;
  padding: 14px 22px 0;
  overflow: hidden;
}
.s3-pills b {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 7px 12px;
}
.s3-pills b span { font-family: var(--mono); font-size: 8.5px; font-weight: 400; color: rgba(255, 255, 255, 0.45); }
.s3-pills b.on { color: #fff; border-color: rgba(255, 106, 43, 0.55); background: rgba(255, 106, 43, 0.1); }

/* grid de cards */
.s3-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  padding: 16px 22px 30px;
}
.s3-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  text-align: left;
}
.s3-thumb { position: relative; aspect-ratio: 3 / 2.8; overflow: hidden; }
.s3-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* card-herói (travesseiro): sobe o enquadramento pra caber produto + criadora */
.s3-hero-card .s3-thumb img { object-position: 50% 30%; }
/* card #1: desce o quadro pra esconder a legenda cortada do vídeo original */
.s3-grid .s3-card:first-child .s3-thumb img { object-position: 50% 58%; }
.s3-locked .s3-thumb img { filter: blur(9px) saturate(0.75); transform: scale(1.15); }
.s3-chip {
  position: absolute;
  top: 7px; left: 7px;
  font-family: var(--label);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 5px;
  padding: 3px 7px;
}
.s3-rankchip { background: rgba(12, 10, 12, 0.72); color: #fff; backdrop-filter: blur(4px); }
.s3-free { left: auto; right: 7px; background: var(--green); color: #fff; }
.s3-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(12, 10, 12, 0.5) no-repeat 58% 50% / 9px 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12'%3E%3Cpath d='M0 0l10 6-10 6z' fill='white'/%3E%3C/svg%3E");
  backdrop-filter: blur(3px);
}
.s3-lock {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(12, 10, 12, 0.6);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
}
.s3-lock svg { width: 12px; height: 12px; fill: rgba(255, 255, 255, 0.9); }
.s3-meta { display: flex; flex-direction: column; gap: 6px; padding: 9px 10px 11px; }
.s3-stats { font-family: var(--mono); font-size: 7.5px; color: rgba(255, 255, 255, 0.55); white-space: nowrap; overflow: hidden; }
/* criador anonimizado: avatar + nome borrado + seguidores à mostra (assine pra ver quem) */
.s3-creator { display: flex; align-items: center; gap: 5px; }
.s3-ava { flex-shrink: 0; width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12)); }
.s3-blurname { display: inline-block; height: 8px; width: 52px; border-radius: 4px; background: rgba(255, 255, 255, 0.22); filter: blur(2.5px); }
.s3-blurname.s3-wide { width: 78px; }
.s3-creator u { text-decoration: none; margin-left: auto; font-family: var(--mono); font-size: 7.5px; color: rgba(255, 255, 255, 0.45); white-space: nowrap; }
.s3-prod {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 7px;
  padding: 5px 6px;
}
.s3-pthumb {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 154, 94, 0.35), rgba(255, 255, 255, 0.08));
}
.s3-pinfo { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.s3-pinfo b { font-family: var(--label); font-size: 7.5px; font-weight: 600; color: rgba(255, 255, 255, 0.85); white-space: nowrap; overflow: hidden; }
.s3-pinfo small { font-family: var(--mono); font-size: 7px; color: rgba(255, 255, 255, 0.45); white-space: nowrap; }
.s3-comp { display: flex; align-items: center; gap: 4px; font-family: var(--label); font-size: 7px; font-weight: 600; color: rgba(255, 255, 255, 0.5); white-space: nowrap; }
.s3-comp i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px rgba(31, 157, 85, 0.8); }
.s3-comp.s3-mid i { background: #e5a53d; box-shadow: 0 0 6px rgba(229, 165, 61, 0.8); }
.s3-receipt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.32);
  border-radius: 8px;
  padding: 7px 9px 8px;
}
.s3-receipt i { font-family: var(--label); font-style: normal; font-size: 6.5px; font-weight: 700; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.5); }
.s3-receipt b { font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: #fff; line-height: 1.1; }
.s3-receipt u { text-decoration: none; font-family: var(--mono); font-size: 7.5px; color: rgba(255, 255, 255, 0.45); }
/* o recibo do card-herói fica "vazio" — ele saltou pra fora da tela */
.s3-ghost { opacity: 0.22; border-style: dashed; }
.s3-ghost b, .s3-ghost i, .s3-ghost u { visibility: hidden; }

/* ---- camadas flutuantes (saltam do plano) ---- */
.s3-float {
  position: absolute;
  z-index: 10;
  opacity: 0;
  transform: translateZ(var(--z, 80px));
}
.is-in .s3-float {
  animation:
    s3pop 0.65s cubic-bezier(0.24, 1.15, 0.4, 1) var(--d, 0.6s) both,
    s3bob 6.5s ease-in-out calc(var(--d, 0.6s) + 0.65s) infinite alternate;
}
@keyframes s3pop {
  from { opacity: 0; transform: translateZ(6px) scale(0.86); }
  to { opacity: 1; transform: translateZ(var(--z, 80px)) scale(1); }
}
@keyframes s3bob {
  from { opacity: 1; transform: translateZ(var(--z, 80px)); }
  to { opacity: 1; transform: translateZ(calc(var(--z, 80px) + 14px)) translateY(-3px); }
}
.s3-f-rank {
  top: 208px;
  left: -22px;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #ff8a48, #ff4423);
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 24px 50px -12px rgba(255, 68, 35, 0.55), 0 6px 18px rgba(0, 0, 0, 0.4);
}
.s3-f-receipt {
  top: 236px;
  left: 231px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  background: rgba(20, 15, 13, 0.82);
  border: 1px solid rgba(255, 154, 94, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px 15px;
  box-shadow: 0 34px 70px -16px rgba(0, 0, 0, 0.7), 0 10px 40px -6px rgba(255, 106, 43, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.s3-f-receipt i { font-family: var(--label); font-style: normal; font-size: 8px; font-weight: 700; letter-spacing: 0.18em; color: #ffb98a; }
.s3-f-receipt b {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  background: linear-gradient(100deg, #ffd9ae 0%, #ff9a5e 55%, #ff6a2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.s3-f-receipt u { text-decoration: none; font-family: var(--mono); font-size: 9px; color: rgba(255, 255, 255, 0.6); }
.s3-f-cta {
  top: 336px;
  right: 118px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  color: #16120d;
  background: linear-gradient(180deg, #ffb27a, #ff6a2b);
  border-radius: 999px;
  padding: 11px 17px;
  box-shadow: 0 26px 55px -12px rgba(255, 106, 43, 0.6), 0 6px 16px rgba(0, 0, 0, 0.35);
}
.s3-f-cta svg { width: 12px; height: 12px; fill: #16120d; }
.s3-f-live {
  top: 74px;
  right: -14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #d9ffe8;
  background: rgba(13, 26, 18, 0.85);
  border: 1px solid rgba(31, 157, 85, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.55), 0 0 24px rgba(31, 157, 85, 0.25);
}
.s3-f-live em { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 10px rgba(46, 204, 113, 0.9); }

@media (prefers-reduced-motion: reduce) {
  .s3-fit { opacity: 1; transform: none; animation: none !important; }
  .is-in .s3-fit, .is-in .s3-glare, .is-in .s3-float { animation: none !important; }
  .s3-float { opacity: 1; }
  .s3-scene { transform: rotateX(10deg); }
}

/* ---- nichos (banda "marcas") ---- */
/* ---- nichos: prova de GMV real por nicho (não é logo-cloud) ---- */
.nichos { padding: 60px 20px 26px; text-align: center; }
.nichos-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.nichos-head {
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.1;
  color: var(--text-dark);
  max-width: 24ch;
  margin: 12px auto 0;
}
.nichos-head .hx { filter: none; } /* na banda clara, sem o drop-shadow do hero escuro */
.niche-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1040px;
  margin: 30px auto 0;
}
.niche {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 11px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 0 1px 2px rgba(23, 21, 15, 0.04);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.niche:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(23, 21, 15, 0.1); border-color: rgba(23, 21, 15, 0.18); }
.niche-rank {
  display: grid;
  place-items: center;
  width: 17px; height: 17px;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(150deg, var(--accent-hi), var(--accent-2));
  box-shadow: 0 2px 6px rgba(255, 68, 35, 0.3);
}
.niche-name { font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: -0.005em; color: var(--text-dark); }
.niche-gmv {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-dim);
  padding-left: 8px;
  border-left: 1px solid var(--line-dark);
}
/* os 3 líderes ganham a borda ember — o "1/2/3" já diz que é ranking real */
.niche:has(.niche-rank) { border-color: rgba(255, 106, 43, 0.32); }
.niche:has(.niche-rank) .niche-gmv { color: var(--accent-2); border-left-color: rgba(255, 106, 43, 0.3); }
.niche-more {
  gap: 0;
  padding: 9px 15px;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  border-style: dashed;
}
.niche-more:hover { color: var(--accent-2); }

/* ---- stats card ---- */
.stats10 { padding: 40px 0 20px; }
.stats10-card {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f2f2f1 0%, #e9e9e7 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  box-shadow:
    0 24px 48px rgba(23, 21, 15, 0.14),
    0 6px 14px rgba(23, 21, 15, 0.08),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 6px rgba(23, 21, 15, 0.05);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 760px) { .stats10-card { grid-template-columns: repeat(3, 1fr); } }
.stat10 {
  position: relative;
  padding: 34px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(23, 21, 15, 0.1);
}
@media (min-width: 760px) {
  .stat10 { border-bottom: 0; padding: 38px 18px; }
  .stat10:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0; top: 24%;
    height: 52%;
    width: 1px;
    background: rgba(23, 21, 15, 0.14);
  }
}
.stat10:last-child { border-bottom: 0; }
.stat10 .v {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.stat10 .l { display: block; font-size: 13.5px; color: var(--text-dim); margin-top: 7px; }
/* Stat de mercados: BR ao vivo (dot verde) destacado, IT·UK·US esmaecidos;
   a legenda soletra "ao vivo" (verde) e "em breve" (âmbar) — sem ambiguidade. */
.stat10 .mk-live { color: var(--text-dark); }
.stat10 .mk-dot {
  display: inline-block; width: 7px; height: 7px; margin-right: 5px;
  vertical-align: middle; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.5);
  animation: mkt-pulse 2.4s ease-out infinite;
}
.stat10 .mk-dim { color: var(--text-faint); }
.stat10 .l .mk-on { color: var(--green); font-weight: 600; }
.stat10 .l .mk-off { color: var(--accent); font-weight: 600; }

/* ---- título gigante central ---- */
.bigtitle { padding: 84px 0 10px; text-align: center; }
.bigtitle h2 {
  font-size: clamp(30px, 4.6vw, 55px);
  max-width: 20ch;
  margin: 0 auto;
}
.bigtitle p {
  font-size: clamp(14px, 1.5vw, 16.5px);
  color: var(--text-dim);
  max-width: 58ch;
  margin: 22px auto 0;
  text-wrap: pretty;
}

/* ---- feature rows ---- */
.frow-sec { padding-block: 40px; }
.frow {
  display: grid;
  gap: 36px;
  align-items: center;
  padding: 48px 0;
}
@media (min-width: 960px) {
  .frow { grid-template-columns: 1fr 1fr; gap: 70px; }
  .frow.flip .f-copy { order: 2; }
  .frow.flip .f-media { order: 1; }
}
.frow > * { min-width: 0; }
.f-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.f-copy h3 { font-size: clamp(23px, 2.7vw, 32px); max-width: 18ch; }
.f-copy ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-copy li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-dim);
  max-width: 46ch;
  text-wrap: pretty;
}
.f-copy li::before {
  content: "";
  position: absolute;
  left: 4px; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-dark);
}
.f-copy .b-cta { margin-top: 10px; }
.f-media {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 30px;
}
.f-media.g-warm { background: radial-gradient(ellipse 100% 90% at 50% 110%, #ffb27a 0%, #ff7a3d 50%, #e05a1e 100%); }
.f-media.g-deep { background: radial-gradient(ellipse 100% 100% at 50% -10%, #2e2e35 0%, #17171a 55%, #0c0c0e 100%); }
.f-media.g-peach { background: radial-gradient(ellipse 110% 100% at 50% 115%, #ffd9b8 0%, #ff9a5e 55%, #ff6a2b 100%); }
.f-media.g-plain { background: var(--paper-2); }

/* colagem de vídeos (feature 1) */
.collage { position: relative; width: 100%; max-width: 360px; height: 315px; }
.collage .cg {
  position: absolute;
  width: 135px;
  aspect-ratio: 9 / 14;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}
.collage .cg img { width: 100%; height: 100%; object-fit: cover; }
.collage .cg1 { left: 4%; top: 6%; transform: rotate(-7deg); z-index: 1; }
.collage .cg2 { left: 33%; top: 16%; transform: rotate(2deg); z-index: 3; width: 148px; }
.collage .cg3 { right: 2%; top: 2%; transform: rotate(8deg); z-index: 2; }
.collage .play10 {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  display: grid;
  place-items: center;
}
.collage .play10 svg { width: 22px; height: 22px; fill: var(--ink); margin-left: 3px; }

/* card app (feature 2) */
.gen10 {
  width: 100%;
  max-width: 345px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
  display: flex;
  gap: 14px;
  align-items: center;
}
.gen10 .g-img {
  width: 100px;
  aspect-ratio: 9 / 13;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.gen10 .g-img img { width: 100%; height: 100%; object-fit: cover; }
.gen10 .g-steps { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.gen10 .g-line { font-family: var(--mono); font-size: 10.5px; color: var(--text-dim); display: flex; gap: 8px; align-items: center; }
.gen10 .g-line i {
  font-style: normal;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(255, 106, 43, 0.14);
  border: 1px solid rgba(255, 106, 43, 0.45);
  color: var(--accent-2);
  font-size: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gen10 .g-bar { height: 7px; border-radius: 999px; background: var(--paper-2); overflow: hidden; position: relative; }
.gen10 .g-bar::after { content: ""; position: absolute; inset: 0 26% 0 0; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

/* phone poste (feature 3) */
.post10 {
  position: relative;
  width: 190px;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  border: 6px solid #17130f;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}
.post10 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post10 .p-launch {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  font-family: var(--label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}

/* métricas (feature 4) */
.metr10 {
  width: 100%;
  max-width: 345px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
  font-family: var(--mono);
}
.metr10 .m-head { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.metr10 .m-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 9px 0; border-top: 1px solid var(--line-dark); }
.metr10 .m-bar { height: 8px; border-radius: 999px; background: var(--paper-2); overflow: hidden; position: relative; }
.metr10 .m-bar i { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, var(--accent-hi), var(--accent-2)); }
.metr10 .m-val { font-size: 11.5px; font-weight: 600; }
.metr10 .m-val small { display: block; font-size: 9px; color: var(--green); font-weight: 400; text-align: right; }

/* ---- confiança ---- */
.trust10 {
  position: relative;
  padding: 84px 0;
  background:
    radial-gradient(ellipse 60% 55% at 12% 100%, rgba(255, 122, 61, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 92% 10%, rgba(120, 120, 128, 0.12) 0%, transparent 65%),
    var(--paper);
}
.trust10 h2 { text-align: center; font-size: clamp(27px, 3.6vw, 43px); }
.trust-grid { display: grid; gap: 18px; margin-top: 52px; }
@media (min-width: 880px) {
  .trust-grid { grid-template-columns: repeat(6, 1fr); }
  .t-card { grid-column: span 2; }
  .t-card.t-wide { grid-column: span 3; }
}
.t-card {
  background: var(--white);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 18px 44px rgba(23, 21, 15, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-card h3 { font-size: 19px; }
.t-card p { font-size: 13px; color: var(--text-dim); text-wrap: pretty; flex: 1; }
.t-card .t-link {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.t-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.t-chips span {
  font-family: var(--label);
  font-size: 10.5px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--text-dim);
}

/* ---- chips de MERCADO (status por país) ----
   Honesto + FOMO: 1 mercado ao vivo AGORA, 3 gigantes a caminho.
   Brasil = verde vivo (dot pulsando); Itália/Reino Unido/EUA = tracejado
   + selo âmbar "Em breve". A borda tracejada diz "ainda não preenchido". */
.t-markets .mkt { display: inline-flex; align-items: center; gap: 6px; }
.t-markets .mkt-live {
  color: var(--text-dark);
  border-color: rgba(31, 157, 85, 0.4);
}
.t-markets .mkt-dot {
  width: 6px; height: 6px; flex: none;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.55);
  animation: mkt-pulse 2.4s ease-out infinite;
}
@keyframes mkt-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(31, 157, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 157, 85, 0); }
}
.t-markets .mkt-soon {
  color: var(--text-faint);
  border-style: dashed;
}
.t-markets .mkt-tag {
  font-size: 8px; line-height: 1;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: 999px; padding: 2px 6px; margin-left: 1px;
}
.t-markets .mkt-live .mkt-tag { color: var(--green); background: rgba(31, 157, 85, 0.12); }
.t-markets .mkt-soon .mkt-tag { color: var(--accent); background: rgba(255, 106, 43, 0.1); }
@media (prefers-reduced-motion: reduce) {
  .t-markets .mkt-dot { animation: none; }
}

/* ---- planos ---- */
.plans10 { padding: 84px 0; }
.plans10 .bigtitle { padding: 0 0 10px; }
.billing-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; }
.billing-toggle {
  display: inline-flex;
  background: var(--paper-2);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 4px;
}
.billing-toggle button {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-faint);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 7px 21px;
  transition: all 0.15s;
}
.billing-toggle button.is-active { background: var(--ink); color: #fff; }
.billing-tag {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
  border: 1px solid rgba(255, 106, 43, 0.45);
  background: rgba(255, 106, 43, 0.1);
  border-radius: 999px;
  padding: 6px 13px;
}
.plans-grid { display: grid; gap: 18px; margin-top: 44px; align-items: start; max-width: 980px; margin-inline: auto; }
@media (min-width: 920px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 26px 23px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 36px rgba(23, 21, 15, 0.06);
}
.plan-featured { border: 1.5px solid var(--ink); box-shadow: 0 26px 60px rgba(23, 21, 15, 0.14); }
@media (min-width: 920px) { .plan-featured { margin-top: -16px; padding-top: 42px; padding-bottom: 40px; } }
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.plan-name { font-family: var(--sans); font-weight: 700; font-size: 15.5px; }
.plan-tagline { font-size: 12.5px; color: var(--text-dim); margin-top: 5px; min-height: 42px; text-wrap: pretty; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; font-family: var(--label); }
.plan-price .val { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; }
.plan-price .per { font-size: 12.5px; color: var(--text-faint); }
.plan-billnote { font-family: var(--label); font-size: 10.5px; color: var(--text-faint); margin-top: 6px; min-height: 16px; }
.plan-feats { list-style: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-feats li { display: flex; gap: 10px; font-size: 12.5px; color: var(--text-dim); }
.plan-feats li strong { color: var(--text-dark); }
.fmk {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-hi), var(--accent-2));
  display: grid;
  place-items: center;
  font-family: var(--label);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
/* feature ausente (gate de upgrade): ✕ cinza + texto riscado */
.fmk-x {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(23, 21, 15, 0.05);
  border: 1px solid rgba(23, 21, 15, 0.14);
  display: grid;
  place-items: center;
  font-family: var(--label);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-faint);
}
.plan-feats li.feat-off { color: var(--text-faint); }
.plan-feats li.feat-off span:last-child { text-decoration: line-through; text-decoration-color: rgba(23, 21, 15, 0.3); }
.plan .b-cta { margin-top: 24px; justify-content: center; }
.plan .b-cta .c-label { flex: 1; justify-content: center; }
.pricing-note { margin-top: 32px; text-align: center; font-family: var(--label); font-size: 10.5px; color: var(--text-faint); line-height: 1.9; }

/* ---- FAQ ---- */
.faq10 { padding: 20px 0 84px; }
.faq10 h2 { text-align: center; font-size: clamp(25px, 3.2vw, 38px); }
.faq-list { max-width: 760px; margin: 44px auto 0; }
.faq-item { background: var(--white); border: 1px solid var(--line-dark); border-radius: 16px; margin-bottom: 10px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  font-weight: 700;
  font-size: 14.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.fq-mark { margin-left: auto; font-family: var(--label); font-size: 17px; color: var(--text-faint); transition: transform 0.2s, color 0.2s; }
.faq-item[open] .fq-mark { transform: rotate(45deg); color: var(--accent-2); }
.faq-body { padding: 0 20px 20px; color: var(--text-dim); font-size: 13.5px; max-width: 62ch; text-wrap: pretty; }

/* ---- CTA final + footer gradiente ---- */
.foot10 {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 70% at 8% 100%, rgba(255, 122, 61, 0.75) 0%, transparent 62%),
    radial-gradient(ellipse 60% 60% at 90% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 65%),
    linear-gradient(180deg, #101012 0%, #1c1c20 100%);
  overflow: hidden;
}
.foot-cta {
  text-align: center;
  padding: 88px 20px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.foot-cta h2 { color: #fff; font-size: clamp(29px, 4.3vw, 50px); max-width: 18ch; }
.foot-cta p { color: rgba(255, 255, 255, 0.85); font-size: clamp(14px, 1.5vw, 16.5px); }
.foot10 .b-cta { border-color: rgba(255, 255, 255, 0.18); }
.foot-main {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 48px 26px;
}
.foot-grid { display: grid; gap: 44px; }
@media (min-width: 880px) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.foot-brand img { height: 23px; width: auto; }
.foot-brand p { font-size: 13px; color: rgba(255, 255, 255, 0.75); max-width: 34ch; }
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 31px; height: 31px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.foot-social a:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.foot-social svg { width: 15px; height: 15px; fill: #fff; }
.foot-col h4 {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}
.foot-col nav { display: flex; flex-direction: column; gap: 9px; font-size: 13px; font-weight: 600; }
.foot-col a { color: rgba(255, 255, 255, 0.88); }
.foot-col a:hover { color: #fff; }
.foot-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--label);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
}
.foot-base .sp { margin-left: auto; }

/* ---- mobile ---- */
/* nav mobile: só logo + CTA — links vivem no scroll */
.mcta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  justify-content: center;
  padding: 26px 16px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.78) 55%);
  pointer-events: none;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mcta.show { transform: none; }
.mcta .b-cta {
  pointer-events: auto;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}
.mcta .b-cta .c-label { flex: 1; justify-content: center; }
@media (max-width: 700px) {
  .mcta { display: flex; }
}
@media (max-width: 600px) {
  .hero10 { padding: 112px 20px 0; }
  .hero10-in { gap: 28px; }
  .hero10 h1 { line-height: 1.14; }
  .hero10 h1 br { display: none; }
  .hero10-sub { font-size: 15px; line-height: 1.7; }
  .hero10-sub2 { display: none; }
  .hero10-micro { flex-direction: column; align-items: center; gap: 12px; margin-top: 2px; }
  .hero10-stage { margin-top: 44px; padding-bottom: 26px; }
  /* no crop mobile o palco corta 46px à esquerda — recoloca o badge dentro da janela visível */
  .s3-f-rank { left: 92px; }
  .s3-free { display: none; }
  .nichos { padding: 46px 0 18px; }
  .nichos-head { padding: 0 20px; }
  /* strip vira trilho horizontal — nada de 4 linhas tristes */
  .niche-strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 0 20px 6px;
    margin-top: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* fade nas bordas sinaliza "tem mais, arraste" */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
  }
  .niche-strip::-webkit-scrollbar { display: none; }
  .niche { flex-shrink: 0; scroll-snap-align: start; }
  .stats10 { padding: 26px 0 14px; }
  .stat10 { padding: 26px 20px; }
  .bigtitle { padding: 64px 0 8px; }
  .frow { padding-block: 32px; gap: 22px; }
  .frow-sec { padding-block: 24px; }
  .f-copy h3 { max-width: none; }
  .f-copy li { max-width: none; }
  .f-media { min-height: 240px; padding: 20px; border-radius: 20px; }
  .collage, .gen10, .metr10, .post10 { max-width: 100%; }
  .gen10 { flex-direction: column; align-items: stretch; }
  .gen10 .g-img { width: 100%; aspect-ratio: 16 / 10; }
  .gen10 .g-img img { object-position: center 25%; }
  .collage { height: 280px; }
  .collage .cg { width: 112px; }
  .collage .cg2 { width: 124px; }
  .collage .play10 { width: 48px; height: 48px; }
  .trust10 { padding: 64px 0; }
  .plans10 { padding: 64px 0; }
  .faq10 { padding: 12px 0 64px; }
  .foot-cta { padding: 70px 16px 56px; }
  .foot-main { padding-block: 40px 110px; }
  .b-cta .c-label { font-size: 11px; padding: 12px 16px 12px 12px; }
  .b-cta .c-chip { width: 40px; }
}

/* ---- reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  [data-reveal].is-in { opacity: 1; transform: none; }
}
