/* GRID DE MARCAS */
.spb-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px 40px;
  justify-content: start;
  max-width: 1200px;
  margin: 0 auto 60px;
}

/* CADA MARCA */
.spb-brand-item {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.6px;
  color: #2c2c2c;
  text-decoration: none;
  text-align: left;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  padding: 10px 12px;
  border: 1px solid transparent; /* mantiene el espacio del borde */
  border-radius: 8px;
  box-sizing: border-box; /* asegura consistencia */
  text-transform: uppercase;
  transition: background-color 0.25s ease-in-out, 
              border-color 0.25s ease-in-out, 
              box-shadow 0.25s ease-in-out;
  }

.spb-brand-item:hover {
  background-color: #fafcfa;
  border-color: #e6e6e6; /* solo cambia el color, no el ancho */
  color: #2c2c2c;
}
