/*
Theme Name: Desafiando Limites PRO
Version: 11.0
*/

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: #f6f4ef;
  color: #111;
  line-height: 1.9;
}

/* HEADER */

.site-header {
  padding: 50px 80px 30px 80px;
  border-bottom: 1px solid #e5e2db;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
}

/* MENU */

nav ul {
  list-style: none !important;
  display: flex !important;
  gap: 55px !important;
}

nav ul li a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

nav ul li a:hover {
  color: #c2a75e;
}

/* CONTEÚDO */

main {
  max-width: 760px;
  margin: 140px auto;
  padding: 0 20px;
}

h1 {
  font-size: 50px;
  margin-bottom: 50px;
}

h2 {
  font-size: 28px;
  margin-top: 80px;
  margin-bottom: 25px;
}

p {
  margin-bottom: 26px;
  font-size: 19px;
}

ul {
  margin-left: 20px;
  margin-bottom: 40px;
}

/* ASSINATURA */

.assinatura-autora {
  margin-top: 120px;
  padding-top: 40px;
}

.assinatura-autora hr {
  border: none;
  border-top: 1px solid #e5e2db;
  margin-bottom: 30px;
}

.assinatura-autora p {
  font-size: 15px;
  color: #777;
}

/* NEWSLETTER */

.bloco-newsletter {
  margin-top: 40px;
}

.bloco-newsletter p {
  font-size: 16px;
  margin-bottom: 15px;
}

.bloco-newsletter form {
  display: flex;
  gap: 10px;
}

.bloco-newsletter input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
}

.bloco-newsletter button {
  padding: 10px 20px;
  border: none;
  background: #c2a75e;
  color: #111;
  cursor: pointer;
}

/* FOOTER */

footer {
  margin-top: 220px;
  padding: 80px 20px;
  border-top: 1px solid #e5e2db;
  text-align: center;
}