/* Fundo geral */
body {
  margin: 0;
  padding: 0;
  background-color: #257D38;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Container ocupa toda a primeira dobra, mas com altura interna menor */
.container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  padding: 40px;
  max-width: 800px;
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}



/* Texto principal */
.message {
  font-size: 2em;
  color: #003366;
  margin-bottom: 10px;
}

.subtext {
  font-size: 1.3em;
  color: #555;
  margin-bottom: 20px;
}

.contact p {
  margin: 5px 0;
  font-size: 1em;
}

.contact a {
  color: #0055aa;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Blog widget */
#sieca-blog {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  padding: 40px;
  max-width: 800px;
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 160px;
}

.blog-widget {
  font-family: Arial, sans-serif;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.blog-widget .post {
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  text-align: left;
}

.blog-widget h3 {
  color: #0055aa;
  margin-bottom: 10px;
}

.blog-widget img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 8px;
}

.blog-widget .date {
  font-size: 0.9em;
  color: #777;
}

/* Responsivo */
@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }
  .logo {
    max-width: 180px;
  }
  .message {
    font-size: 1.6em;
  }
  .subtext {
    font-size: 1.1em;
  }
  .blog-widget {
    padding: 20px;
  }
}
