/* ===============================
   BRANDS GALLERY - COMPACTO
   =============================== */
   .brands-gallery {
    padding: clamp(2rem, 4vw, 3rem) 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  .brands-gallery .gallery-grid {
    max-width: 1100px; /* Un poco más estrecho para que se vea mejor */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  /* CARD REDUCIDA */
  .brands-gallery .gallery-card {
    background: #ffffff;
    border-radius: 0.75rem; /* Bordes ligeramente más finos */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    /* Eliminamos el max-height para que no fuerce espacio hacia abajo */
    height: auto; 
  }
  
  .brands-gallery .gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(26, 86, 219, 0.1);
  }
  
  /* IMAGEN MÁS BAJA */
  .brands-gallery .gallery-card-image {
    width: 100%;
    height: 160px; /* Altura fija reducida para uniformidad */
    overflow: hidden;
  }
  
  .brands-gallery .gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* CONTENIDO AJUSTADO */
  .brands-gallery .gallery-card-content {
    padding: 1.25rem; /* Menos padding interno */
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .brands-gallery .gallery-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
  }
  
  .brands-gallery .gallery-card-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
  }
  
  /* FOOTER OPCIONAL (SÓLO SI LO USAS) */
  .brands-gallery .gallery-card-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #f1f5f9;
    background-color: #fafbfc;
  }
  
  /* RESPONSIVE */
  @media (max-width: 640px) {
    .brands-gallery .gallery-card-image {
      height: 140px;
    }
  }