  /* Landing: só o que é específico dela. Tokens, cabeçalho, botões e rodapé vêm de base.css */
  :root { --sec-pad: 80px; }  /* respiro vertical das seções */
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  /* Âncoras: o rótulo da seção fica 16px abaixo do cabeçalho fixo, em qualquer largura */
  section[id] { scroll-margin-top: max(0px, calc(var(--topo-h) + 16px - var(--sec-pad))); }
  .so-leitor { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  /* Cabeçalho fixo na landing */
  header.topo { position: sticky; top: 0; z-index: 10; }
  .topo .menu { display: flex; align-items: center; gap: 24px; margin-left: auto; margin-right: 24px; }
  .topo .menu a.link { color: #cfd5ea; text-decoration: none; font-size: 15px; }
  .topo .menu a.link:hover { color: #fff; }

  /* Botões (o básico está em base.css) */
  .btn-contorno { border-color: #5b6689; color: #fff; }
  .btn-contorno:hover { border-color: #fff; }
  .btn-navy { background: var(--marca); color: #fff; }                   /* ação em fundo claro = navy */
  .btn-navy:hover { background: var(--marca-claro); }

  /* Hero */
  .hero { background: var(--marca); color: #fff; padding: 72px 0 88px; }
  .hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .selo { display: inline-block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--acento); border: 1px solid var(--marca-linha); background: var(--marca-fundo); padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
  .hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 5.4vw, 60px); line-height: 1.08; }
  .hero h1 em { font-style: normal; color: var(--acento); }
  .hero p.lead { margin-top: 20px; font-size: 18px; color: #cfd5ea; max-width: 34em; }
  .hero .acoes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .hero .nota { margin-top: 18px; font-size: 14px; color: #97a0bf; }

  /* Carrossel de telas do app (hero). Rolagem nativa com scroll-snap: funciona no toque sem JS;
     os botões e as bolinhas só acrescentam navegação. */
  .carrossel { min-width: 0; }
  .moldura { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
  .moldura .barra-topo { display: flex; gap: 6px; padding: 10px 14px; background: #ece9db; border-bottom: 1px solid #e0dcc9; }
  .moldura .barra-topo i { width: 10px; height: 10px; border-radius: 50%; background: #c9c4ad; }
  .faixa { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; outline-offset: -3px; }
  .faixa::-webkit-scrollbar { display: none; }
  .slide { flex: 0 0 100%; scroll-snap-align: start; margin: 0; }
  .slide .tela-img { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #f7f5ec, #e9e5d3); display: grid; place-items: center; }
  /* Fica visível só se o arquivo da imagem não existir (a img é removida no onerror) */
  .slide .tela-img::before { content: attr(data-vazio); color: var(--texto-suave); font-size: 14px; text-align: center; padding: 0 16px; }
  .slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
  .slide figcaption { padding: 12px 16px 14px; font-size: 14.5px; color: var(--texto-suave); border-top: 1px solid #e7e4d6; }
  .slide figcaption b { color: var(--texto); }
  .controles { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
  .seta { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #5b6689; background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; }
  .seta:hover { border-color: #fff; }
  .seta[aria-disabled="true"] { opacity: .35; cursor: default; }
  .seta[aria-disabled="true"]:hover { border-color: #5b6689; }
  .seta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  .bolinhas { display: flex; gap: 4px; }
  .bolinhas button { width: 28px; height: 28px; border: 0; background: transparent; cursor: pointer; display: grid; place-items: center; padding: 0; }
  .bolinhas button::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #5b6689; transition: background .2s, transform .2s; }
  .bolinhas button[aria-current="true"]::after { background: var(--acento); transform: scale(1.25); }
  .carrossel :focus-visible { outline-color: var(--acento); }
  .faixa:focus-visible { outline: 3px solid var(--acento); }
  @media (prefers-reduced-motion: reduce) { .bolinhas button::after { transition: none; } }

  /* Seções */
  section { padding: var(--sec-pad) 0; }
  h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 4vw, 44px); line-height: 1.12; margin: 8px 0 14px; }
  .intro { color: var(--texto-suave); max-width: 40em; font-size: 17px; }

  .passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .passo { background: #fff; border-radius: 14px; padding: 26px; border: 1px solid #e7e4d6; }
  .passo .n { width: 36px; height: 36px; border-radius: 50%; background: var(--marca); color: var(--acento); display: grid; place-items: center; font-weight: 700; margin-bottom: 14px; }
  .passo h3 { font-size: 18px; margin-bottom: 6px; }
  .passo p { color: var(--texto-suave); font-size: 15px; }

  .funcs { background: #fff; border-block: 1px solid #e7e4d6; }
  .grade { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .func { padding: 24px; border-radius: 14px; background: var(--pagina); border: 1px solid #e7e4d6; }
  .func .ico { width: 44px; height: 44px; border-radius: 10px; background: var(--marca); display: grid; place-items: center; margin-bottom: 14px; }
  .func .ico svg { width: 22px; height: 22px; stroke: var(--acento); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .func h3 { font-size: 17px; margin-bottom: 6px; }
  .func p { font-size: 15px; color: var(--texto-suave); }

  .privacidade { background: var(--acento-suave); }
  .privacidade .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .lista { list-style: none; padding: 0; display: grid; gap: 16px; }
  .lista li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; font-size: 16px; }
  .lista .ok { width: 28px; height: 28px; border-radius: 50%; background: var(--marca); display: grid; place-items: center; }
  .lista .ok svg { width: 14px; height: 14px; stroke: var(--acento); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .lista b { display: block; }
  .lista span { color: var(--texto-suave); font-size: 15px; }

  .aviso { padding: 56px 0 0; }
  .aviso .caixa { border: 1px solid #d9d4bd; border-left: 5px solid var(--acento-fosco); background: #fff; border-radius: 10px; padding: 20px 24px; font-size: 15px; color: var(--texto-suave); }
  .aviso .caixa strong { color: var(--texto); }

  .final { background: var(--marca); color: #fff; text-align: center; padding: 84px 0; margin-top: 56px; }
  .final h2 { color: #fff; }
  .final p { color: #cfd5ea; margin: 0 auto 28px; max-width: 32em; }

  /* Celular */
  @media (max-width: 900px) {
    .hero .wrap, .privacidade .wrap { grid-template-columns: 1fr; gap: 40px; }
    .passos, .grade { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    :root { --sec-pad: 56px; --topo-h: 100px; }
    .topo .wrap { flex-wrap: wrap; align-content: center; row-gap: 6px; }
    .topo .menu { order: 3; flex: 1 0 100%; margin: 0; gap: 22px; overflow-x: auto; scrollbar-width: none; white-space: nowrap; }
    .topo .menu::-webkit-scrollbar { display: none; }
    .topo .menu a.link { padding: 6px 0; }
    .hero { padding: 48px 0 56px; }
    .passos, .grade { grid-template-columns: 1fr; }
    .hero .acoes .btn { width: 100%; }
  }
