/* MARCAS CSS */
.marcas-lideres {
  background: url('../IMG/fondo-marcas.png') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.marcas-lideres .contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.marcas-lideres h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.marcas-lideres h2 .azul {
  color: #22b1f6;
}

.marcas-lideres .subtitulo {
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
  line-height: 1.4;
}
.marcas-lideres .subtitulo span {
  color: #22b1f6;
}

.marcas-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.marca {
  padding: 0;
  flex: 1 1 300px;
  max-width: 360px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.marca img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .marcas-grid {
    flex-direction: column;
    align-items: center;
  }

  .marca {
    max-width: 90%;
  }

}