.property-card-clean {
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid rgba(0, 0, 0, 0.05);
   height: 100%;
}

.property-card-clean:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.property-image-container {
   position: relative;
   height: 200px;
   overflow: hidden;
}

.property-image-container::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 60%;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
   pointer-events: none;
}

.property-image-container img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
}

.property-card-clean:hover .property-image-container img {
   transform: scale(1.05);
}

.property-price-badge {
   position: absolute;
   bottom: 12px;
   left: 12px;
   color: rgb(234, 234, 234);
   padding: 8px 14px;
   border-radius: 8px;
   font-weight: 600;
   font-size: 18px;
   z-index: 3;
}

.property-info-clean {
   padding: 20px;
}

.property-type-label {
   color: #94a3b8;
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   font-weight: 500;
   margin-bottom: 6px;
   display: block;
}

.property-title-clean {
   color: #2e2e2e;
   font-weight: 700;
   font-size: 17px;
   line-height: 1.3;
   margin-bottom: 14px;
   display: block;
   text-decoration: none;
}

.property-specs-clean {
   display: flex;
   gap: 16px;
   color: #64748b;
   font-size: 13px;
   font-weight: 500;
}

.property-specs-clean span {
   position: relative;
   padding-right: 16px;
}

.property-specs-clean span:not(:last-child)::after {
   content: '';
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 1px;
   height: 12px;
   background-color: #e2e8f0;
}

.section-header-clean {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 35px;
}

.section-title-clean {
   font-size: 2rem;
   font-weight: 400;
   color: #1e293b;
   margin: 0;
}

.section-title-clean strong {
   font-weight: 700;
}

.btn-ver-mais-clean {
   padding: 10px 22px;
   border: 1.5px solid #e2e8f0;
   color: #475569;
   text-decoration: none;
   border-radius: 25px;
   font-weight: 500;
   font-size: 14px;
   transition: all 0.3s ease;
   background: white;
}

.btn-ver-mais-clean:hover {
   border-color: #94a3b8;
   color: #334155;
   text-decoration: none;
   background: #f8fafc;
}

/* Estilos para o card de imóvel */

.property-card-link {
   display: block;
   text-decoration: none;
   color: inherit;
   height: 100%;
}

.property-card-link:hover {
   text-decoration: none;
   color: inherit;
}

.property-card {
   position: relative;
   border-radius: 12px;
   overflow: hidden;
   background-color: #fff;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   height: 100%;
   display: flex;
   flex-direction: column;
}

.property-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Imagem do imóvel */
.property-image {
   position: relative;
   width: 100%;
   height: 300px;
   overflow: hidden;
}

.property-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
   transform: scale(1.05);
}

/* Tipo do imóvel */
.property-type {
   position: absolute;
   top: 15px;
   left: 15px;
   background: #2c2c2cb4;
   color: #fff;
   padding: 6px 12px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 600;
   text-transform: uppercase;
   z-index: 2;
}

/* Preço do imóvel */
.property-price {
   position: absolute;
   bottom: 15px;
   right: 15px;
   background: transparent;
   color: #fff;
   padding: 4px 11px;
   border-radius: 10px;
   font-size: 19px;
   font-weight: 600;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
   z-index: 2;
   font-family: 'Quicksand';
}

/* Código do imóvel */
.property-code {
   position: absolute;
   top: 15px;
   right: 15px;
   background: rgba(255, 255, 255, 0.9);
   color: #333;
   padding: 4px 10px;
   border-radius: 4px;
   font-size: 12px;
   font-weight: 500;
   z-index: 2;
}

/* Conteúdo do card */
.property-content {
   padding: 20px 20px 5px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
}

/* Título do imóvel */
.property-title {
   margin: 0 0 10px;
   font-size: 18px;
   font-weight: 700;
   color: #3b3b3b;
   line-height: 1.3;
}

/* Endereço do imóvel */
.property-address {
   display: flex;
   align-items: center;
   margin: 0 0 20px;
   font-size: 14px;
   color: #666;
}

.property-address i {
   margin-right: 5px;
   color: #3a3a3a;
}

/* Especificações do imóvel */
.property-specs {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 15px;
   margin-bottom: 15px;
   padding-bottom: 15px;
   border-bottom: 1px solid #eee;
}

.spec-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   flex: 1;
   min-width: 60px;
}

.spec-item i {
   color: #494949;
   font-size: 18px;
   margin-bottom: 5px;
}

