:root {
  --navy: #06182b;
  --navy-2: #103653;
  --gold: #d5a84a;
  --gold-soft: #f0c76a;
  --paper: #f7f5f2;
  --line: #dfe4e7;
  --text: #1f2f3d;
  --muted: #617486;
  --danger: #b53131;
  --success: #1c7d52;
  --shadow: 0 28px 80px rgba(6, 24, 43, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fbfbfa 0%, #f3f4f5 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 251, 250, 0.92);
  border-bottom: 1px solid rgba(16, 34, 55, 0.08);
}

.topbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold);
}

.brand-copy strong,
.brand-copy small { display: block; }
.brand-copy strong { font-size: 14px; }
.brand-copy small { font-size: 9px; color: #7a8b9b; } 

.mini-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.page-shell { padding: 42px 0 80px; }

.hero-capture {
  padding: 42px 0 0;
  position: relative;
}

.hero-capture:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(213, 168, 74, 0.14), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(16, 54, 83, 0.12), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #8b6c2d;
  font-size: 10.5px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.hero-copy h1 span { color: var(--navy-2); }
.hero-copy p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.benefits {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.benefits li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  color: var(--text);
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.card-form-wrap {
  display: flex;
  justify-content: center;
}

.card-form {
  width: min(100%, 520px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 217, 220, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.card-header {
  margin-bottom: 18px;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  background: #fff7df;
  color: #8f6e2d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 10px;
}

.card-header h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.04em;
}

.field-row { margin-bottom: 18px; }
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #465a6f;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input[type='text'],
input[type='email'],
input[type='tel'],
textarea,
select {
  width: 100%;
  margin-top: 8px;
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(213, 168, 74, 0.5);
  box-shadow: 0 0 0 4px rgba(213, 168, 74, 0.12);
}

textarea { resize: vertical; min-height: 120px; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 18px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: normal;
  text-transform: none;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.primary-btn {
  border: none;
  width: 100%;
  border-radius: 999px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  font-weight: 900;
  font-size: 0.94rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(213, 168, 74, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(213, 168, 74, 0.3);
}

.status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.status.error { color: var(--danger); }
.status.success { color: var(--success); }

/* Entrega do eBook depois do envio bem-sucedido. */
.status-titulo {
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--success);
}

.download-btn {
  display: block;
  text-align: center;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  font-weight: 900;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(213, 168, 74, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(213, 168, 74, 0.3);
}

.status-ajuda {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.honeypot {
  display: none !important;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .card-form {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1180px); }
  .topbar { min-height: 72px; }
  .brand-copy small { display: none; }
  .mini-link { display: none; }
  .page-shell { padding-top: 18px; }
  .two-cols {
    grid-template-columns: 1fr;
  }
  .card-form { padding: 22px 18px; }
  .hero-copy h1 { line-height: 1.05; }
}
.download-btn.secundario{margin-top:10px;background:none;border:1px solid var(--gold);color:var(--gold);box-shadow:none}
