/* ==========================================================================
   Convertize — Página Aplicativo (EcommerceApp) — versão FINAL.
   Extraído de aplicativo.html de convertize-site-final/ e ESCOPADO em
   .aplicativo-page (mesmo padrão do arquivo anterior): o :root virou a própria
   página e o body virou o wrapper, para não vazar variáveis nem reset para o
   resto do site. Caminho da fonte ajustado para ../fonts/.
   ========================================================================== */
.aplicativo-page *, .aplicativo-page *::before, .aplicativo-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'Martian Grotesk';
  src: url('../fonts/MartianGrotesk-Variable.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

.aplicativo-page {
  --page: #FAF9F5;
  --white: #FFFFFF;
  --ink: #141413;
  --body: #5C5B58;
  --muted: #8A8880;
  --hairline: #E5E2DA;
  --hairline-soft: #EFEDE7;
  --orange: #FF692E;
  --orange-deep: #F4551A;
  --peach-tint: #FFEDA8;
  --teal: #4E848E;
  --teal-tint: #D7EFFF;
  --teal-deep: #2F5D63;
  --font-display: 'Martian Grotesk', sans-serif;
  --font-body: 'Inter', 'Zalando Sans', sans-serif;
  --section-gap: 128px;
  --radius-btn: 200px;
  --radius-capsule: 140px;
}

html { scroll-behavior: smooth; }
.aplicativo-page #app-proprio, .aplicativo-page #recursos, .aplicativo-page #como-funciona, .aplicativo-page #ecossistema-numeros, .aplicativo-page #contato { scroll-margin-top: 110px; }
.aplicativo-page {
  font-family: var(--font-body); background: var(--page); color: var(--ink);
  /* clip, e não hidden: em um div, overflow-x: hidden faz o overflow-y virar
     auto e transforma o wrapper num container de rolagem. No celular o toque
     passa a ser tratado por ele, e a página trava; no desktop ainda quebraria
     qualquer sticky e o listener de scroll do aplicativo.js. */
  line-height: 1.6; overflow-x: clip; -webkit-font-smoothing: antialiased;
}
.aplicativo-page a { text-decoration: none; color: inherit; }
.aplicativo-page img { display: block; max-width: 100%; }
.aplicativo-page button { cursor: pointer; border: none; font-family: inherit; background: none; }
.aplicativo-page .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.aplicativo-page :focus-visible { outline: 2px solid var(--orange-deep); outline-offset: 3px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-ready .aplicativo-page .reveal { transition: none; }
  .aplicativo-page .outofmold h2 .w { transition: none; }
}

/* ========== SCROLL REVEAL ========== */
.reveal-ready .aplicativo-page .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(.16,.84,.44,1), transform 0.8s cubic-bezier(.16,.84,.44,1); }
.reveal-ready .aplicativo-page .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ========== SHARED ========== */
.aplicativo-page .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; margin-bottom: 20px; color: var(--body);
}
.aplicativo-page .btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--white); font-family: var(--font-display);
  font-size: 15px; font-weight: 600; padding: 15px 32px;
  border-radius: var(--radius-btn); transition: transform 0.15s, background 0.2s; white-space: nowrap;
}
.aplicativo-page .btn-primary:hover { background: var(--orange-deep); color: var(--ink); transform: translateY(-1px); }
.aplicativo-page .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--ink); font-family: var(--font-display);
  font-size: 15px; font-weight: 600; padding: 14px 14px 14px 24px;
  border-radius: var(--radius-btn); border: 1px solid var(--hairline);
  transition: box-shadow 0.2s, border-color 0.2s; white-space: nowrap;
}
.aplicativo-page .btn-secondary:hover { box-shadow: 0 10px 26px rgba(20,20,19,0.08); border-color: var(--hairline-soft); }
.aplicativo-page .btn-arrow { width: 30px; height: 30px; background: var(--ink); border-radius: 100px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aplicativo-page .btn-arrow svg { width: 11px; height: 9px; }
/* A seta mora num círculo escuro dentro de um botão de texto escuro: sem esta
   regra o stroke="currentColor" do SVG herda a cor do botão e a seta some no
   próprio círculo. No protótipo a cor branca vinha fixa no markup. A variante
   do .cta-card (círculo branco, seta escura) continua ganhando por ter
   especificidade maior. */
.aplicativo-page .btn-arrow svg path { stroke: var(--white); }
.aplicativo-page .section-header { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.aplicativo-page .section-header .eyebrow { justify-content: center; }
.aplicativo-page .section-title { font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 1.12; letter-spacing: -1.3px; color: var(--ink); }
.aplicativo-page .section-sub { font-size: 16.5px; color: var(--body); margin-top: 16px; line-height: 1.62; }
.aplicativo-page .section-divider { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.aplicativo-page .section-divider::before { content: ''; display: block; border-top: 1px solid var(--hairline); }

/* floating-card: a linguagem visual repetida em toda a página —
   cartão branco solto, sombra longa e suave, leve rotação, sem ícone-em-círculo */
.aplicativo-page .fcard {
  background: var(--white); border: 1px solid var(--hairline-soft); border-radius: 18px;
  box-shadow: 0 24px 50px -20px rgba(20,20,19,0.22);
}

/* ========== HERO ========== */
.aplicativo-page .hero { position: relative; padding: 160px 0 0; overflow: hidden; }
.aplicativo-page .hero-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.aplicativo-page .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--ink); background: var(--white); border: 1px solid var(--hairline);
  padding: 8px 18px 8px 14px; border-radius: var(--radius-btn); margin-bottom: 30px;
}
.aplicativo-page .hero-badge .hb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.aplicativo-page .hero h1 { font-family: var(--font-display); font-size: 66px; font-weight: 600; line-height: 1.04; letter-spacing: -1.8px; color: var(--ink); margin-bottom: 22px; }
.aplicativo-page .hero-sub { font-size: 18px; color: var(--body); line-height: 1.55; max-width: 540px; margin: 0 auto 32px; }
.aplicativo-page .hero-sub strong { color: var(--ink); font-weight: 600; }
.aplicativo-page .hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.aplicativo-page .hero-visual { margin-top: 64px; display: flex; justify-content: center; }
.aplicativo-page .hero-stage { position: relative; display: inline-block; padding-bottom: 40px; }
.aplicativo-page .hero-capsule {
  width: 340px; border-radius: 16px; overflow: visible;
  filter: drop-shadow(0 40px 60px rgba(20,20,19,0.22));
}
.aplicativo-page .hero-capsule img { width: 100%; height: auto; object-fit: contain; display: block; }

.aplicativo-page .hero-card { position: absolute; z-index: 3; padding: 20px 22px; line-height: 1.5; text-align: left; width: 216px; }
.aplicativo-page .hero-card.stat { left: -8%; top: 8%; }
.aplicativo-page .hero-card.stat .hc-num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 9px; letter-spacing: -1px; }
.aplicativo-page .hero-card.stat .hc-label { font-size: 14px; color: var(--body); line-height: 1.35; margin-bottom: 13px; }
.aplicativo-page .hero-card.stat .hc-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink); }
.aplicativo-page .hero-card.stat .hc-tag::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.aplicativo-page .hero-card.demo { right: -10%; bottom: 6%; }
.aplicativo-page .hero-card.demo .hc-title { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 13px; }
.aplicativo-page .hero-card.demo .hc-bolt { width: 24px; height: 24px; border-radius: 50%; background: var(--white); border: 1px solid var(--hairline-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aplicativo-page .hero-card.demo .hc-bolt svg { width: 12px; height: 12px; }
.aplicativo-page .hero-card.demo .hc-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--body); padding: 6px 0; }
.aplicativo-page .hero-card.demo .hc-link svg { width: 13px; height: 13px; }
.aplicativo-page .hero-card.demo .hc-link:hover { color: var(--ink); }

