body {
  font-family: Arial, sans-serif;
  background-color: #fff2f2;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ff787e;
  color: white;
  padding: 30px 20px;
}

.linha-topo {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.menu-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.botao {
  background-color: #ffdee0;
  color: #ff787e;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  width: 130px;
  transition: background-color 0.2s;
}

.botao:hover {
  background-color: #ffc5c7;
}

.titulo-area {
  flex-grow: 1;
  text-align: center;
}

.titulo-area h1 {
  font-family: 'Times New Roman', serif;
  font-size: 2.5em;
  margin: 0;
  color: white;
}

.subtitulo {
  margin-top: 10px;
  font-size: 1.1em;
  color: white;
}

/* Conteúdo */
.conteudo {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.conteudo section {
  margin-bottom: 40px;
}

.conteudo h2 {
  color: #ff787e;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.conteudo ul {
  padding-left: 20px;
  list-style-type: disc;
}

.conteudo ul ul {
  list-style-type: circle;
}

.conteudo li {
  margin-bottom: 8px;
  font-size: 1em;
  color: #444;
}

hr {
  border: none;
  border-top: 1px solid #ffabaf;
  margin: 30px 0;
}

footer {
  background-color: #ffc5c7;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
