:root {
  --bg: #f4e9e6;
  --soft: #ffcccc;
  --accent: #791815;
  --ink: #3a3838;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

/* header */
.header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px;
}

.header img {
  height: 28px;
}

/* layout base */
main {
  padding: 0 24px;
}

/* hero */
.hero {
  margin-bottom: 48px;
}

.hero img {
  border-radius: 4px;
}

/* manifesto */
.manifesto h1 {
  font-family: "novantique-serif", serif;
  color: var(--accent);
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 64px;
}

/* serviços */
.servicos {
  margin-bottom: 64px;
}

.servicos h2 {
  font-family: "novantique-serif", serif;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 24px;
}

.servicos ul {
  list-style: none;
}

.servicos li {
  background: var(--soft);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

/* cta */
.cta {
  background: var(--soft);
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 64px;
}

.cta p {
  margin-bottom: 16px;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 14px;
}

/* footer */
.footer {
  text-align: center;
  padding: 24px;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}
