    :root {
      --imobihub-primary: #0056B3;
      --imobihub-hero-bg: #002b5c; 
      --imobihub-hero-pattern: #273C65;
      --imobihub-secondary-bar: #1a416d;
      --imobihub-dark: #102241;
      --imobihub-text: #0f172a;
      --imobihub-muted: #64748b;
    }
    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--imobihub-text);
      background-color: #f8fafc;
      padding-top: 56px;
    }
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      padding: 0;
      display: flex;
      align-items: center;
    }
    .navbar-brand .logo-icon {
      height: 32px;
      width: 32px;
      flex-shrink: 0;
      color: var(--imobihub-primary);
    }
    .navbar-brand .logo-text {
      margin-left: 0.5rem;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--imobihub-primary);
    }
    .navbar-light .navbar-nav .nav-link {
      color: var(--imobihub-muted);
      font-weight: 500;
    }
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:focus {
      color: var(--imobihub-primary);
    }
    .navbar-light .navbar-brand {
      color: var(--imobihub-primary);
    }
    .hero {
      background-color: var(--imobihub-hero-bg);
      background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 6v12M6 12h12' stroke='%23273C65' stroke-width='0.6' fill='none'/%3E%3C/svg%3E");
      color: #fff;
      padding: 3.5rem 0 4rem;
      border-radius: 0 0 1rem 1rem;
    }
    .hero .lead { font-weight: 600; margin-bottom: 1.75rem !important; }
    .hero-search-bar {
      display: flex;
      max-width: 640px;
      	 margin: 1.25rem auto 0;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,.15);
      overflow: hidden;
    }
    .hero-search-bar .search-input-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 0 1rem;
      gap: 0.5rem;
    }
    .hero-search-bar .search-input-wrap i { color: #94a3b8; font-size: 1.1rem; }
    .hero-search-bar input {
      border: none;
      padding: 0.9rem 0;
      font-size: 1rem;
    }
    .hero-search-bar input::placeholder { color: #94a3b8; }
    .hero-search-bar input:focus { outline: none; box-shadow: none; }
    .hero-search-bar .btn-buscar {
      background: var(--imobihub-primary);
      color: #fff;
      border: none;
      padding: 0.9rem 1.5rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 0 10px 10px 0;
    }
    .hero-search-bar .btn-buscar:hover { background: #0a5fc4; color: #fff; }
	  
	  .hero-secondary-bar {
  max-width: 640px;
  margin: 0.5rem auto 0; /* Pequena margem superior para separar da barra branca */
  background: var(--imobihub-secondary-bar);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container dos campos */
.hero-secondary-bar .raio-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end; /* Alinha os selects e o botão pela base */
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

/* Novo: Agrupamento vertical de Label + Select */
.hero-secondary-bar .field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Estilo do Label superior */
.hero-secondary-bar .field-group label {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Ajustes no Select para suportar o novo layout */
.hero-secondary-bar select.raio-select {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 0.4rem 1.75rem 0.4rem 0.75rem;
  font-size: 0.9rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 12px;
  cursor: pointer;
}

.hero-secondary-bar select.raio-select option { 
  color: #0f172a; 
  background: #fff; 
}

/* Estilo do botão (lupa) */
.hero-secondary-bar .opt { 
  color: #fff; 
  text-decoration: none; 
  font-size: 0.9rem; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  background-color: #3c5d82; 
  height: 34px; /* Altura aproximada do select para alinhar */
  padding: 0 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  transition: background 0.2s;
}

.hero-secondary-bar .opt:hover { 
  background-color: #4a6e99;
  color: #e2e8f0; 
}
	  
	  /*
    .hero-secondary-bar {
      max-width: 640px;
     
		margin: 0 auto;
      background: var(--imobihub-secondary-bar);
      border-radius: 10px;
      padding: 0.85rem 1.25rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .hero-secondary-bar .opt { 
		color: #fff; 
		text-decoration: none; 
		font-size: 0.9rem; 
		display: inline-flex; 
		align-items: center; 
		gap: 0.5rem; 
		background-color: #3c5d82; 
		padding: 0.3rem 0.6rem;
		border-radius: 10px;
        border: 1px solid rgba(255,255,255,.2);
	  }
    .hero-secondary-bar .opt:hover { color: #e2e8f0; }
    .hero-secondary-bar .raio-wrap { display: inline-flex; align-items: center; gap: 0.5rem; }
    .hero-secondary-bar .raio-wrap label { color: #fff; font-size: 0.85rem; font-weight: 600; margin: 0; letter-spacing: 0.02em; }
    .hero-secondary-bar select.raio-select {
      background: rgba(255,255,255,.12);
      color: #fff;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
      padding: 0.2rem 1.75rem 0.2rem 0.75rem;
      font-size: 0.9rem;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.5rem center;
      background-size: 12px;
    }
    .hero-secondary-bar select.raio-select option { color: #0f172a; background: #fff; }
	  
	  */
	  
    .btn-primary {
      background-color: var(--imobihub-primary);
      border-color: var(--imobihub-primary);
    }
    .btn-outline-primary {
      color: var(--imobihub-primary);
      border-color: var(--imobihub-primary);
	  font-size: 0.7rem;
    }
    .btn-outline-primary:hover {
      background-color: var(--imobihub-primary);
      color: #fff;
    }
	  
	  
	  
	  	
    /* Cards de imóveis - estilo similar ao modelo */
    .property-card {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
      transition: transform .18s ease, box-shadow .18s ease;
      background: #fff;
    }
    .property-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    }
    .property-image-wrapper {
      position: relative;
      height: 180px;
      overflow: hidden;
    }
    .property-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .property-badges {
      position: absolute;
      top: 12px;
      left: 12px;
      display: flex;
      gap: 0.35rem;
      flex-wrap: wrap;
    }
	  
	.property-badge-id {
      position: absolute;
      bottom: 5px;
      right: 5px;
      background: rgba(109, 125, 164, 0.75); /* Tom escuro para contrastar com a foto */
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      padding: 0rem 0.5rem;
      border-radius: 4px;
      z-index: 2;
      backdrop-filter: blur(2px); /* Efeito moderno de desfoque no fundo */
      border: 1px solid rgba(255,255,255,0.1);
    }	  
	  
	  
    .property-badge {
      border-radius: 0.3rem;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.6rem;
    }
    .property-badge-main {
      background: #0D70EC;
      color: #fff;
    }
	  
	 
    .property-badge-main2 {
      background: #c9a84c;
      color: #fff;
    } 
    .property-badge-type {
      background: #e7eff6;
      color: #626474;
    }
    .property-fav-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: none;
      background: rgba(15,23,42,.35);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .property-fav-btn i {
      font-size: 1.05rem;
    }
    .property-body {
      padding: 1rem 1.1rem 0.75rem;
    }
    .property-price {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0B2A63;
      margin-bottom: 0.25rem;
    }
    .property-price-sub {
      font-size: 0.8rem;
      color: #6b7280;
      margin-bottom: 0.35rem;
    }
    .property-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: #0B2A63;
      margin-bottom: 0.15rem;
    }
    .property-address {
      font-size: 0.8rem;
      color: #9ca3af;
      margin-bottom: 0.5rem;
    }
    .property-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: #6b7280;
    }
    .property-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.15rem;
    }
    .property-meta-item i {
      font-size: 0.9rem;
    }
    .property-footer {
      background: #fff;
      border-top: 1px solid #e5e7eb;
      padding: 0.75rem 1.1rem 1rem;
    }
    .property-footer .btn {
      border-radius: 0.6rem;
      font-weight: 600;
      background: #0B2A63;
      border-color: #0B2A63;
    }
    .property-footer .btn:hover {
      background: #081d46;
      border-color: #081d46;
    }
    .btn-radius { 
		border-radius: 0.4rem;
	  }
    /* Filtros em forma de chips */
    .filter-chips {
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
    }
    .filter-chip {
      border-radius: 0.8rem;
      padding: 0.35rem 0.9rem;
      font-size: 0.85rem;
      border: none;
      background: #f0f2f5;
      color: #002b5c;
      font-weight: 500;
      cursor: pointer;
    }
    .filter-chip.active {
      background: #002b5c;
      color: #fff;
    }
    .filter-chip:focus-visible {
      outline: 2px solid rgba(37,99,235,.6);
      outline-offset: 1px;
    }
    footer { background: var(--imobihub-dark); color: #adb5bd; }
    footer a { color: #dee2e6; text-decoration: none; }
    footer a:hover { color: #fff; }
    .filtro-btn.active { font-weight: 600; }
    .prop-card[data-visivel="false"] { display: none !important; }
    .prop-card-proximos[data-visivel="false"] { display: none !important; }
	  
	
    /* Header do produto */
    .product-header {
      padding: 2rem 0 1.5rem;
      background: #fff;
      border-bottom: 1px solid #e5e7eb;
    }
    .product-id {
      font-size: 0.8rem;
      color: #9ca3af;
      margin-bottom: 0.25rem;
    }
    .product-title {
      font-size: 2rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 0.5rem;
    }
    .product-location {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: #6b7280;
      font-size: 0.95rem;
    }
    .product-actions {
      display: flex;
      gap: 0.5rem;
    }
    .product-actions .btn {
      border-radius: 8px;
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      font-weight: 500;
      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      color: #374151;
    }
    .product-actions .btn:hover {
      background: #e5e7eb;
      color: #111827;
    }  

/* Galeria */
    .gallery-main {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 12px;
    }
/*     .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
      height: 500px;
    }  */
	.gallery-thumbs {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  grid-template-rows: repeat(2, 1fr); /* FORÇA o grid a ter duas linhas de tamanhos iguais */
	  gap: 0.5rem;
	  height: 500px;
	}
/*
    .gallery-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: opacity 0.2s;
    }
	  */
	.gallery-thumb {
	  position: absolute; /* Tira a imagem do fluxo e força ela a obedecer o wrapper */
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  cursor: pointer;
	  transition: opacity 0.2s;
	}

    .gallery-thumb:hover {
      opacity: 0.85;
    }
 /*
	.gallery-thumb-wrapper {
      position: relative;
    }
	  */
	.gallery-thumb-wrapper {
	  position: relative;
	  width: 100%;
	  height: 100%; /* Agora diz ao wrapper para ocupar o espaço da linha do grid */
	  overflow: hidden; /* Garante que nada saia das bordas arredondadas */
	  border-radius: 8px; /* Movido para o pai para evitar bugs visuais no Safari */
	}
    .gallery-show-all-wrap {
      margin-top: 1rem;
      text-align: right;
    }
    .gallery-show-principal {
      cursor: pointer;
    }
    .gallery-show-all-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      padding: 0.4rem 0.9rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: #111827;
      background: #e5e7eb;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .gallery-show-all-btn:hover {
      background: #d1d5db;
      color: #111827;
    }
    /* Modal da galeria */
    #galleryModal .modal-dialog {
      max-width: 900px;
    }
    #galleryModal .modal-content {
      border-radius: 12px;
      border: none;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    #galleryModal .modal-header {
      border-bottom: 1px solid #e5e7eb;
      padding: 1rem 1.25rem;
    }
    #galleryModal .modal-header .modal-title {
      font-weight: 600;
      color: #111827;
    }
    #galleryModal .modal-header .btn-close {
      font-size: 0.75rem;
    }
    #galleryModal .modal-body {
      padding: 0;
      max-height: 85vh;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #cbd5e1 #f1f5f9;
    }
    #galleryModal .modal-body::-webkit-scrollbar {
      width: 8px;
    }
    #galleryModal .modal-body::-webkit-scrollbar-track {
      background: #f1f5f9;
      border-radius: 4px;
    }
    #galleryModal .modal-body::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 4px;
    }
    #galleryModal .modal-body::-webkit-scrollbar-thumb:hover {
      background: #94a3b8;
    }
    #galleryModal .gallery-modal-img {
      width: 100%;
      height: auto;
      display: block;
      border-bottom: 1px solid #e5e7eb;
    }
	  
	  
    .product-category {
      font-size: 0.85rem;
      font-weight: 600;
      color: #374151;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 1rem;
      margin-bottom: 1.5rem;
    }
    /* Cards de detalhes */
    .detail-card {
      background: #f9fafb;
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border: 1px solid #e5e7eb;
    }
    .detail-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 0.75rem;
    }
    .detail-card p {
      color: #6b7280;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }
    .detail-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .detail-card li {
      color: #6b7280;
      font-size: 0.95rem;
      padding: 0.35rem 0;
      line-height: 1.5;
    }
    .detail-card li::before {
      content: "- ";
      margin-right: 0.25rem;
    }
    /* Mapa de Localização */
    .map-section {
      margin-bottom: 1.5rem;
    }
    .map-section h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #374151;
      margin-bottom: 1rem;
    }
    .map-wrapper {
      position: relative;
      width: 100%;
      height: 450px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(100%);
    }
    /* Card fixo de preço e lead */
    .price-lead-card {
      position: sticky;
      top: 72px;
      background: #fff;
      border-radius: 16px;
      padding: 1.75rem;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
      border: 1px solid #e5e7eb;
    }
    .price-main {
      font-size: 2.1rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 0.25rem;
    }
    .price-per-m2 {
      font-size: 0.95rem;
      color: #6b7280;
      margin-bottom: 0.5rem;
    }
    .price-iptu {
      font-size: 0.9rem;
      color: #6b7280;
      margin-bottom: 1.5rem;
    }
    .broker-info {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1rem 0;
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
      margin-bottom: 1.5rem;
    }
    .broker-logo {
      width: 48px;
      height: 48px;
      background: #e5e7eb;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.7rem;
      color: #9ca3af;
      font-weight: 600;
    }
    .broker-details h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #f97316;
      margin-bottom: 0.25rem;
    }
    .broker-details p {
      font-size: 0.85rem;
      color: #6b7280;
      margin-bottom: 0.15rem;
    }
    .broker-details a {
      font-size: 0.85rem;
      color: var(--imobihub-primary);
      text-decoration: none;
    }
    .broker-details a:hover {
      text-decoration: underline;
    }
    .cta-buttons {
      display: flex;
      gap: 0.75rem;
    }
    .btn-whatsapp {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: #25d366;
      border: none;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .btn-whatsapp:hover {
      background: #20ba5a;
      color: #fff;
    }
    .btn-contact {
      flex: 1;
      background: #f97316;
      border: none;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 0.875rem 1.5rem;
      border-radius: 12px;
    }
    .btn-contact:hover {
      background: #ea580c;
      color: #fff;
    }
	
/*
- Azul do botão "Buscar" → #007BFF
- Branco do fundo e áreas de texto → #FFFFFF
- Cinza claro do campo de busca e fundo secundário → #F5F5F5
- Cinza médio dos textos e ícones → #6C757D
- Preto do texto principal → #000000

- Azul principal (botão "Buscar") → #007BFF
- Azul mais escuro (hover/links, ícones) → #0056B3
- Azul médio (elementos secundários, bordas) → #339AF0
- Azul claro (realce suave, fundo de destaque) → #E7F1FF
*/