/* ========== WORDMARK STRIP ========== */
.aplicativo-page .wordstrip { padding: 40px 0 var(--section-gap); }
.aplicativo-page .wordstrip-label { text-align: center; font-size: 13.5px; color: var(--body); margin-bottom: 30px; }
.aplicativo-page .wordstrip-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px 52px; }
.aplicativo-page .wordstrip-row img { height: 44px; width: 44px; border-radius: 12px; object-fit: cover; opacity: 0.9; transition: opacity 0.25s, transform 0.25s; }
.aplicativo-page .wordstrip-row img:hover { opacity: 1; transform: translateY(-2px); }

/* ========== QUEM FAZ O QUÊ ========== */
.aplicativo-page .whoiswho { padding: 0 0 var(--section-gap); }
.aplicativo-page .whoiswho-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.aplicativo-page .whoiswho h2 { font-family: var(--font-display); font-size: 32px; font-weight: 500; letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 12px; }
.aplicativo-page .whoiswho .section-sub { margin-bottom: 48px; }
.aplicativo-page .whoiswho-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.aplicativo-page .who-card { width: 220px; padding: 26px 24px; text-align: left; }
.aplicativo-page .who-card .wc-ic { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.aplicativo-page .who-card .wc-ic svg { width: 16px; height: 16px; }
.aplicativo-page .who-card .wc-t { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.aplicativo-page .who-card .wc-s { font-size: 13.5px; color: var(--body); line-height: 1.5; }
.aplicativo-page .pc-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--ink); padding: 8px 0; transition: gap .2s; }
.aplicativo-page .pc-link:hover { gap: 12px; }
.aplicativo-page .pc-link svg { width: 15px; height: 15px; }

