/* =========================================================
   Códigos da Argumentação — Tema compartilhado
   Paleta: preto, dourado (#CF7402), creme (#E6E1D7), branco (#FEFEFE)
   Usado por todas as páginas do funil (cadastro, obrigado, ...)
   ========================================================= */

:root {
  --color-black: #000000;
  --color-gold: #CF7402;
  --color-gold-light: #e08e1f;
  --color-cream: #E6E1D7;
  --color-white: #FEFEFE;

  --text-onlight: #17140f;
  --text-onlight-muted: #4a4640;
  --text-ondark: #FEFEFE;
  --text-ondark-muted: #cfc9bd;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 10px;
  --max-width: 1120px;

  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-onlight);
  background: var(--color-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

ul { margin: 0; padding: 0; }

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
}

/* ---------------- Botões ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(207, 116, 2, 0.35);
}

.btn--primary:active { transform: translateY(0); }

/* ---------------- Eyebrow / tags ---------------- */

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.eyebrow--center { display: block; text-align: center; }

/* ---------------- Responsivo (compartilhado) ---------------- */

@media (max-width: 480px) {
  .container { padding: 0 18px; }

  /* Evita que textos longos de CTA estourem a largura da tela
     em vez de quebrar linha (nowrap é usado no desktop por design) */
  .btn {
    white-space: normal;
    text-align: center;
  }
}
