/* ==========================================================================
   Softmax — tema "limpo"
   CSS próprio desta landing. Não depende de Bootstrap nem de landing.css.
   ========================================================================== */

:root {
  --ink:      #0f172a;
  --body:     #475569;
  --muted:    #64748b;
  --faint:    #94a3b8;
  --line:     #e4e9f0;
  --line-2:   #eef2f7;
  /* cinza das seções alternadas: precisa ter presença, senão tudo lê como branco */
  --soft:     #eef2f7;
  /* superfície escura das faixas de respiro */
  --deep:     #0f172a;
  --deep-2:   #16233d;

  /* cor principal: azul-marinho da marca (era #1e3a8a no CSS antigo) */
  --brand:       #1e3a8a;
  --brand-dark:  #152b66;
  --brand-light: #2b4da8;
  --brand-soft:  #eef2fb;
  --brand-line:  #dbe3f6;

  /* profundidade */
  --sh-xs: 0 1px 2px rgba(15,23,42,.05);
  --sh-sm: 0 2px 6px -2px rgba(15,23,42,.09), 0 1px 2px rgba(15,23,42,.05);
  --sh-md: 0 10px 24px -12px rgba(15,23,42,.20), 0 2px 6px -2px rgba(15,23,42,.07);
  --sh-lg: 0 22px 48px -22px rgba(15,23,42,.28), 0 4px 12px -6px rgba(15,23,42,.10);
  --sh-brand: 0 8px 20px -8px rgba(30,58,138,.55);
  --sh-brand-hover: 0 14px 30px -10px rgba(30,58,138,.62);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

/* === LAYOUT ============================================================== */

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.sec { padding: 96px 0; }
.sec--soft { background: var(--soft); }
.sec--tight { padding: 72px 0; }

/* faixa escura: dá ritmo à página e evita que tudo leia como uma coisa branca só */
.sec--deep { background: var(--deep); }
.sec--deep h2, .sec--deep h3, .sec--deep .statement { color: #fff; }
.sec--deep .sec-head p { color: #a9b6cc; }
/* o azul da marca some no fundo escuro; no escuro o destaque é o azul claro */
.sec--deep .statement b, .sec--deep strong { color: #8fb0ff; }

.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(1.85rem, 3.7vw, 2.65rem); }
.sec-head p { color: var(--body); font-size: 19px; margin: 16px 0 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--brand); background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  padding: 6px 14px; border-radius: 999px;
}

.grid { display: grid; gap: 32px; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(222px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

/* === BOTÕES ============================================================== */

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 16.5px; font-weight: 600; line-height: 1;
  padding: 16px 28px; border-radius: 10px;
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background-color .18s ease,
              border-color .18s ease, color .18s ease;
}
.btn > * { position: relative; z-index: 1; }

/* faixa de luz que atravessa o botão no hover — o "reflexo de cera" */
.btn::after {
  content: ''; position: absolute; top: -60%; left: 0;
  width: 38%; height: 220%; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(18deg) translateX(-320%);
  transition: transform .8s cubic-bezier(.22,.7,.3,1);
}
.btn:hover::after { transform: rotate(18deg) translateX(500%); }

.btn--primary {
  color: #fff;
  background: linear-gradient(170deg, var(--brand-light) 0%, var(--brand) 52%, var(--brand-dark) 100%);
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-brand-hover), inset 0 1px 0 rgba(255,255,255,.34);
}
.btn--primary:active { transform: translateY(0); box-shadow: var(--sh-brand); }
.btn--primary:disabled { opacity: .6; cursor: wait; transform: none; }

.btn--ghost {
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  color: var(--ink); border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn--ghost:hover { border-color: #cfd8e3; transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--ghost:active { transform: translateY(0); }
.btn--ghost::after { background: linear-gradient(90deg, transparent, rgba(15,23,42,.05), transparent); }
.btn--sm { padding: 11px 19px; font-size: 15px; }
.btn--block { width: 100%; }

/* === CABEÇALHO =========================================================== */

.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
/* altura fixa e largura automática: o logo recortado não é quadrado */
.brand img { height: 46px; width: auto; }
.brand span { font-weight: 700; color: var(--ink); letter-spacing: -0.02em; font-size: 18px; white-space: nowrap; }
.so-mobile { display: none; }
.hdr-nav { display: flex; align-items: center; gap: 28px; flex: none; }
/* nowrap em TODAS as larguras: se o botão quebrar em duas linhas ele cresce
   além da altura do cabeçalho e invade o conteúdo abaixo */
.hdr-nav a { font-size: 16px; color: var(--body); text-decoration: none; font-weight: 500; white-space: nowrap; }
.hdr-nav a:hover { color: var(--ink); }
/* o link vira botão: precisa vencer a cor do nav acima */
.hdr-nav a.btn--primary, .hdr-nav a.btn--primary:hover { color: #fff; font-weight: 600; }
.hdr-nav a.btn--ghost, .hdr-nav a.btn--ghost:hover { color: var(--ink); font-weight: 600; }

/* === HERO ================================================================ */

.hero {
  padding: 84px 0 0; text-align: center; position: relative;
  /* leve halo azul atrás do título + tinta que desbota antes do mockup,
     pra primeira dobra não ser um branco chapado */
  background:
    radial-gradient(880px 360px at 50% -60px, rgba(30,58,138,.13), transparent 68%),
    linear-gradient(180deg, #e9eff9 0%, #f2f6fc 34%, #f9fbfe 62%, #fff 88%);
}
/* na tinta azul o chip perderia o contorno; no branco ele salta */
.hero .eyebrow { background: #fff; }
.hero h1 { font-size: clamp(2.25rem, 5.4vw, 3.75rem); margin: 24px 0 0; }
.hero .lead {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  color: var(--body); max-width: 680px; margin: 22px auto 0; line-height: 1.5;
}
.hero .sub { font-size: 17px; color: var(--muted); max-width: 580px; margin: 16px auto 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.hero-note { margin: 18px 0 0; font-size: 14.5px; color: var(--faint); }

/* === MOCKUP DO SISTEMA =================================================== */

.mock {
  margin: 60px auto 0; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 44px 80px -40px rgba(15,23,42,.45),
              0 16px 34px -22px rgba(15,23,42,.22),
              inset 0 1px 0 rgba(255,255,255,.9);
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; background: var(--soft); border-bottom: 1px solid var(--line);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #dde3ea; flex: none; }
.mock-url {
  margin-left: 10px; font-size: 12px; color: var(--muted);
  background: #fff; border: 1px solid var(--line);
  padding: 4px 12px; border-radius: 6px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.mock-body { padding: 0; background: #fbfcfd; }

/* --- réplica da tela inicial do Softmax Ares --- */
.app-top {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--line);
}
.app-burger {
  width: 34px; height: 30px; border-radius: 8px; border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 0 7px; flex: none;
}
.app-burger i { display: block; height: 2px; background: #334155; border-radius: 2px; }
.app-chip {
  display: flex; align-items: center; gap: 8px; flex: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px 4px 5px; background: #fff;
}
.app-chip .badge {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700;
}
.app-chip .badge svg { width: 13px; height: 13px; }
.app-chip u { display: block; text-decoration: none; font-size: 8.5px; letter-spacing: .09em; color: var(--faint); font-weight: 700; line-height: 1.3; }
.app-chip b { display: block; font-size: 12.5px; color: var(--ink); font-weight: 700; line-height: 1.3; white-space: nowrap; }
.app-search {
  margin: 0 auto; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 9px 7px 15px;
  font-size: 13.5px; color: var(--muted); background: #fff; white-space: nowrap;
}
.app-search svg { width: 15px; height: 15px; }
.app-search kbd {
  font-family: inherit; font-size: 11.5px; font-weight: 600; color: var(--body);
  background: var(--soft); border: 1px solid var(--line); border-radius: 5px; padding: 2px 7px;
}
.app-top img { height: 28px; width: auto; flex: none; }

.app-main { padding: 24px 22px 26px; }
.app-greet { font-size: 23px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin: 0; }
.app-sub { font-size: 13.5px; color: var(--muted); margin: 7px 0 22px; }

.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 12px; }
.app-card {
  position: relative; display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 14px 13px 16px; overflow: hidden;
  box-shadow: var(--sh-sm);
}
.app-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: currentColor; }
/* o fundo herda a cor do .app-card; o branco fica só no <svg>, senão o
   currentColor do background resolveria para o próprio color e sumiria */
.app-card .tile {
  position: relative; overflow: hidden;
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: currentColor;
  box-shadow: 0 6px 14px -7px currentColor, inset 0 1px 0 rgba(255,255,255,.42);
}
/* mesmo verniz dos ícones da página, em escala menor */
.app-card .tile::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(158deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.10) 36%, rgba(255,255,255,0) 54%);
}
.app-card .tile svg { position: relative; z-index: 1; width: 20px; height: 20px; color: #fff; }
.app-card .txt { min-width: 0; }
.app-card strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
/* escopado no .txt: um seletor solto em "span" atingia .tile e .go e apagava a cor deles */
.app-card .txt span { display: block; font-size: 12px; color: var(--muted); line-height: 1.4; margin-top: 2px; }
.app-card .go {
  margin-left: auto; flex: none; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid #dbe2ea; color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
}
.app-card .go svg { width: 11px; height: 11px; }

.c-green  { color: #10b981; }
.c-blue   { color: #3b82f6; }
.c-indigo { color: #4f46e5; }
.c-pink   { color: #db2777; }
.c-amber  { color: #f59e0b; }
.c-purple { color: #7c3aed; }
.c-teal   { color: #0d9488; }

/* === FAIXA DE NÚMEROS ==================================================== */

.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border-top: 1px solid var(--line); }
.trust > div { padding: 30px 16px; text-align: center; border-left: 1px solid var(--line); }
.trust > div:first-child { border-left: 0; }
.trust strong { display: block; font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.trust span { font-size: 15px; color: var(--muted); }

/* === CARDS DE PROBLEMA / RECURSO ========================================= */

.ico {
  position: relative; overflow: hidden;
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: linear-gradient(155deg, var(--brand-light) 0%, var(--brand) 55%, var(--brand-dark) 100%);
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.38);
  transition: transform .22s ease, box-shadow .22s ease;
}
/* verniz fixo: claridade concentrada no canto superior esquerdo */
.ico::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(158deg, rgba(255,255,255,.40) 0%, rgba(255,255,255,.10) 34%, rgba(255,255,255,0) 52%);
}
/* reflexo que varre o ícone quando o bloco recebe o mouse */
.ico::before {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 44%; height: 200%; pointer-events: none; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  transform: rotate(20deg) translateX(-260%);
  transition: transform .85s cubic-bezier(.22,.7,.3,1);
}
.ico svg { width: 22px; height: 22px; }

.item { transition: transform .22s ease; }
.item:hover .ico { transform: translateY(-3px) scale(1.04); box-shadow: var(--sh-brand-hover), inset 0 1px 0 rgba(255,255,255,.45); }
.item:hover .ico::before { transform: rotate(20deg) translateX(420%); }

.item h3 { font-size: 19px; font-weight: 700; margin: 18px 0 8px; }
.item p { font-size: 16.5px; margin: 0; line-height: 1.62; }

/* === FRASE DE VALOR ====================================================== */

.statement {
  text-align: center; max-width: 840px; margin: 0 auto;
  font-size: clamp(1.5rem, 3.3vw, 2.25rem); font-weight: 700;
  line-height: 1.35; letter-spacing: -0.025em; color: var(--ink);
}
.statement b { color: var(--brand); font-weight: 700; }

/* === ANTES / DEPOIS ====================================================== */

.cmp { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.cmp-col {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px;
  box-shadow: var(--sh-md);
}
.cmp-col--good {
  border-color: var(--brand-line);
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
  box-shadow: 0 14px 34px -18px rgba(30,58,138,.30), 0 2px 6px -2px rgba(15,23,42,.06);
}
.cmp-col h3 { font-size: 13.5px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--muted); margin: 0 0 6px; }
.cmp-col--good h3 { color: var(--brand); }
.cmp-col ul { list-style: none; margin: 0; padding: 0; }
.cmp-col li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); font-size: 17px; }
.cmp-col--good li { color: var(--ink); font-weight: 500; }
.cmp-col svg { width: 19px; height: 19px; flex: none; margin-top: 4px; }
.cmp-col--bad svg { color: var(--faint); }
.cmp-col--good svg { color: var(--brand); }

/* === LOGOS DE CLIENTES =================================================== */

.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; margin-top: 46px; }
.logos img { height: 34px; width: auto; filter: grayscale(1); opacity: .5; transition: opacity .2s ease, filter .2s ease; }
.logos img:hover { filter: none; opacity: 1; }

/* === DEPOIMENTOS ========================================================= */

.quote {
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px;
  box-shadow: var(--sh-md);
  transition: transform .22s ease, box-shadow .22s ease;
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.quote p { font-size: 17px; color: var(--ink); line-height: 1.65; margin: 0 0 20px; }
/* flex-start: quando o cargo quebra em 2-3 linhas, o avatar tem que
   alinhar com o nome, não flutuar no meio do bloco */
.quote footer { display: flex; align-items: flex-start; gap: 12px; padding-top: 17px; border-top: 1px solid var(--line); }
.quote footer > span { padding-top: 2px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
  background: linear-gradient(155deg, var(--brand-light) 0%, var(--brand) 55%, var(--brand-dark) 100%);
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.35);
}
.quote cite { display: block; font-style: normal; font-size: 15.5px; font-weight: 600; color: var(--ink); }
.quote small { font-size: 14px; color: var(--muted); }

/* === FAQ (details nativo, sem JS) ======================================== */

.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  position: relative; cursor: pointer; list-style: none;
  padding: 24px 48px 24px 0;
  font-size: 18.5px; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--faint); border-bottom: 2px solid var(--faint);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
}
.faq details[open] summary { color: var(--brand); }
.faq details[open] summary::after { border-color: var(--brand); transform: translateY(-20%) rotate(-135deg); }
.faq .answer { margin: 0 0 26px; padding-right: 48px; font-size: 17px; line-height: 1.65; color: var(--body); }

/* === CHIPS =============================================================== */

.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 21px; font-size: 16px; font-weight: 500; color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.chip:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.chip svg { width: 17px; height: 17px; color: var(--brand); flex: none; }

/* === FORMULÁRIO ========================================================== */

.form-card {
  max-width: 520px; margin: 0 auto; padding: 34px;
  background: linear-gradient(180deg, #fff 0%, #fcfdfe 100%);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--sh-lg);
}
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 16.5px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 14px 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2364748b' stroke-width='1.8'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; background-size: 16px; padding-right: 38px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(30,58,138,.10); }
.field input.err, .field select.err { border-color: var(--brand); }
.field .msg { display: none; font-size: 13.5px; color: var(--brand); margin-top: 6px; }
.field .msg.on { display: block; }
.form-note { text-align: center; font-size: 13.5px; color: var(--faint); margin: 16px 0 0; }
.form-alt { text-align: center; font-size: 15.5px; margin: 20px 0 0; color: var(--muted); }
.form-alt a { color: var(--brand); text-decoration: none; font-weight: 600; }
.form-alt a:hover { text-decoration: underline; }

/* === MODAL DE CAPTURA ANTES DO WHATSAPP ================================== */

body.mw-open { overflow: hidden; }

.mw { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.mw.on { display: flex; }
.mw[hidden] { display: none; }
.mw-bg { position: absolute; inset: 0; background: rgba(15,23,42,.58); backdrop-filter: blur(3px); }

.mw-card {
  position: relative; width: 100%; max-width: 430px;
  background: #fff; border-radius: 20px; padding: 32px 30px 26px;
  box-shadow: 0 44px 90px -34px rgba(15,23,42,.65);
  animation: mw-entrada .22s cubic-bezier(.2,.8,.3,1);
}
@keyframes mw-entrada { from { opacity: 0; transform: translateY(16px) scale(.97); } }

.mw-x {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--muted);
  font-size: 21px; line-height: 1; cursor: pointer; font-family: inherit;
  transition: color .15s ease, border-color .15s ease;
}
.mw-x:hover { color: var(--ink); border-color: #cfd8e3; }

.mw-badge {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(155deg, #3ddc84 0%, #1fae60 52%, #128c7e 100%);
  box-shadow: 0 12px 24px -10px rgba(18,140,126,.65), inset 0 1px 0 rgba(255,255,255,.4);
}
.mw-badge svg { width: 28px; height: 28px; }

.mw-card h3 { text-align: center; font-size: 22px; margin: 0 0 6px; }
.mw-card > p { text-align: center; font-size: 15.5px; color: var(--muted); margin: 0 0 24px; }

.btn--wpp {
  color: #fff;
  background: linear-gradient(170deg, #3ddc84 0%, #1fae60 52%, #128c7e 100%);
  box-shadow: 0 10px 22px -9px rgba(18,140,126,.62), inset 0 1px 0 rgba(255,255,255,.32);
}
.btn--wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -11px rgba(18,140,126,.68), inset 0 1px 0 rgba(255,255,255,.38);
}
.btn--wpp:active { transform: translateY(0); }
.btn--wpp:disabled { opacity: .65; cursor: wait; transform: none; }

/* === RODAPÉ ============================================================== */

.ft { background: var(--soft); border-top: 1px solid var(--line); padding: 56px 0 40px; }
.ft-in { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; }
/* marca do rodapé: símbolo maior + nome com a assinatura embaixo */
.ft .brand { align-items: center; margin-bottom: 16px; }
.ft .brand img { height: 56px; }
.ft-marca span { line-height: 1.2; }
.ft-marca em {
  display: block; font-style: normal; white-space: nowrap;
  font-size: 13px; font-weight: 600; letter-spacing: 0;
  color: var(--brand); margin-top: 3px;
}
.ft h4 { font-size: 13.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin: 0 0 14px; font-weight: 700; }
.ft p { font-size: 15.5px; color: var(--muted); margin: 0 0 8px; max-width: 330px; }
.ft a { font-size: 15.5px; color: var(--muted); text-decoration: none; display: block; margin-bottom: 9px; }
.ft a:hover { color: var(--brand); }
.ft-bottom { border-top: 1px solid var(--line); margin-top: 38px; padding-top: 24px; text-align: center; font-size: 14.5px; color: var(--faint); }

/* === REVEAL SUAVE ======================================================== */

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  /* sem varredura de luz nem elevação para quem pediu menos movimento */
  .btn::after, .ico::before { display: none; }
  .btn, .ico, .quote, .chip, .item { transition: none; }
  .btn:hover, .quote:hover, .chip:hover, .item:hover .ico { transform: none; }
}

/* === RESPONSIVO ========================================================== */

/* --- cabeçalho tem breakpoints próprios: ele aperta antes do resto da página --- */

/* os links de texto saem bem antes do limite, pra sobrar folga pro CTA */
@media (max-width: 900px) {
  .hdr-nav a:not(.btn) { display: none; }
  .hdr-in { height: 68px; }
}
/* só quando marca + botão longo realmente não cabem, o rótulo encurta */
@media (max-width: 520px) {
  .so-desktop { display: none; }
  .so-mobile { display: inline; }
  .hdr-nav a.btn { padding: 11px 16px; font-size: 14.5px; }
  .hdr-in { height: 64px; gap: 10px; }
  .brand span { font-size: 16.5px; }
  .brand img { height: 38px; width: auto; }
}

@media (max-width: 780px) {
  .hero { padding-top: 56px; }
  .sec { padding: 64px 0; }
  .sec--tight { padding: 52px 0; }
  .sec-head { margin-bottom: 40px; }
  .mock { margin-top: 44px; }
  /* não cabem na barra do mockup nesta largura — melhor sumir que ficar cortado */
  .app-search, .app-top img { display: none; }
  .trust > div { border-left: 0; border-top: 1px solid var(--line); }
  .trust > div:first-child, .trust > div:nth-child(2) { border-top: 0; }
  .form-card { padding: 26px 20px; }
  .logos { gap: 28px; }
  .logos img { height: 28px; }
}
