/* css/casa-do-povoador.css */

/* Fonte padrão */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0; padding: 0;
  color: #333; background: #f9f9f9;
}

/* Hero */
.hero-casa {
  background: url('../images/casa-povoador.png') center/cover no-repeat;
  height: 60vh; display: flex;
  align-items: center; justify-content: center;
  position: relative;
}
.hero-casa::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative; color: #fff;
  text-align: center; padding: 0 1rem;
}
.hero-content h1 { font-size: 3rem; color: #1E6C93; }
.hero-content p  { font-size: 1.25rem; }

/* Container */
.container {
  max-width: 1200px; margin: 0 auto;
  padding: 2rem 1rem;
}
section { margin-bottom: 2rem; }

/* Overview */
.overview p { line-height: 1.6; }

/* History List */
.history ul {
  list-style: disc inside;
  padding: 0; margin: 1rem 0;
}
.history li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* Títulos */
.title-blue   { color: #1E6C93; margin-bottom: 0.5rem; }
.title-orange { color: #F26800; margin-bottom: 0.5rem; }

/* Footer */
.footer-casa {
  background: #fff; text-align: center;
  padding: 2rem 1rem; border-top: 1px solid #e0e0e0;
}
.footer-casa a.btn-secondary {
  background: #1E6C93; color: #fff;
  padding: 0.75rem 1.5rem; border-radius: 4px;
  text-decoration: none;
  border-color: transparent;
}
.footer-casa p { margin-top: 1rem; color: #666; }

/* Responsivo */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.25rem; }
  .hero-content p  { font-size: 1rem; }
}