/* ========== MOMENTO-CONSTELAÇÃO ========== */
.aplicativo-page .constellation { padding: 0 0 var(--section-gap); }
.aplicativo-page .constellation-inner { max-width: 1020px; margin: 0 auto; padding: 0 24px; position: relative; }
.aplicativo-page .constellation .eyebrow { display: flex; justify-content: center; margin-bottom: 44px; }
.aplicativo-page .const-stat { text-align: center; padding: 0 0 8px; }
.aplicativo-page .const-num {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(64px, 9vw, 132px); line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.aplicativo-page .const-label { font-size: 17px; color: var(--body); max-width: 380px; margin: 14px auto 0; line-height: 1.5; }
.aplicativo-page .const-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; align-items: stretch; }
.aplicativo-page .const-card { padding: 22px 20px; }
.aplicativo-page .const-card .cc-num { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--orange-deep); margin-bottom: 8px; letter-spacing: -0.3px; }
.aplicativo-page .const-card .cc-t { font-size: 13.5px; color: var(--body); line-height: 1.45; }

/* ========== RECURSOS (mosaico) ========== */
.aplicativo-page .features { padding: 0 0 var(--section-gap); }
.aplicativo-page .features-mosaic { max-width: 1020px; margin: 56px auto 0; padding: 0 24px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.aplicativo-page .feat-card { padding: 26px 24px; }
.aplicativo-page .feat-card .fc-n { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 1.4px; color: var(--orange-deep); margin-bottom: 10px; }
.aplicativo-page .feat-card .fc-t { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.2px; }
.aplicativo-page .feat-card .fc-s { font-size: 14px; font-weight: 600; color: var(--body); margin-bottom: 9px; }
.aplicativo-page .feat-keywords { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; max-width: 760px; margin: 24px auto 0; }
.aplicativo-page .feat-keywords span { font-size: 13.5px; color: var(--body); display: inline-flex; align-items: center; gap: 18px; }
.aplicativo-page .feat-keywords span:not(:last-child)::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--orange-deep); opacity: .55; }
.aplicativo-page .feat-lead { max-width: 720px; margin: 0 auto; text-align: center; }
.aplicativo-page .feat-lead h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 600; letter-spacing: -0.5px; line-height: 1.15; color: var(--ink); }
.aplicativo-page .feat-lead p { font-size: 16px; color: var(--body); line-height: 1.7; margin-top: 14px; }
.aplicativo-page .feat-divider { max-width: 1020px; margin: 64px auto 0; padding: 0 24px; }
.aplicativo-page .feat-divider hr { border: none; border-top: 1px solid var(--hairline-soft); }
.aplicativo-page .feat-card .fc-t strong { color: var(--orange-deep); }
.aplicativo-page .feat-card p { font-size: 14px; color: var(--body); line-height: 1.6; }
.aplicativo-page .feat-card:nth-child(1), .aplicativo-page .feat-card:nth-child(2), .aplicativo-page .feat-card:nth-child(3), .aplicativo-page .feat-card:nth-child(4), .aplicativo-page .feat-card:nth-child(5), .aplicativo-page .feat-card:nth-child(6) { grid-column: span 3; }

