@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700&display=swap");

/* Cards dinâmicos do catálogo público. */
.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 {
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.home-property-image .tarja-status.pronto {
  background: #0275d8;
}

.home-property-image .tarja-status.disponivel {
  background: #5cb85c;
}

.home-property-image .tarja-status.vendido {
  background: #d9534f;
}

.home-property-image .tarja-status.em-obra {
  background: #f0ad4e;
}

.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: 40px;
  }

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

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

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

.catalog-properties-section {
  background: #f8f8f8;
  padding: 95px 0 110px;
}

.catalog-properties-heading {
  margin: 0 auto 55px;
  max-width: 720px;
}

.catalog-properties-heading > span {
  color: #c07e42;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.catalog-properties-heading h2 {
  color: #111111;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.catalog-properties-heading p,
.catalog-message p {
  color: #666666;
  font-size: 17px;
}

.catalog-properties-grid {
  row-gap: 24px;
}

.catalog-message {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  padding: 45px 20px;
}

@media screen and (max-width: 767px) {
  .catalog-properties-section {
    padding: 70px 0 80px;
  }

  .catalog-properties-heading {
    margin-bottom: 38px;
  }

  .catalog-properties-heading h2 {
    font-size: 32px;
  }
}
