body {
  font-family: 'Manrope', sans-serif;
  background: #F5F7FA;
  color: #333;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1E4D8F;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo span {
  color: #FF7A00;
}

/* header */
.small-nav {
  background: rgba(232, 235, 240, 0.5);
}

.small-nav-link {
  font-size: 12px;
  font-weight: 500;
  color: #737373;
}

.small-nav-link:hover {
  color: #1E4D8F;
}

.search-bar-wrap {
  max-width: 700px;
}

.search-bar {
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #F5F7FA;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.search-bar .form-control,
.search-bar .form-select {
  font-size: 14px;
  min-height: 44px;
}

.city-select .form-select {
  padding-right: 2rem;
}

.btn-search-custom {
  background: #1E4D8F;
  border-color: #1E4D8F;
}

.btn-search-custom:hover,
.btn-search-custom:focus {
  background: #163b6e;
  border-color: #163b6e;
}

.btn-announce {
  background: #FF7A00;
  border-color: #FF7A00;
  color: #fff;
}

.btn-announce:hover,
.btn-announce:focus {
  background: #e56e00;
  border-color: #e56e00;
  color: #fff;
}

.btn-login-link:hover {
  color: #1E4D8F !important;
}

.mobile-menu-link {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.mobile-menu-link:hover {
  color: #1E4D8F;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

/* títulos utilitários */
.section-title {
  font-size: 18px;
  font-weight: 700;
}

.section-title-sm {
  font-size: 16px;
  font-weight: 700;
}

.section-link {
  font-size: 12px;
  font-weight: 600;
  color: #1E4D8F;
}

.section-link:hover {
  text-decoration: underline !important;
}

/* cards compartilhados */
.listing-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30, 50, 80, .06);
  transition: all .3s;
  cursor: pointer;
}

.listing-card:hover {
  box-shadow: 0 8px 24px rgba(30, 50, 80, .12);
  transform: translateY(-2px);
}

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.listing-card:hover .card-img img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
}

.card-badge.featured {
  background: #FF7A00;
  color: #fff;
}

.card-badge.new {
  background: #2E8B57;
  color: #fff;
}

.card-info {
  padding: 10px;
}

.card-price {
  font-size: 15px;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
}

.card-title {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  font-size: 11px;
  color: #999;
}

/* footer */
.site-footer {
  background: #1E4D8F;
  color: #fff;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer-logo span {
  color: #FF7A00;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .72);
  max-width: 280px;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .70);
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
}