/* ========== FORA DO MOLDE ========== */
.aplicativo-page .outofmold { padding: 0 0 var(--section-gap); }
.aplicativo-page .outofmold-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.aplicativo-page .outofmold h2 { font-family: var(--font-display); font-size: 34px; font-weight: 500; line-height: 1.22; letter-spacing: -0.9px; margin-bottom: 56px; }
.aplicativo-page .outofmold h2 .w { color: var(--muted); transition: color 0.25s ease; }
.aplicativo-page .outofmold h2 .w.on { color: var(--ink); }
.aplicativo-page .outofmold h2 .w.accent.on { color: var(--orange-deep); }
.aplicativo-page .mold-stage { margin-bottom: 40px; }
.aplicativo-page .mold-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 780px; margin: 0 auto; }
.aplicativo-page .mold-card { margin: 0; }
.aplicativo-page .mold-card img { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: 0 10px 26px -14px rgba(20,22,26,0.4); }
.aplicativo-page .mold-card figcaption { margin-top: 10px; font-size: 12.5px; color: var(--body); text-align: center; }
.aplicativo-page .mold-card figcaption b { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.aplicativo-page .outofmold-foot { font-size: 15.5px; color: var(--body); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.aplicativo-page .outofmold-foot strong { color: var(--ink); font-weight: 600; }

/* ========== COMO FUNCIONA ========== */
.aplicativo-page .steps { padding: 0 0 var(--section-gap); }
.aplicativo-page .steps-inner { max-width: 1020px; margin: 0 auto; padding: 0 24px; }
.aplicativo-page .steps-top { max-width: 560px; margin: 0 auto 56px; text-align: center; }
.aplicativo-page .steps-top h2 { font-family: var(--font-display); font-size: 36px; font-weight: 500; line-height: 1.12; letter-spacing: -1.1px; margin-bottom: 14px; }
.aplicativo-page .steps-top p { font-size: 16px; color: var(--body); line-height: 1.6; margin-bottom: 28px; }
.aplicativo-page .steps-row { display: flex; align-items: stretch; gap: 0; }
.aplicativo-page .step-pill { flex: 1; background: var(--white); border: 1px solid var(--hairline-soft); border-radius: 20px; padding: 26px 24px; box-shadow: 0 20px 40px -24px rgba(20,20,19,0.18); display: flex; flex-direction: column; min-height: 220px; }
.aplicativo-page .step-connector { flex: 0 0 40px; height: 1px; align-self: center; border-top: 2px dashed var(--teal-deep); opacity: 0.4; }
.aplicativo-page .step-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 1px; margin-bottom: 16px; }
.aplicativo-page .step-pill h3 { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.2px; }
.aplicativo-page .step-pill p { font-size: 14px; color: var(--body); line-height: 1.58; flex: 1; }
.aplicativo-page .steps-note { text-align: center; font-size: 13.5px; color: var(--body); margin-top: 30px; }

/* ========== ESCALA / MAPA ========== */
/* ========== FAQ ========== */
.aplicativo-page .faq { padding: 0 0 var(--section-gap); }
.aplicativo-page .faq-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.aplicativo-page .faq-list { max-width: 760px; margin: 0 auto; }
.aplicativo-page .faq-item { border-bottom: 1px solid var(--hairline); }
.aplicativo-page .faq-question { width: 100%; background: none; border: none; font-family: var(--font-display); font-size: 17.5px; font-weight: 500; color: var(--ink); text-align: left; padding: 23px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.aplicativo-page .faq-question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); transition: transform 0.3s; }
.aplicativo-page .faq-item.open .faq-question svg { transform: rotate(45deg); color: var(--orange-deep); }
.aplicativo-page .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.aplicativo-page .faq-answer-inner { padding: 0 0 23px; font-size: 15px; color: var(--body); line-height: 1.7; max-width: 640px; }

/* ========== CTA ========== */
.aplicativo-page .cta { padding: 0 0 84px; }
.aplicativo-page .cta-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.aplicativo-page .cta-card { background: var(--ink); border-radius: var(--radius-capsule); padding: 84px 40px; text-align: center; }
.aplicativo-page .cta-card h2 { font-family: var(--font-display); font-size: 42px; font-weight: 500; line-height: 1.1; letter-spacing: -1.3px; color: var(--white); margin-bottom: 18px; }
.aplicativo-page .cta-card p { font-size: 16.5px; color: rgba(255,255,255,0.64); line-height: 1.6; max-width: 460px; margin: 0 auto 32px; }
.aplicativo-page .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.aplicativo-page .cta-card .btn-primary { background: var(--white); color: var(--ink); }
.aplicativo-page .cta-card .btn-primary:hover { background: #EDEBE4; }
.aplicativo-page .cta-card .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.24); }
.aplicativo-page .cta-card .btn-secondary:hover { background: rgba(255,255,255,0.07); box-shadow: none; }
.aplicativo-page .cta-card .btn-arrow { background: var(--white); }
.aplicativo-page .cta-card .btn-arrow svg path { stroke: var(--ink); }

