@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;900&family=Inter:wght@400;700&display=swap');

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #f4f4f4;
  color: #1a1a1a;
}

a { color: #c1121f; text-decoration-color: rgba(193,18,31,.35); }
a:hover { color: #0a0a0a; }

/* ===== Cabeçalho da marca (lockup) — injetado via custom.js sobre este .header ===== */
.header {
  margin: -40px -40px 30px -40px !important;
  padding: 0 !important;
  border-bottom: none !important;
}
.rp-header__main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: #c1121f;
}
.rp-header__seal {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  line-height: 0;
}
.rp-header__seal svg { width: 100%; height: auto; display: block; }
.rp-header__wordmark {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  /* 40px, não os 48px da especificação (calibrada p/ cabeçalho de 600px) --
     o card do Listmonk tem só 550px; medido com a fonte real (Archivo Black)
     que "PROGRESSISTA" em 48px (425px) estoura os ~378px disponíveis; 40px
     (355px) cabe com folga. */
  font-size: 40px;
  line-height: 1.09;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}
.rp-header__wordmark span { display: block; }
.rp-header__tagline {
  margin: 0;
  padding: 13px 32px;
  background: #0a0a0a;
  border-top: 3px solid #ffffff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 480px) {
  .rp-header__main { gap: 16px; padding: 20px 20px; }
  .rp-header__seal { width: 56px; height: 56px; }
  .rp-header__wordmark { font-size: 26px; } /* medido: 32px estoura em viewports <~420px */
  .rp-header__tagline { font-size: 12px; padding: 10px 20px; border-top-width: 2px; }
}

/* ===== Título de seção ("Inscrever-se" etc.) ===== */
h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 24px;
}
h2::after {
  content: '';
  display: block;
  width: 180px;
  height: 2px;
  background: #c1121f;
  margin-top: 8px;
}

input:focus { border-color: #c1121f !important; }

.button {
  background: #c1121f;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 2px;
}
.button:hover { background: #0a0a0a; color: #fff; }
.button.button-outline {
  border-color: #c1121f;
  color: #c1121f;
}
.button.button-outline:hover {
  border-color: #0a0a0a;
  background: #0a0a0a;
}

ul.lists li {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid #e4e4e7;
  border-radius: 4px;
}
ul.lists .description { color: #666; }

footer.container {
  color: #999;
  font-size: .8em;
}
footer.container a { color: #999; }
