/* =========================================================================
   Esqueleto das LANDING PAGES (arte à esquerda, painel à direita).
   Carregue nesta ordem: marca.css, form.css, estilo.css.
   O formulário e o consentimento moram em form.css, compartilhados com a home.
   FONTE ÚNICA: edite este arquivo e rode ./sinc.sh para propagar.
   As cópias dentro de cada lp-<nome> são geradas, não edite lá.
   (Não escreva "lp-asterisco-barra" aqui: fecha o comentário e mata o :root.)

   Estrutura de toda LP: <main> com .arte (imagem) à esquerda e .painel
   (título + form/CTA) à direita. Para mudar o visual de uma LP, sobrescreva
   as variáveis abaixo num <style> da própria página. Não bifurque este CSS.
   ========================================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--navy-deep); }
body {
  font-family: var(--fonte);
  background: radial-gradient(1200px 700px at 20% -10%, #14306b 0%, var(--navy) 48%, var(--navy-deep) 100%) no-repeat var(--navy-deep);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

main {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.arte {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  line-height: 0;
}
.arte img { width: 100%; height: auto; display: block; }

.painel { max-width: 460px; }
.selo {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acento);
  font-weight: 700;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
h1 em { font-style: normal; color: var(--acento); }
.sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  main { grid-template-columns: 1fr; gap: 30px; max-width: 460px; }
  .arte { max-width: 380px; margin: 0 auto; }
  .painel { max-width: none; }
}
