
.empresas-filtros{
  display:flex;
  gap:10px;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.empresas-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
@media(max-width:900px){
  .empresas-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:500px){
  .empresas-grid{grid-template-columns:1fr;}
}
.empresa-card{
  text-align:center;
}
.empresa-card img{
  width:234px;
  height:114px;
  object-fit:contain;
}
.empresa-card span{
  display:block;
  margin-top:8px;
}