/* ========== FECHAMENTO — WORDMARK ========== */
.aplicativo-page .closing { padding: 0 0 var(--section-gap); text-align: center; overflow: hidden; }
.aplicativo-page .closing-credit { font-size: 13px; color: var(--body); margin-bottom: 8px; }
.aplicativo-page .closing-word { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; font-size: clamp(32px, 4.5vw, 64px); color: var(--ink); max-width: 720px; margin: 0 auto; }
.aplicativo-page .closing-word div { white-space: normal; }
.aplicativo-page .closing-word span { color: var(--orange-deep); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .aplicativo-page { --section-gap: 100px; }
  .aplicativo-page .hero { padding-top: 132px; }
  .aplicativo-page .hero h1 { font-size: 50px; }
  .aplicativo-page .hero-capsule { width: 280px; }
  .aplicativo-page .hero-card { width: 188px; padding: 17px 18px; }
  .aplicativo-page .hero-card.stat { left: -4%; }
  .aplicativo-page .hero-card.demo { right: -4%; }
  .aplicativo-page .section-title, .aplicativo-page .whoiswho h2 { font-size: 30px; }
  .aplicativo-page .features-mosaic { grid-template-columns: repeat(2, 1fr); }
  .aplicativo-page .feat-card { grid-column: span 1 !important; margin-top: 0 !important; transform: none !important; }
  .aplicativo-page .const-grid { grid-template-columns: repeat(2, 1fr); }
  .aplicativo-page .cta-card h2 { font-size: 34px; }
  .aplicativo-page .cta-card { padding: 64px 32px; }
  .aplicativo-page .steps-row { flex-direction: column; gap: 18px; }
  .aplicativo-page .step-connector { display: none; }
}
@media (max-width: 720px) {
  /* O selo do hero é uma frase longa: a 12,5px ele ficava com peso demais
     para o topo da página no celular. */
  .aplicativo-page .hero-badge { font-size: 8px; }
  /* A .features não tem .container em volta do texto (só a grade e o divisor
     têm padding próprio), então o título, o parágrafo e as palavras-chave
     encostavam nas bordas. Gutter de 20px na própria section e os wrappers
     internos zeram o deles — 20px em um nível só, como no resto do site. */
  .aplicativo-page .features { padding-left: 20px; padding-right: 20px; }
  .aplicativo-page .features .feat-divider,
  .aplicativo-page .features-mosaic { padding-left: 0; padding-right: 0; }
  .aplicativo-page { --section-gap: 76px; }
  .aplicativo-page .hero { padding-top: 118px; }
  .aplicativo-page .hero h1 { font-size: 36px; letter-spacing: -1.1px; }
  .aplicativo-page .hero-sub { font-size: 15.5px; }
  .aplicativo-page .hero-capsule { width: 220px; }
  .aplicativo-page .hero-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .aplicativo-page .hero-card { position: static; width: 100%; max-width: 300px; transform: none !important; box-shadow: 0 10px 26px -10px rgba(20,20,19,0.2); }
  .aplicativo-page .whoiswho-row { flex-direction: column; align-items: center; }
  /* A faixa de ícones usa gap 40px 52px no desktop; no celular os itens
     quebram em várias linhas e esse espaçamento abria buracos grandes. */
  .aplicativo-page .wordstrip-row { gap: 20px; }
  .aplicativo-page .who-card { width: 100%; max-width: 300px; transform: none !important; }
  .aplicativo-page .const-num { font-size: 52px; }
  .aplicativo-page .const-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .aplicativo-page .features-mosaic { grid-template-columns: 1fr; margin-top: 36px; }
  .aplicativo-page .mold-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aplicativo-page .section-title, .aplicativo-page .whoiswho h2, .aplicativo-page .steps-top h2, .aplicativo-page .outofmold h2 { font-size: 26px; }
  .aplicativo-page .cta-card h2 { font-size: 28px; }
  .aplicativo-page .cta-card { padding: 52px 24px; border-radius: 32px; }
  .aplicativo-page .closing-word { font-size: 7vw; }
}
