
/* Estrutura geral */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f7f9;
  color: #222;
  margin: 0;
  padding: 0;
}

header {
  background: linear-gradient(to right, #004aad, #00a650);
  padding: 15px 10px;
  color: white;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

.header-container h1 {
  margin: 0;
  font-size: 24px;
}

.header-container a.voltar-site {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Post card */
.post-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-left: 5px solid #00a650;
}

.post-card img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Conteúdo e sidebar */
main {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
  gap: 30px;
}

.post-content {
  flex: 1 1 68%;
}

.post-content h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

.post-imagem {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

.post-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar {
  flex: 1 1 28%;
  background: #f9f9f9;
  padding: 20px;
  border-left: 2px solid #00a650;
}

.sidebar h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.sidebar a {
  display: block;
  margin-bottom: 10px;
  color: #004aad;
  text-decoration: none;
}

/* Botões e links */
a.ver-mais, .ver-mais {
  display: inline-block;
  padding: 10px 16px;
  background: #00a650;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 10px;
}

a.ver-mais:hover, .ver-mais:hover {
  background: #008f4a;
}

/* Espaço para anúncios */
.ads-container {
  margin-top: 50px;
  text-align: center;
}
