* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:#f8fafc;
  color:#0f172a;
}
header {
  background:#0a58ca;
  color:#fff;
  padding:14px 20px;
  position:sticky;
  top:0;
  z-index:10;
}
nav {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.logo h1 {
  font-size:12px;ize:18px;
  font-weight:900;
}
.tagline {
  font-size:12px;ize:12px;
  opacity:.9;
}
.nav-menu {
  list-style:none;
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}
.nav-menu a {
  color:#fff;
  text-decoration:none;
  font-size:12px;ize:13px;
  font-weight:600;
}
.btn-whatsapp {
  background:#25d366;
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
}
.hero {
  background:#eef2ff;
  padding:40px 20px;
  text-align:center;
}
.hero h1 {
  font-size:12px;ize:28px;
  font-weight:900;
  margin-bottom:8px;
}
.subtitle {
  color:#475569;
  margin-bottom:16px;
}
.search-bar {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:12px;
}
.search-bar input {
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  min-width:220px;
}
.search-bar button {
  background:#0a58ca;
  color:#fff;
  border:none;
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
}
.search-bar select {
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #e5e7eb;
}
.imoveis-section, .sobre-section, .contato-section, .servicos-section, .cta-section {
  max-width:1200px;
  margin:0 auto;
  padding:30px 20px;
}
.imoveis-section h2, .servicos-section h2, .cta-section h2 {
  text-align:center;
  margin-bottom:18px;
}
.imoveis-grid, .servicos-grid, .stats {
  display:grid;
  gap:16px;
}
.imoveis-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.property-card {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow:hidden;
}
.property-media img {
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}
.property-info {
  padding:12px;
}
.property-title {
  font-weight:800;
  margin-bottom:6px;
}
.property-meta {
  color:#475569;
  font-size:12px;ize:13px;
}
.property-price {
  font-weight:900;
  color:#0a58ca;
  margin:6px 0;
  font-size:12px;ize:18px;
}
.property-card .btn-whatsapp {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  background:#25d366;
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  min-height:44px;
}
.cta-section {
  text-align:center;
}
.servicos-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.servico-card {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.servico-card h3 {
  font-size:16px;
  margin-bottom:0;
  color:#0a58ca;
}
.servico-card .price {
  font-weight:900;
  color:#0a58ca;
  margin:0;
  font-size:18px;
}
.servico-card .meta {
  color:#475569;
  margin:0;
  font-size:13px;
}
.servico-card ul {
  margin:0;
  padding-left:18px;
}
.servico-card li + li {
  margin-top:4px;
}
.servico-card .actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:auto;
  padding-top:10px;
}
.servico-card .btn-whatsapp,
.servico-card .btn-secondary {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  padding:10px 14px;
}
.servico-card .btn-whatsapp {
  background:#25d366;
  color:#fff;
}
.servico-card .btn-secondary {
  background:#0b1220;
  color:#fff;
}
.contact-form {
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:640px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #e5e7eb;
}
.contact-form button {
  background:#0a58ca;
  color:#fff;
  border:none;
  padding:12px 14px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
}
.stats {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top:12px;
}
.stat {
  background:#fff;
  border:1px solid #e5e7eb;
  padding:16px;
  border-radius:16px;
  text-align:center;
}
.stat h3 {
  font-size:24px;
  color:#0a58ca;
}
footer {
  text-align:center;
  padding:18px;
  font-size:12px;
}

.whatsapp-fab {
  position:fixed;
  right:16px;
  bottom:18px;
  width:52px;
  height:52px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  z-index:50;
  font-size:20px;
}

@media (max-width: 720px) {
  nav {
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .nav-menu {
    flex-wrap:wrap;
  }
}
