/* GENERAL */
body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  padding: 15px 0;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
}

.nav-link:hover {
  color: #007bff !important;
}

/* LOGO */
.logo-img {
  height: 46px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #0f0f0f, #1f1f1f);
  color: white;
  padding: 80px 0;
}

.hero-card {
  border-radius: 12px;
}

/* BUTTONS */
.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0064d6;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background-color: #25d366;
  color: white;
  font-size: 26px;
  padding: 14px 18px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  z-index: 9999;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

/* CARDS DE PROPIEDADES */
.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.property-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* FOOTER */
footer {
  background: white;
  color: #777;
  padding: 20px 0;
  margin-top: 40px;
}
