:root {
  --primary-font: "Montserrat", sans-serif;
}

body {
  font-family: var(--primary-font);
  color: #333;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.propiedad-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.propiedad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.transition-hover:hover {
  background-color: rgba(13, 110, 253, 0.05);
  cursor: default;
}

.propiedad-card img {
  transition: transform 0.3s ease;
}

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

.price-tag {
  font-size: 1.4rem;
  color: #0d6efd;
  font-weight: 800;
}

.card-body i {
  color: #6c757d;
  width: 20px;
}

.card-text {
  font-weight: 400;
  line-height: 1.6;
}

.hero-section h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
