/* ====== Ajustes Gerais ====== */
body {
  background: #f5f7fa;
  margin: 0;
  padding: 0 !important;
  font-family: 'Inter', sans-serif;
  color: #333;
  border: none !important;
  box-shadow: none !important;
}

main.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== Remove recuo global aplicado pelo stylus.css ====== */
body,
.container,
main.container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ====== HERO COMPACTO ====== */
.hero-propriedades {
  position: relative;
  background: linear-gradient(120deg, #096aca 0%, #004b9b 100%);
  color: #fff;
  text-align: center;
  padding: 35px 20px 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.hero-propriedades-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-propriedades-icon {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-propriedades h1 {
  font-size: 1.8em;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero-propriedades p {
  font-size: 1.1em;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-divider {
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ====== CONTEÚDO PRINCIPAL ====== */
.caixa-conteudo {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 35px 40px;
  margin: 20px auto 20px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  max-width: 1000px;
}

.caixa-conteudo:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.caixa-conteudo h2 {
  font-size: 1.3em;
  font-weight: 600;
  color: #096aca;
  border-left: 4px solid #096aca;
  padding-left: 10px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.caixa-conteudo ul {
  padding-left: 25px;
  margin: 0;
}

.caixa-conteudo li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.info-final {
  text-align: center;
  margin-top: 35px;
  font-size: 0.95em;
  color: #444;
}

.info-final a {
  color: #096aca;
  font-weight: 600;
  text-decoration: none;
}

.info-final a:hover {
  text-decoration: underline;
}

/* ====== Responsividade ====== */
@media (max-width: 768px) {
  .hero-propriedades {
    padding: 30px 15px 20px;
  }

  .hero-propriedades-icon {
    width: 50px;
    height: 50px;
  }

  .hero-propriedades h1 {
    font-size: 1.5em;
  }

  .caixa-conteudo {
    padding: 25px 20px;
  }

  .caixa-conteudo h2 {
    font-size: 1.15em;
  }
}
