
  .imovel-card {
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,204,103,0.07);
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .imovel-card:hover {
    box-shadow: 0 4px 24px rgba(0,204,103,0.13);
  }
  .imovel-card-img {
    height: 170px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .imovel-card-fav {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #eee;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DAA520;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s, background 0.2s;
  }
  .imovel-card-fav.active, .imovel-card-fav:hover {
    color: #fff;
    background: #DAA520;
    border-color: #DAA520;
  }
  .imovel-card-title {
    font-size: 1.08rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
    color: #222;
  }
  .imovel-card-address {
    font-size: 0.97rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .imovel-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
  }
  .imovel-card-features i {
    color: #DAA520;
    margin-right: 0.18rem;
    font-size: 1.05em;
    vertical-align: -2px;
  }
  .imovel-card-features span {
    font-size: 0.97rem;
    color: #444;
    display: flex;
    align-items: center;
  }
  .imovel-card-price {
    color: #DAA520;
    font-size: 1.22rem;
    font-weight: 700;
    margin-right: 0.7rem;
    white-space: nowrap;
  }
  .imovel-card-btn {
    background: #DAA520;
    color: #fff;
    border-radius: 2rem;
    border: none;
    padding: 0.38rem 1.05rem;
    font-size: 0.97rem;
    margin-right: 0.4rem;
    transition: background 0.2s;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,204,103,0.07);
  }
  .imovel-card-btn:last-child {
    margin-right: 0;
  }
  .imovel-card-btn:hover {
    background: #08060083;
    color: #fff;
  }
  .imovel-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 1.1rem 1rem;
    height: 100%;
  }
  /* Carousel navigation */
  .imoveis-carousel .carousel-control-prev,
  .imoveis-carousel .carousel-control-next {
    width: 3rem;
    color: #DAA520;
    opacity: 1;
  }
  .imoveis-carousel .carousel-control-prev-icon,
  .imoveis-carousel .carousel-control-next-icon {
    background-color: #fff;
    border-radius: 50%;
    
    border: 1px solid #DAA520;
    box-shadow: 0 2px 8px rgba(0,204,103,0.08);
  }
  @media (max-width: 991.98px) {
    .imovel-card-img {
      height: 150px;
    }
  }
  @media (max-width: 575.98px) {
    .imovel-card-img {
      height: 120px;
    }
    .imovel-card .card-body {
      padding: 0.8rem 0.7rem 1rem 0.7rem;
    }
  }

  .imovel-card-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.whatsapp-float {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 18px;
  right: 60px; /* Ajuste para não sobrepor o back-to-top */
  background-color: #25d366;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.whatsapp-float:hover {
  background: #20ba5a;
}
.whatsapp-float img {
  width: 22px;
  height: 22px;
  display: block;
}


@media (max-width: 600px) {
  .navbar-brand img {
    width: 200px !important; /* ajuste o valor conforme desejar */
    height: auto !important;
    margin-top: 4px !important; /* ajuste o valor conforme desejar */
    margin-bottom: 4px !important; /* ajuste o valor conforme desejar */  
  }
}
