/* Cards dinâmicos de imóveis da página inicial. */
.home-properties-section .archs-section-title p {
  max-width: 650px;
}

.home-properties-grid {
  margin: 0;
  padding-top: 55px;
}

.home-properties-grid .row {
  margin-left: -12px;
  margin-right: -12px;
  row-gap: 24px;
}

.home-properties-grid .home-property-column {
  display: flex;
  padding-left: 12px;
  padding-right: 12px;
}

.home-property-card {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
  width: 100%;
}

.home-property-card:hover {
  box-shadow: 0 14px 34px rgba(20, 20, 20, .12);
  transform: translateY(-4px);
}

.home-property-image {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  position: relative;
}

.home-property-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.home-property-card:hover .home-property-image img {
  transform: scale(1.035);
}

.home-property-image .tarja-status {
  left: 14px;
  top: 14px;
}

.home-property-image .tarja-status.reservado {
  background: #6c757d;
}

.home-property-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.home-property-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px;
  min-height: 54px;
}

.home-property-content h3 a {
  color: #111111;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-property-content h3 a:hover {
  color: #c07e42;
}

.home-property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-bottom: 22px;
}

.home-property-features span {
  color: #555555;
  font-size: 14px;
  white-space: nowrap;
}

.home-property-features i {
  color: #c07e42;
  margin-right: 5px;
}

.home-property-footer {
  align-items: center;
  border-top: 1px solid #eeeeee;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
}

.home-property-price {
  color: #c07e42;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.home-property-button {
  background: #c07e42;
  color: #ffffff !important;
  flex: 0 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 14px;
}

.home-property-button:hover {
  background: #a9682f;
}

.home-property-button i {
  font-size: 11px;
  margin-left: 4px;
}

@media screen and (max-width: 1199px) {
  .home-property-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .home-property-button {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .home-properties-grid {
    padding-top: 28px;
  }

  .home-property-content h3 {
    min-height: 0;
  }

  .home-property-footer {
    align-items: center;
    flex-direction: row;
  }

  .home-properties-all {
    margin-top: 26px;
  }
}

@media screen and (max-width: 420px) {
  .home-property-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

.home-properties-all {
  margin-top: 38px;
}

.home-properties-all-button {
  background: #c07e42;
  color: #ffffff !important;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
}

.home-properties-all-button:hover {
  background: #a9682f;
}

.home-properties-all-button i {
  font-size: 11px;
  margin-left: 5px;
}
