/* =========================
   PROPIEDADES (solo esta página)
   ========================= */

.props-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #111, #2a2a2a);
  color: #fff;
}

.props-hero-content {
  text-align: center;
  max-width: 980px;
}

.props-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.props-hero p {
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  margin: 0 auto 18px;
}

.props-cta { margin-top: 10px; }

.list-head h2 { margin-bottom: 6px; }
.list-head p { color: #555; margin-bottom: 14px; }

/* Grid */
.props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Card */
.prop-card {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.prop-media {
  display: block;
  position: relative;
}

.prop-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.prop-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.70);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
}

.prop-body {
  padding: 18px;
}

.prop-body h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.prop-body h3 a {
  color: #1f1f1f;
  text-decoration: none;
}

.prop-location {
  color: #444;
  margin-bottom: 12px;
}

.prop-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: #222;
}

.prop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prop-note {
  margin-top: 12px;
  color: #666;
  font-size: 0.92rem;
}

/* Final */
.props-final {
  background: #f6f6f6;
}

/* =========================
   MENÚ RESPONSIVE (solo si no existe en styles.css)
   ========================= */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #1f1f1f;
  border-radius: 3px;
  display: block;
}

@media (max-width: 900px) {
  .nav-inner { position: relative; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 100;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links.active { display: flex; }

  .prop-media img { height: 240px; }
  .props-hero h1 { font-size: 1.9rem; }
}
