.ficv6-form-contato {
    background: #f5f5f0;
    padding: 20px;
    border-radius: 8px;
}

.ficv6-form-contato input,
.ficv6-form-contato textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    background: #e9e9e3;
    border-radius: 6px;
}

.ficv6-form-contato .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ficv6-form-contato button {
    background: #8aa32a;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.ficv6-admin-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border: 1px solid #dcdcde;
  background: #fff;
}

.ficv6-tabs-nav {
  border-right: 1px solid #dcdcde;
  background: #f6f7f7;
}

.ficv6-tabs-nav button {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #dcdcde;
  background: transparent;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.ficv6-tabs-nav button.active {
  background: #83B64A;
}

.ficv6-tabs-content {
  padding: 20px;
}

.ficv6-tab {
  display: none;
}

.ficv6-tab.active {
  display: block;
}

.ficv6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ficv6-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.ficv6-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.ficv6-field input,
.ficv6-field select,
.ficv6-field textarea {
  width: 100%;
}

.ficv6-checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
}

.ficv6-gallery-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.ficv6-gallery-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ficv6-gallery-item {
  width: 90px;
  height: 90px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
}

.ficv6-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ficv6-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ficv6-filtros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(17, 24, 39, 0.04);
}

.ficv6-campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ficv6-campo-busca {
  grid-column: span 2;
}

.ficv6-campo label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

.ficv6-campo input,
.ficv6-campo select,
.ficv6-campo button {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
}

#ficv6_limpar {
  cursor: pointer;
  font-weight: 700;
  background: #83b64A;
}

#ficv6-active-filters:empty {
  display: none;
}

.ficv6-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ficv6-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.ficv6-chip span {
  font-size: 16px;
  line-height: 1;
}

.ficv6-resultado {
  transition: opacity 0.2s ease;
}

.ficv6-loading {
  opacity: 0.55;
  pointer-events: none;
}

.ficv6-topo-resultado {
  margin-bottom: 16px;
}

.ficv6-contagem {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.ficv6-grid {
  display: grid;
  gap: 20px;
}

.ficv6-view-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ficv6-view-list {
  grid-template-columns: 1fr;
}

.ficv6-view-list .ficv6-card {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.ficv6-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ficv6-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
}

.ficv6-thumb {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

.ficv6-view-list .ficv6-thumb {
  height: 100%;
  min-height: 240px;
}

.ficv6-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ficv6-sem-imagem {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
}

.ficv6-badge,
.ficv6-destaque-badge {
  position: absolute;
  top: 14px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ficv6-badge {
  left: 14px;
  background: rgba(17, 24, 39, 0.85);
}

.ficv6-destaque-badge {
  right: 14px;
  background: #f59e0b;
}

.ficv6-conteudo {
  padding: 18px;
}

.ficv6-codigo {
  margin: 0 0 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ficv6-titulo {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.ficv6-titulo a {
  color: #111827;
  text-decoration: none;
}

.ficv6-titulo a:hover {
  color: #83B64A;
  background-color: transparent;
}

.ficv6-local {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 14px;
}

.ficv6-preco {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.ficv6-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.ficv6-meta span {
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.ficv6-anunciante {
  margin: 0 0 12px;
  font-size: 13px;
  color: #4b5563;
}

.ficv6-resumo {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.ficv6-acoes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ficv6-link,
.ficv6-whatsapp,
.ficv6-whatsapp-shortcode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.ficv6-link {
  background: #111827;
  color: #fff;
}

.ficv6-whatsapp,
.ficv6-whatsapp-shortcode {
  background: #25d366;
  color: #fff;
}

.ficv6-paginacao {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.ficv6-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.ficv6-page-btn.is-active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.ficv6-vazio {
  margin: 0;
  padding: 20px;
  border: 1px dashed #d1d5db;
  border-radius: 14px;
  background: #fff;
  color: #4b5563;
}

.ficv6-gallery-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ficv6-gallery-main img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.ficv6-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ficv6-thumb-btn {
  width: 90px;
  height: 90px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.ficv6-thumb-btn.is-active {
  border-color: #111827;
}

.ficv6-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ficv6-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ficv6-feature-list li {
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.ficv6-tech-table {
  display: grid;
  gap: 10px;
}

.ficv6-tech-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.ficv6-tech-row span {
  color: #6b7280;
}

.ficv6-commercial-box,
.ficv6-contact-box {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.ficv6-commercial-price {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 800;
}

.ficv6-commercial-location,
.ficv6-commercial-desc {
  margin: 0 0 8px;
  color: #4b5563;
}

@media (max-width: 1024px) {
  .ficv6-admin-wrap {
    grid-template-columns: 1fr;
  }

  .ficv6-tabs-nav {
    border-right: 0;
    border-bottom: 1px solid #dcdcde;
    display: flex;
    flex-wrap: wrap;
  }

  .ficv6-tabs-nav button {
    width: auto;
    flex: 1 1 auto;
  }

  .ficv6-grid,
  .ficv6-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ficv6-campo-busca {
    grid-column: span 1;
  }

  .ficv6-view-list .ficv6-card {
    grid-template-columns: 1fr;
  }

  .ficv6-view-list .ficv6-thumb {
    min-height: 220px;
  }

  .ficv6-thumb-btn {
    width: 72px;
    height: 72px;
  }
}


.ficv6-commercial-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.ficv6-anunciante-topo {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.ficv6-titulo {
    font-size: 26px;
    margin-bottom: 15px;
}

.ficv6-tabela {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.ficv6-tabela td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.ficv6-tabela td:first-child {
    width: 50%;
    color: #333;
}

.ficv6-contato-box {
    display: flex;
    gap: 10px;
}

.ficv6-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #f1f1f1;
    text-decoration: none;
    border: 1px solid #ccc;
    font-weight: bold;
}

.ficv6-btn:hover {
    background: #73fff3;
}

.ficv6-social-box {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ficv6-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    background: #f4f4f4;
    color: #222;
    font-weight: 600;
    transition: .2s ease;
}

.ficv6-social-link:hover {
    background: #73fff3;
}