.spec-value {
   font-weight: 700;
   font-size: 16px;
   color: #333;
}

.spec-label {
   font-size: 12px;
   color: #777;
}

/* Área do imóvel - Centralizada */
.property-area {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   margin-bottom: 15px;
   text-align: center;
}

.area-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 5px;
}

.area-item i {
   color: #494949;
   font-size: 18px;
}

.area-value {
   font-weight: 600;
   color: #333;
}

.area-label {
   font-size: 13px;
   color: #777;
}

/* Responsividade */
@media (max-width: 768px) {
   .property-specs {
      justify-content: center;
   }

   .spec-item {
      min-width: 80px;
   }
}


/* Regiões */

/* --------------------------------------------------------- */
/* -- ESTILOS PARA SEÇÃO DE REGIÕES
/* --------------------------------------------------------- */
.region-card {
   transition: all 0.3s ease;
   overflow: hidden;
   border-radius: 1rem;
}

.region-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.region-image {
   position: relative;
   height: 250px;
   overflow: hidden;
   border-radius: 1rem;
}

.region-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.region-card:hover .region-image img {
   transform: scale(1.05);
}

.region-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
   padding: 40px 20px 20px;
   border-radius: 0 0 1rem 1rem;
}

.region-title {
   color: white;
   font-weight: 700;
   font-size: 1.5rem;
   margin: 0;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
   font-family: 'Inter', sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
   .region-image {
      height: 200px;
   }

   .region-title {
      font-size: 1.3rem;
   }
}

.accordion-button strong {
   margin: 0 3px;
}

.text-dark {
    color: #313131 !important;
}

/* Desktop - fundo branco */
#divPesquisar.bg-glass {
   background: #ffffff !important;
   backdrop-filter: none !important;
   border: none !important;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Fix para sobreposição do ícone de busca com placeholder */
input#campo_pesquisa.form-control {
   padding-left: 3.5rem !important;
}

/* Ajuste para o ícone ficar mais visível e separado do texto */
.position-relative .fa-search {
   left: 1.2rem !important;
}

/* Desktop - Botão cinza como no mobile */
@media (min-width: 768px) {
   #btnBuscar {
      background: linear-gradient(135deg, #b8b8b8 0%, #8a8a8a 100%) !important;
      color: #ffffff !important;
      border-radius: 50px !important;
   }

   #btnBuscar:hover {
      background: linear-gradient(135deg, #a8a8a8 0%, #7a7a7a 100%) !important;
      color: #ffffff !important;
   }

   #btnBuscar span {
      color: #ffffff !important;
   }

   #btnBuscar .fa-search {
      color: rgba(255, 255, 255, 0.9) !important;
   }
}

/* Estilos responsivos para mobile - barra de pesquisa */
@media (max-width: 767px) {
   /* Container da busca */
   #divPesquisar {
      background: transparent !important;
      padding: 0 !important;
      gap: 1rem !important;
   }

   /* Todos os campos - estilo clean e arredondado */
   #divPesquisar .dropdown-selector,
   #divPesquisar .form-control {
      background: white !important;
      border: none !important;
      border-radius: 50px !important;
      height: 60px !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
      font-size: 16px !important;
      color: #64748b !important;
      padding-left: 1.5rem !important;
      padding-right: 1.5rem !important;
   }

   /* Campo de pesquisa com ícone */
   #campo_pesquisa {
      padding-left: 3rem !important;
   }

   /* Ícone de busca no input */
   .position-relative .fa-search {
      left: 1.2rem !important;
      color: #94a3b8 !important;
   }

   /* Texto dos dropdowns */
   #divPesquisar .dropdown-selector span {
      color: #64748b !important;
   }

   /* Ícones dentro dos dropdowns */
   #divPesquisar .fa-home,
   #divPesquisar .fa-bed,
   #divPesquisar .fa-chevron-down {
      color: #94a3b8 !important;
   }

   /* Botão de pesquisa - estilo cinza arredondado */
   #btnBuscar {
      background: linear-gradient(21deg, #dadadad7, #3b3b3bde) !important;
      border-radius: 50px !important;
      height: 60px !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      letter-spacing: 1px !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
      border: none !important;
   }

   #btnBuscar span {
      color: white !important;
   }

   #btnBuscar .fa-search {
      color: rgba(255, 255, 255, 0.7) !important;
   }

   /* Placeholder do campo de busca */
   #campo_pesquisa::placeholder {
      color: #94a3b8 !important;
      font-size: 14px !important;
   }
}