/* === GERAL === */
body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #222222;
  margin: 0;
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}

/* === TÍTULOS === */
h1, h2, h3 {
  color: #e82110;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.3rem;
}

/* === FORMULÁRIO === */
form {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
  color: #444;
}

input[type="text"],
input[type="date"],
input[type="file"],
textarea {
  padding: 0.7rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* === BOTÃO === */
button {
  background-color: #e82110;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #c71b0c;
}

/* === POST === */
img {
  max-width: 100%;
  border-radius: 6px;
  margin: 1rem 0;
}

em {
  color: #888;
  font-size: 0.95rem;
}

div {
  font-size: 1.05rem;
  color: #333;
}

a {
  color: #e82110;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
