/* filtros – cartão lateral */
.filter-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
}

.facet-title {
  letter-spacing: .5px;
  white-space: normal;    /* permite quebrar */
  word-break: break-word; /* quebra se a palavra for grande */
  overflow-wrap: break-word; /* alternativa mais moderna */
}
.form-control::placeholder{
  font-size: 14px;
}

.facet .form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
}

.facet .form-check-label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-size: .95rem;
}

/* separador fininho como no print */
.filter-card hr {
  opacity: 1;
  border-color: rgba(0,0,0,.06);
}

/* Sidebar responsiva (abre sobre o conteúdo no mobile) */
.filtro-sidebar {
  width: 100%;
  max-width: 320px;
}
@media (max-width: 767.98px){
  .filtro-sidebar {
    position: fixed;
    inset: 0 0 0 auto;
    transform: translateX(100%);
    transition: transform .25s ease;
    background: #fff;
    z-index: 1040;
    max-width: 85%;
    overflow-y: auto;
  }
  .filtro-sidebar.open {
    transform: translateX(0);
    box-shadow: -8px 0 24px rgba(0,0,0,.15);
  }
}

/* ===== Detalhes técnicos ===== */
.specs-wrap{
  margin-top: 28px;
}

.specs-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.specs-title{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}

.specs-bar{
  display: inline-block;
  width: 36px;
  height: 3px;
  background: #2D39F5;
  border-radius: 2px;
}

/* grid 2 colunas */
.specs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* tabela */
.spec-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border: 1px solid #E2E4E6;
  border-radius: 6px;
  overflow: hidden;
}

.spec-table th,
.spec-table td{
  padding: 12px 14px;
  font-size: 14px;
  color: #111111;
  border-bottom: 1px solid #E9EEF3;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td{
  border-bottom: 0;
}

/* rótulos da esquerda (azul claro constante) */
.spec-table th{
  width: 58%;
  background: #EEF6FC;
  font-weight: 500;
}

/* listras na coluna de valores */
.spec-table td{
  background: #FFFFFF;
}

.spec-table tr:nth-child(even) td{
  background: #F7FBFF;
}

/* responsivo: empilha as duas tabelas */
@media (max-width: 992px){
  .specs-grid{
    grid-template-columns: 1fr;
  }
}
